edit-api-order_price

This commit is contained in:
lccsw
2022-08-25 16:01:24 +08:00
parent 5a4df20d42
commit bfb02f1267
+5 -3
View File
@@ -798,9 +798,11 @@ class CusorderV2 extends Wxapp
$other_data['车款金额'] = ['type' => 'text', 'value' => "{$ht_price}(已支付)", 'bg_color' => ''];
$need_last_pay -= $ht_pay['total_price'];
}
$last_is_pay_text = $is_pay_price >= $need_pay ? '已支付' : '未支付';
$last_text = number_format($need_last_pay,2) . "($last_is_pay_text)";
$other_data['尾款金额'] = ['type' => 'text', 'value' => $last_text, 'bg_color' => ''];
if($need_last_pay){
$last_is_pay_text = $is_pay_price >= $need_pay ? '已支付' : '未支付';
$last_text = number_format($need_last_pay,2) . "($last_is_pay_text)";
$other_data['尾款金额'] = ['type' => 'text', 'value' => $last_text, 'bg_color' => ''];
}
if ($srv_is_pay) {
$last_is_pay_text = $srv_is_pay['status'] ? '已支付' : '未支付';
$srv_text = number_format($srv_is_pay['total_price'],2) . "($last_is_pay_text)";