浏览代码

运输计算提货费总计

hu hao 5 年之前
父节点
当前提交
9568c031df
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      app/Services/WaybillService.php

+ 1 - 1
app/Services/WaybillService.php

@@ -185,7 +185,7 @@ class WaybillService
             $waybill['pick_up_fee']=round(($waybill->carrier_weight_other/$daily_total_weight)*$param['billing']);
             $updateParams[] = [
                 'id' => $waybill->id,
-                'pick_up_fee' => ($waybill->carrier_weight_other/$daily_total_weight)*$param['billing'],
+                'pick_up_fee' =>(($waybill->carrier_weight_other/$daily_total_weight)*$param['billing']),
                 'updated_at' => Carbon::now()->toDateTimeString(),
             ];
         }