fix(withdraw): 更新提现自动审核金额阈值
- 将自动审核通过的金额阈值从50调整为100 - 相应更新人工审核的起始金额条件 - 保持原有的多级审核流程逻辑不变
This commit is contained in:
@@ -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,则除了财务审核还需要农总审核
|
||||
|
||||
Reference in New Issue
Block a user