修改美团配送,添加配送费,骑手接单之后扣除配送费

This commit is contained in:
邹宗楠
2023-08-23 15:18:39 +08:00
parent e236c8f76e
commit d6267f2ca6
11 changed files with 65 additions and 6 deletions

View File

@@ -92,6 +92,8 @@ type IPurchasePlatformOrderHandler interface {
// 获取各个平台订单的结算信息
GetOrderSettleAccounts(order *model.GoodsOrder) (int64, error)
// GetPlatformLogisticsFee 获取美团自配送订单的配送费
GetPlatformLogisticsFee(order *model.GoodsOrder) (int64, error)
}
type IAddWaybillTip interface {