手动结局单接口

This commit is contained in:
苏尹岚
2020-08-21 09:34:24 +08:00
parent c0c4c25adf
commit 398db9262a
2 changed files with 21 additions and 0 deletions

View File

@@ -1574,3 +1574,8 @@ func UpdateWaybillDesiredFee(ctx *jxcontext.Context, vendorOrderID string, desir
}
return err
}
func AcceptOrRefuseOrder(ctx *jxcontext.Context, vendorOrderID string, vendorID int, isAccept bool) (err error) {
order, err := partner.CurOrderManager.LoadOrder(vendorOrderID, vendorID)
return err
}