|
|
@@ -215,9 +215,8 @@ class OrderService extends BaseService
|
|
|
];
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
- $sendCost = isset($data['sendCost']) && $data['sendCost'] > 0 ? $data['sendCost'] : 0;
|
|
|
- $totalPrice = bcadd($goodsPrice, $sendCost, 2);
|
|
|
+ $data['sendCost'] = isset($data['sendCost']) && $data['sendCost'] > 0 ? $data['sendCost'] : 0;
|
|
|
+ $totalPrice = bcadd($goodsPrice, $data['sendCost'], 2);
|
|
|
$modifyPrice = isset($data['modifyPrice']) && $data['modifyPrice'] > 0 ? $data['modifyPrice'] : 0;
|
|
|
if ($modifyPrice > $totalPrice) {
|
|
|
//人工资材包装费
|