|
|
@@ -206,6 +206,7 @@ class PaymentOrderService extends BaseService
|
|
|
$data['amount'] = $amount;
|
|
|
$data['channel'] = $channel;
|
|
|
$data['fee'] = $amount * $rate;
|
|
|
+ $data['bank_name'] = SanJinService::$CHANNEL[$paymentType]??'';
|
|
|
$order_no = self::createOrderNo('sj' . $data['type'] . '_', $memberId);
|
|
|
$data['order_no'] = $order_no;
|
|
|
$data['callback_url'] = SanJinService::getNotifyUrl();
|
|
|
@@ -224,6 +225,7 @@ class PaymentOrderService extends BaseService
|
|
|
$info = self::model()::create($data);
|
|
|
$text = "✅ 支付提示 \n";
|
|
|
$text .= "请扫码支付 \n";
|
|
|
+ $text .= "支付平台:{$data['bank_name']} \n";
|
|
|
$text .= "支付金额:" . $amount . " RMB \n";
|
|
|
$text .= "请按实际支付金额进行付款,否则影响到账 \n";
|
|
|
$text .= "支付完成后请耐心等待,支付到账会第一时间通知您! \n";
|