1
This commit is contained in:
@@ -678,7 +678,7 @@ class PatientOrderService extends BaseService
|
||||
|
||||
// 获取订单金额
|
||||
$result = array();
|
||||
$result['amount_total'] = 0; // 订单金额
|
||||
$result['amount_total'] = 0; // 订单总额
|
||||
$result['payment_amount_total'] = 0; // 实际订单金额
|
||||
$result['coupon_amount_total'] = 0; // 优惠金额
|
||||
$result['order_no'] = $order_no; // 订单编号
|
||||
@@ -851,7 +851,7 @@ class PatientOrderService extends BaseService
|
||||
|
||||
// 获取订单金额
|
||||
$result['amount_total'] = $order_detection['amount_total']; // 订单金额
|
||||
$result['payment_amount_total'] = $order_detection['amount_total']; // 实际订单金额
|
||||
$result['payment_amount_total'] = $order_detection['amount_total'] - 0; // 实际订单金额
|
||||
$result['coupon_amount_total'] = 0; // 优惠金额
|
||||
|
||||
if ($order_detection['payment_amount_total'] > 0) {
|
||||
@@ -1585,9 +1585,6 @@ class PatientOrderService extends BaseService
|
||||
'patient_age',
|
||||
'created_at',
|
||||
];
|
||||
dump($params);
|
||||
dump($detection_status_params);
|
||||
dump($fields);
|
||||
$order_detection = OrderDetection::getPatientOrderDetectionPage($params, $detection_status_params, $fields, $page, $per_page);
|
||||
if (empty($order_detection['data'])) {
|
||||
return success($order_detection);
|
||||
|
||||
Reference in New Issue
Block a user