feat: 接入 CCpay 第三支付通道(越南银行QR代收)

- extend/pay/Ccpay.php: SDK封装(签名/验签/下单/查询)
- traits/ccpayPay.php: 下单/回调/结算/轮询,pay_channel_id=9
- config.php: pay_list 加 ccpay 配置
- Pcapi/Order: 注册 ccpayPay trait
This commit is contained in:
testadmin
2026-04-20 11:15:16 +08:00
parent ffc77b4f3f
commit 2e9462d7a3
5 changed files with 555 additions and 0 deletions
+10
View File
@@ -373,5 +373,15 @@ return [
// 'wxpay' => '微信支付',
]
],
'ccpay' => [//CCmerchant越南银行代收
'online_order_fac' => 'ccpay_online_order',
'notify_url' => 'https://api.g7g7.top/order/ccpay_recharge_callback',
'callback_url' => '',
'api_url' => 'https://c.gmobvfxllc.com/gateway/api/trade',
'mch_no' => 'M8822026041910000352',
'pay_secret' => '820281b0d0b24a6bb701d8fc1c31a197',
'timeout' => 600,
'type' => ['pay' => 'CCpay越南银行'],
],
]
];