shish 5 лет назад
Родитель
Сommit
4e9de9efd5
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      biz-ghs/order/services/OrderService.php

+ 1 - 1
biz-ghs/order/services/OrderService.php

@@ -518,7 +518,7 @@ class OrderService extends BaseService
             $custom->isDebt = CustomClass::IS_DEBT_YES;
             $debtLimit = $custom->debtLimit ?? 0;
             if ($custom->debtAmount > $debtLimit) {
-                util::fail("您已欠款{$custom->debtAmount},店小资金短缺,请先结款哦");
+                util::fail("您已欠款{$custom->debtAmount},请先结款哦");
             }
             $currentDebtAmount = bcadd($custom->debtAmount, $realPrice, 2);
             $custom->debtAmount = $currentDebtAmount;