This commit is contained in:
苏尹岚
2021-02-24 17:01:19 +08:00
parent 70a95b1de0
commit 6b77f9f7c9
3 changed files with 13 additions and 1 deletions

View File

@@ -372,7 +372,6 @@ func (c *JxOrderController) ReceiveCoupons() {
// @Title 创建门店账户订单
// @Description 创建门店账户订单
// @Param token header string true "认证token"
// @Param type formData int true "支付类型/账单类型"
// @Param orderType formData int true "订单类型1为账户充值"
// @Param storeID formData int true "门店ID"
// @Param price formData int true "支付金额"
@@ -381,6 +380,7 @@ func (c *JxOrderController) ReceiveCoupons() {
// @router /CreateStoreAcctOrder [post]
func (c *JxOrderController) CreateStoreAcctOrder() {
c.callCreateStoreAcctOrder(func(params *tJxorderCreateStoreAcctOrderParams) (retVal interface{}, errCode string, err error) {
localjx.CreateStoreAcctOrder(params.Ctx, params.OrderType, params.StoreID, params.Price)
return retVal, "", err
})
}