+ AmmendMissingOrders
This commit is contained in:
@@ -705,3 +705,18 @@ func (c *OrderController) GetStoreAfsOrderCountInfo() {
|
|||||||
return retVal, "", err
|
return retVal, "", err
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// @Title 补全遗漏的订单
|
||||||
|
// @Description 补全遗漏的订单
|
||||||
|
// @Param token header string true "认证token"
|
||||||
|
// @Param fromDate formData string true "订单起始日期"
|
||||||
|
// @Param toDate formData string false "订单结束日期"
|
||||||
|
// @Param vendorIDs formData string false "订单所属的厂商ID列表"
|
||||||
|
// @Param storeID formData int false "门店ID"
|
||||||
|
// @Param isAsync formData bool false "是否异步操作"
|
||||||
|
// @Param isContinueWhenError formData bool false "单个失败是否继续,缺省true"
|
||||||
|
// @Success 200 {object} controllers.CallResult
|
||||||
|
// @Failure 200 {object} controllers.CallResult
|
||||||
|
// @router /AmendMissingOrders [post]
|
||||||
|
func (c *OrderController) AmendMissingOrders() {
|
||||||
|
}
|
||||||
|
|||||||
@@ -682,6 +682,15 @@ func init() {
|
|||||||
Filters: nil,
|
Filters: nil,
|
||||||
Params: nil})
|
Params: nil})
|
||||||
|
|
||||||
|
beego.GlobalControllerRouter["git.rosy.net.cn/jx-callback/controllers:OrderController"] = append(beego.GlobalControllerRouter["git.rosy.net.cn/jx-callback/controllers:OrderController"],
|
||||||
|
beego.ControllerComments{
|
||||||
|
Method: "AmendMissingOrders",
|
||||||
|
Router: `/AmendMissingOrders`,
|
||||||
|
AllowHTTPMethods: []string{"post"},
|
||||||
|
MethodParams: param.Make(),
|
||||||
|
Filters: nil,
|
||||||
|
Params: nil})
|
||||||
|
|
||||||
beego.GlobalControllerRouter["git.rosy.net.cn/jx-callback/controllers:OrderController"] = append(beego.GlobalControllerRouter["git.rosy.net.cn/jx-callback/controllers:OrderController"],
|
beego.GlobalControllerRouter["git.rosy.net.cn/jx-callback/controllers:OrderController"] = append(beego.GlobalControllerRouter["git.rosy.net.cn/jx-callback/controllers:OrderController"],
|
||||||
beego.ControllerComments{
|
beego.ControllerComments{
|
||||||
Method: "CallPMCourier",
|
Method: "CallPMCourier",
|
||||||
|
|||||||
Reference in New Issue
Block a user