刷新京东商城订单
This commit is contained in:
@@ -189,7 +189,7 @@ func (c *ActController) CancelAct() {
|
||||
// @Param pageSize query int false "表页大小(缺省全部)"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /GetActStoreSkuInfo [get]
|
||||
// @router /GetActStoreSkuInfo [get,post]
|
||||
func (c *ActController) GetActStoreSkuInfo() {
|
||||
c.callGetActStoreSkuInfo(func(params *tActGetActStoreSkuInfoParams) (retVal interface{}, errCode string, err error) {
|
||||
var vendorIDs []int
|
||||
|
||||
@@ -1168,3 +1168,17 @@ func (c *OrderController) AcceptOrRefuseOrder() {
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
// @Title 刷新京东商城订单收货人信息
|
||||
// @Description 刷新京东商城订单收货人信息
|
||||
// @Param token header string true "认证token"
|
||||
// @Param vendorOrderID formData string true "订单ID"
|
||||
// @Success 200 {object} controllers.CallResult
|
||||
// @Failure 200 {object} controllers.CallResult
|
||||
// @router /RefreshJdsOrderConsigneeInfo [put]
|
||||
func (c *OrderController) RefreshJdsOrderConsigneeInfo() {
|
||||
c.callRefreshJdsOrderConsigneeInfo(func(params *tOrderRefreshJdsOrderConsigneeInfoParams) (retVal interface{}, errCode string, err error) {
|
||||
err = orderman.RefreshJdsOrderConsigneeInfo(params.Ctx, params.VendorOrderID)
|
||||
return retVal, "", err
|
||||
})
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user