业务申请信审复审对审批额度判断-条件修改

This commit is contained in:
tangfutang 2023-09-18 09:44:15 +08:00
parent 282a3371c8
commit a6e5c02751

View File

@ -111,7 +111,7 @@ public class LBBusinessPrimary extends BaseBussiness {
}
}
//流程中金额获取(当前流程)
String InFlowSql = "select CLEAN_LEASE_MONEY-ifnull(CAUTION_MONEY) as inFlowMoney from lc_calc_condition_temp where FLOWUNID = '"+flowUnid+"'";
String InFlowSql = "select CLEAN_LEASE_MONEY-ifnull(CAUTION_MONEY,0) as inFlowMoney from lc_calc_condition_temp where FLOWUNID = '"+flowUnid+"'";
ASResultSet rsIn = Sqlca.getASResultSet(new SqlObject(InFlowSql));
BigDecimal inFlowMoney = BigDecimal.valueOf(0);
if (rsIn.next()) {