f744f42a by 冯轩

Merge branch 'feature/CHINARPA-5075' into feature/uat-tmp

2 parents 5d49d183 1f3bedfb
...@@ -1589,7 +1589,7 @@ def get_se_cms_compare_info_auto(application_id, last_obj, application_entity, d ...@@ -1589,7 +1589,7 @@ def get_se_cms_compare_info_auto(application_id, last_obj, application_entity, d
1589 down_payment_info = {} 1589 down_payment_info = {}
1590 down_payment_input = [] 1590 down_payment_input = []
1591 totalDownPayment = str(cms_info.get('financialInformation', {}).get('totalDownPayment')) 1591 totalDownPayment = str(cms_info.get('financialInformation', {}).get('totalDownPayment'))
1592 if totalDownPayment and totalDownPayment == '0.00': 1592 if totalDownPayment and totalDownPayment != '0.00':
1593 down_payment_input.append((consts.SE_DP_FIELD[0], cms_info.get('financeCompany', ''))) 1593 down_payment_input.append((consts.SE_DP_FIELD[0], cms_info.get('financeCompany', '')))
1594 down_payment_input.append((consts.SE_DP_FIELD[1], borrower_name)) 1594 down_payment_input.append((consts.SE_DP_FIELD[1], borrower_name))
1595 down_payment_input.append((consts.SE_DP_FIELD[2], borrower_idnum)) 1595 down_payment_input.append((consts.SE_DP_FIELD[2], borrower_idnum))
...@@ -2243,7 +2243,7 @@ def get_se_cms_compare_info(application_id, last_obj, application_entity, detect ...@@ -2243,7 +2243,7 @@ def get_se_cms_compare_info(application_id, last_obj, application_entity, detect
2243 down_payment_info = {} 2243 down_payment_info = {}
2244 down_payment_input = [] 2244 down_payment_input = []
2245 totalDownPayment = str(cms_info.get('financialInformation', {}).get('totalDownPayment')) 2245 totalDownPayment = str(cms_info.get('financialInformation', {}).get('totalDownPayment'))
2246 if totalDownPayment and totalDownPayment == '0.00': 2246 if totalDownPayment and totalDownPayment != '0.00':
2247 down_payment_input.append((consts.SE_DP_FIELD[0], cms_info.get('financeCompany', ''))) 2247 down_payment_input.append((consts.SE_DP_FIELD[0], cms_info.get('financeCompany', '')))
2248 down_payment_input.append((consts.SE_DP_FIELD[1], borrower_name)) 2248 down_payment_input.append((consts.SE_DP_FIELD[1], borrower_name))
2249 down_payment_input.append((consts.SE_DP_FIELD[2], borrower_idnum)) 2249 down_payment_input.append((consts.SE_DP_FIELD[2], borrower_idnum))
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!