分段融,不校验年利率

This commit is contained in:
tangfutang 2021-08-13 09:43:53 +08:00
parent e37a8b7f74
commit c2e40bbce5
3 changed files with 6 additions and 3 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -193,7 +193,8 @@ public class CreateTransactionExecutor implements Transaction {
} }
public void checkYearRate( ConditionBean cb, TabCalBean tcb, BigDecimal yearRate ) throws BusinessException { public void checkYearRate( ConditionBean cb, TabCalBean tcb, BigDecimal yearRate ) throws BusinessException {
// if ( "Y".equals( cb.getFlexible() ) ) { if( !"segmented_financing".equals( cb.getSettleMethod() ) ){
// if ( "Y".equals( cb.getFlexible() ) ) {
// 灵活产品验证年利率区间 // 灵活产品验证年利率区间
try { try {
Map<String, Map<String, String>> productRevenues = ProductParamUtil.getProductComponentType( tcb.getProductId(), "PRD0390" ); Map<String, Map<String, String>> productRevenues = ProductParamUtil.getProductComponentType( tcb.getProductId(), "PRD0390" );
@ -221,7 +222,9 @@ public class CreateTransactionExecutor implements Transaction {
e.printStackTrace(); e.printStackTrace();
throw new BusinessException( e.getMessage() ); throw new BusinessException( e.getMessage() );
} }
// } // }
}
} }
/** /**