+GetOrderPay
GetOrders添加参数isPurchase
This commit is contained in:
@@ -58,3 +58,17 @@ func (c *JxOrderController) GetAvailableDeliverTime() {
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
// @Title 得到一个订单的支付信息
|
||||
// @Description 得到一个订单的支付信息
|
||||
// @Param token header string true "认证token"
|
||||
// @Param vendorOrderID query string true "订单号,如果此项不为空,忽略其它所有查询条件"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /GetOrderPay [get]
|
||||
func (c *JxOrderController) GetOrderPay() {
|
||||
c.callGetOrderPay(func(params *tJxorderGetOrderPayParams) (retVal interface{}, errCode string, err error) {
|
||||
retVal, err = localjx.GetOrderPay(params.Ctx, params.VendorOrderID)
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user