Sfoglia il codice sorgente

feat(日志):用户操作日志

liutao 5 mesi fa
parent
commit
ca04d1bc20

+ 1 - 1
build.gradle

@@ -9,7 +9,7 @@ targetCompatibility = 1.8
 
 jar {
     baseName = 'factoring-trade-prod'
-    version = '1.0.3'
+    version = '1.0.4'
 }
 
 springBoot {

+ 2 - 2
src/main/java/com/sunxung/factoring/service/creditresolution/impl/CreditResolutionApprovalServiceImpl.java

@@ -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")){