Przeglądaj źródła

Merge branch 'v4.7.0dev' of https://gitee.com/ZhongBangKeJi/CRMEB into v4.7.0dev

吴昊天 2 lat temu
rodzic
commit
d8ca307042

+ 1 - 1
crmeb/crmeb/services/easywechat/v3pay/PayClient.php

@@ -212,7 +212,7 @@ class PayClient extends BaseClient
         $totalFee = '0';
         $amount = bcadd($amount, '0', 2);
         foreach ($transferDetailList as &$item) {
-            if ($item['transfer_amount'] >= 2000 && !empty($item['user_name'])) {
+            if ($item['transfer_amount'] >= 2000 && empty($item['user_name'])) {
                 throw new PayException('明细金额大于等于2000时,收款人姓名必须填写');
             }
             $totalFee = bcadd($totalFee, $item['transfer_amount'], 2);