From ae24a9a99ebb18f22b776018c2dfb7d0c8605d0e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E5=BF=A0=E6=9E=97?= <170083662@qq.com> Date: Tue, 24 Feb 2026 12:10:43 +0800 Subject: [PATCH] =?UTF-8?q?fix(withdraw):=20=E6=9B=B4=E6=96=B0=E6=8F=90?= =?UTF-8?q?=E7=8E=B0=E8=87=AA=E5=8A=A8=E5=AE=A1=E6=A0=B8=E9=87=91=E9=A2=9D?= =?UTF-8?q?=E9=98=88=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 将自动审核通过的金额阈值从50调整为100 - 相应更新人工审核的起始金额条件 - 保持原有的多级审核流程逻辑不变 --- .../shop/controller/ShopDealerWithdrawController.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/gxwebsoft/shop/controller/ShopDealerWithdrawController.java b/src/main/java/com/gxwebsoft/shop/controller/ShopDealerWithdrawController.java index 42bc162..a30ebd9 100644 --- a/src/main/java/com/gxwebsoft/shop/controller/ShopDealerWithdrawController.java +++ b/src/main/java/com/gxwebsoft/shop/controller/ShopDealerWithdrawController.java @@ -102,12 +102,12 @@ public class ShopDealerWithdrawController extends BaseController { shopDealerWithdraw.setAuditTime(null); if(shopDealerWithdraw.getTenantId().equals(10584)){ - // 1.如果体现金额小于等于50,则可以自动审核通过 - if (shopDealerWithdraw.getMoney().compareTo(java.math.BigDecimal.valueOf(50)) <= 0) { + // 1.如果体现金额小于等于100,则可以自动审核通过 + if (shopDealerWithdraw.getMoney().compareTo(java.math.BigDecimal.valueOf(100)) <= 0) { shopDealerWithdraw.setApplyStatus(20); shopDealerWithdraw.setAuditTime(LocalDateTime.now()); } - // 2.如果提现金额大于50,小于1000,则需要人工审核 + // 2.如果提现金额大于100,小于1000,则需要人工审核 shopDealerWithdraw.setApplyStatus(10); shopDealerWithdraw.setAuditTime(null); // 3.如果金额大于1000,小于10000,则除了财务审核还需要农总审核