fix(withdraw): 更新提现自动审核金额阈值

- 将自动审核通过的金额阈值从50调整为100
- 相应更新人工审核的起始金额条件
- 保持原有的多级审核流程逻辑不变
This commit is contained in:
2026-02-24 12:10:43 +08:00
parent a5f18859dc
commit ae24a9a99e

View File

@@ -102,12 +102,12 @@ public class ShopDealerWithdrawController extends BaseController {
shopDealerWithdraw.setAuditTime(null); shopDealerWithdraw.setAuditTime(null);
if(shopDealerWithdraw.getTenantId().equals(10584)){ if(shopDealerWithdraw.getTenantId().equals(10584)){
// 1.如果体现金额小于等于50则可以自动审核通过 // 1.如果体现金额小于等于100则可以自动审核通过
if (shopDealerWithdraw.getMoney().compareTo(java.math.BigDecimal.valueOf(50)) <= 0) { if (shopDealerWithdraw.getMoney().compareTo(java.math.BigDecimal.valueOf(100)) <= 0) {
shopDealerWithdraw.setApplyStatus(20); shopDealerWithdraw.setApplyStatus(20);
shopDealerWithdraw.setAuditTime(LocalDateTime.now()); shopDealerWithdraw.setAuditTime(LocalDateTime.now());
} }
// 2.如果提现金额大于50小于1000则需要人工审核 // 2.如果提现金额大于100小于1000则需要人工审核
shopDealerWithdraw.setApplyStatus(10); shopDealerWithdraw.setApplyStatus(10);
shopDealerWithdraw.setAuditTime(null); shopDealerWithdraw.setAuditTime(null);
// 3.如果金额大于1000小于10000则除了财务审核还需要农总审核 // 3.如果金额大于1000小于10000则除了财务审核还需要农总审核