From 8aae51b1ec8874f02c3afe35a184dc1d4ca41a0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E9=82=B9=E5=AE=97=E6=A5=A0?= Date: Thu, 18 May 2023 09:47:43 +0800 Subject: [PATCH] 1' --- platformapi/dadaapi/order.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformapi/dadaapi/order.go b/platformapi/dadaapi/order.go index 00d432d1..680f0fbf 100644 --- a/platformapi/dadaapi/order.go +++ b/platformapi/dadaapi/order.go @@ -136,7 +136,7 @@ func (a *API) QueryOrderInfo(orderID string) (order *OrderInfo, err error) { if err == nil { err = utils.Map2StructByJson(result.Result, &order, false) } - order.DeliveryFee += utils.Int2Float64(utils.WayBillDeliveryMarkUp) + order.DeliveryFee += (utils.Int2Float64(utils.WayBillDeliveryMarkUp) / 100) //order.ActualFee += utils.Int2Float64(utils.WayBillDeliveryMarkUp) return order, err }