Browse Source

feature 无法缴费提示信息修改

xiahan 3 weeks ago
parent
commit
1ab6909b06

+ 1 - 2
zhsw-wechat-common/src/main/java/com/rongwei/wechat/system/wechat/impl/PayMentServiceImpl.java

@@ -96,8 +96,7 @@ public class PayMentServiceImpl implements PayMentService {
         // 如果不允许在线支付,返回错误信息(包含状态信息)
         if ("n".equalsIgnoreCase(whethertopayonline)) {
             log.error("当前系统不允许在线缴费,配置值: {}", whethertopayonline);
-            String errorMessage = String.format("系统维护中,请一个小时后使用|%s", whethertopayonline);
-            return R.error(errorMessage);
+            return R.error("系统维护中,请一个小时后使用");
         }
         if (StringUtils.isBlank(enterpriseno)) {
             log.error("支付参数:企业编号 为空");