This commit is contained in:
邹宗楠
2023-06-07 11:20:05 +08:00
parent 96235fd440
commit b2807b98b2
4 changed files with 3 additions and 4 deletions

View File

@@ -67,7 +67,7 @@ func (a *API) GetOrderDetail(orderCode string) (*GetOrderDetailResp, error) {
}
con := retVal != GetOrderDetailResp{}
if con {
retVal.OrderPrice = utils.Float64ToStr(utils.Str2Float64(retVal.OrderPrice) + float64(utils.WayBillDeliveryMarkUp/100) + float64(0.2))
retVal.OrderPrice = utils.Float64ToStr(utils.Str2Float64(retVal.OrderPrice) + float64(utils.WayBillDeliveryMarkUp/100))
return &retVal, nil
} else {
return nil, fmt.Errorf("UU跑腿未返回运单详情")