暂时去除支付金额

This commit is contained in:
wucongxing 2023-03-30 19:36:48 +08:00
parent d5f1564892
commit 9bda0e130f

View File

@ -934,6 +934,10 @@ class PatientOrderService extends BaseService
// 实际支付金额 // 实际支付金额
$payment_amount_total = $amount_total + $logistics_fee; $payment_amount_total = $amount_total + $logistics_fee;
if (env("APP_ENV") == "dev"){
$payment_amount_total = 0.01;
}
// 确定支付渠道 // 确定支付渠道
// 支付渠道1:小程序支付 2:微信扫码支付) // 支付渠道1:小程序支付 2:微信扫码支付)