This commit is contained in:
邹宗楠
2023-05-18 09:02:34 +08:00
parent 2d798aab89
commit 60274cc5e6
4 changed files with 14 additions and 15 deletions

View File

@@ -136,8 +136,8 @@ func (a *API) QueryOrderInfo(orderID string) (order *OrderInfo, err error) {
if err == nil {
err = utils.Map2StructByJson(result.Result, &order, false)
}
order.DeductFee += utils.Int2Float64(utils.WayBillDeliveryMarkUp)
order.ActualFee += utils.Int2Float64(utils.WayBillDeliveryMarkUp)
order.DeliveryFee += utils.Int2Float64(utils.WayBillDeliveryMarkUp)
//order.ActualFee += utils.Int2Float64(utils.WayBillDeliveryMarkUp)
return order, err
}