diff --git a/app/controller/api/server/StoreOrder.php b/app/controller/api/server/StoreOrder.php index 212dedd6..78ade9b0 100755 --- a/app/controller/api/server/StoreOrder.php +++ b/app/controller/api/server/StoreOrder.php @@ -94,6 +94,7 @@ class StoreOrder extends BaseController return app('json')->fail('订单不存在'); if ($detail['mer_id'] != $merId) return app('json')->fail('没有权限'); + $detail['pay_price'] = $detail['consumption_money'] > 0 ? bcadd($detail['pay_price'], $detail['consumption_money'], 2) : $detail['pay_price']; return app('json')->success($detail->toArray()); }