shish 1 ay önce
ebeveyn
işleme
fc24e1bb79

+ 2 - 2
biz-ghs/custom/classes/CustomClass.php

@@ -660,7 +660,7 @@ class CustomClass extends BaseClass
         $customBal = bcadd((string)($custom->balance ?? '0'), '0', 2);
         $ghsBal = bcadd((string)($ghs->balance ?? '0'), '0', 2);
         if (bccomp($customBal, $ghsBal, 2) !== 0) {
-            util::fail('客户与供货商余额不一致,请联系管理员');
+            util::fail('余额不一致,请联系管理员');
         }
     }
 
@@ -1272,4 +1272,4 @@ class CustomClass extends BaseClass
         return ['pfAmount' => $pfAmount, 'lsAmount' => $lsAmount];
     }
 
-}
+}

+ 1 - 1
biz-ghs/custom/services/GhsRechargeSettleService.php

@@ -346,7 +346,7 @@ class GhsRechargeSettleService
         AccountMoneyClass::ensureGhsMoneyReady($ghs, true);
 
         if (bccomp(self::money($custom->balance), self::money($ghs->balance), 2) !== 0) {
-            util::fail('客户与供货商余额不一致,请联系管理员');
+            util::fail('余额有问题,请联系管理员');
         }
 
         return ['custom' => $custom, 'ghs' => $ghs];