bug表现为,已经上传了V3的证书,但依然报【企业微信支付到零钱需要支付证书,检测到您没有上传!】
修复方法:
1.找到文件:crmeb/services/wechat/Payment.php
找到merchantPay方法图中红圈内的判断
改为:
if (empty($config['certificate'])) {
throw new PayException('企业付款到零钱需要支付cert证书,检测到您没有上传!');
}
if (empty($config['private_key'])) {
throw new PayException('企业付款到零钱需要支付key证书,检测到您没有上传!');
}