+mtwmapi.OrderPickComplete
This commit is contained in:
@@ -313,6 +313,15 @@ func (a *API) OrderConfirm(orderID string) (err error) {
|
||||
return err
|
||||
}
|
||||
|
||||
// 仅择时达和新零售标品服务包的订单,商家可调用此接口将订单置为已拣货完成状态。订单超过预计拣货完成时间未调用此接口,系统会自动更新为已拣货完成状态。
|
||||
// https://open-be.ele.me/dev/api/doc/v3/#api-Order_Up-order_pickcomplete
|
||||
func (a *API) OrderPickComplete(orderID string) (err error) {
|
||||
_, err = a.AccessAPI("order.pickcomplete", map[string]interface{}{
|
||||
"order_id": orderID,
|
||||
})
|
||||
return err
|
||||
}
|
||||
|
||||
// 提供给合作方取消订单所用。 注:1、百度物流配送且已经确认的订单无法取消。
|
||||
func (a *API) OrderCancel(orderID, cancelType, cancelReason string) (err error) {
|
||||
_, err = a.AccessAPI("order.cancel", map[string]interface{}{
|
||||
|
||||
Reference in New Issue
Block a user