|
@@ -154,7 +154,7 @@ public class CreditResolutionApprovalServiceImpl extends ServiceImpl<CreditResol
|
|
|
requestParams.put("businessMeetsConditionsList",collect);
|
|
|
}
|
|
|
requestParams.put("comprehensiveQuotation",creditResolution.getComprehensiveQuotation());
|
|
|
- requestParams.put("principalPaymentMethod", PrincipalPaymentMethodEnum.getByCode(creditResolution.getPrincipalPaymentMethod()));
|
|
|
+ requestParams.put("principalPaymentMethod", PrincipalPaymentMethodEnum.getByCode(creditResolution.getPrincipalPaymentMethod()).getDesc());
|
|
|
String paymentMethodForInterestManagementFee = creditResolution.getPaymentMethodForInterestManagementFee();
|
|
|
Dictionary dic = dictionaryService.getByCode(paymentMethodForInterestManagementFee);
|
|
|
if(paymentMethodForInterestManagementFee.equals("paymentMethodForInterestManagementFee_A")){
|
|
@@ -295,7 +295,7 @@ public class CreditResolutionApprovalServiceImpl extends ServiceImpl<CreditResol
|
|
|
requestParams.put("businessMeetsConditionsList",collect);
|
|
|
}
|
|
|
requestParams.put("comprehensiveQuotation",exists.getComprehensiveQuotation());
|
|
|
- requestParams.put("principalPaymentMethod",PrincipalPaymentMethodEnum.getByCode(exists.getPrincipalPaymentMethod()));
|
|
|
+ requestParams.put("principalPaymentMethod",PrincipalPaymentMethodEnum.getByCode(exists.getPrincipalPaymentMethod()).getDesc());
|
|
|
String paymentMethodForInterestManagementFee = exists.getPaymentMethodForInterestManagementFee();
|
|
|
Dictionary dic = dictionaryService.getByCode(paymentMethodForInterestManagementFee);
|
|
|
if(paymentMethodForInterestManagementFee.equals("paymentMethodForInterestManagementFee_A")){
|