23239d7f by 冯轩

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

2 parents a28928d6 c3cc87ad
...@@ -1155,8 +1155,8 @@ def get_se_cms_compare_info_auto(application_id, last_obj, application_entity, d ...@@ -1155,8 +1155,8 @@ def get_se_cms_compare_info_auto(application_id, last_obj, application_entity, d
1155 # 财报情况说明 1155 # 财报情况说明
1156 financial_statement_supplementary_info = {} 1156 financial_statement_supplementary_info = {}
1157 financial_statement_supplementary_input = [] 1157 financial_statement_supplementary_input = []
1158 need_fss = float(corporateFinancialInformation.get('cashAndCashEquivalentAtEndOfPeriod', '')) == 0 1158 need_fss = float(corporateFinancialInformation.get('cashAndCashEquivalentAtEndOfPeriod', -1)) == 0
1159 if need_fss: 1159 if is_bo_corporate and need_fss:
1160 financial_statement_supplementary_input.append((consts.SE_FSS_FIELD[0], borrower_name)) 1160 financial_statement_supplementary_input.append((consts.SE_FSS_FIELD[0], borrower_name))
1161 financial_statement_supplementary_input.append((consts.SE_FSS_FIELD[1], consts.SE_STAMP_VALUE)) 1161 financial_statement_supplementary_input.append((consts.SE_FSS_FIELD[1], consts.SE_STAMP_VALUE))
1162 financial_statement_supplementary_info[consts.FSS_EN] = financial_statement_supplementary_input 1162 financial_statement_supplementary_info[consts.FSS_EN] = financial_statement_supplementary_input
...@@ -1807,8 +1807,8 @@ def get_se_cms_compare_info(application_id, last_obj, application_entity, detect ...@@ -1807,8 +1807,8 @@ def get_se_cms_compare_info(application_id, last_obj, application_entity, detect
1807 # 财报情况说明 1807 # 财报情况说明
1808 financial_statement_supplementary_info = {} 1808 financial_statement_supplementary_info = {}
1809 financial_statement_supplementary_input = [] 1809 financial_statement_supplementary_input = []
1810 need_fss = float(corporateFinancialInformation.get('cashAndCashEquivalentAtEndOfPeriod', '')) == 0 1810 need_fss = float(corporateFinancialInformation.get('cashAndCashEquivalentAtEndOfPeriod', -1)) == 0
1811 if need_fss: 1811 if is_bo_corporate and need_fss:
1812 financial_statement_supplementary_input.append((consts.SE_FSS_FIELD[0], borrower_name)) 1812 financial_statement_supplementary_input.append((consts.SE_FSS_FIELD[0], borrower_name))
1813 financial_statement_supplementary_input.append((consts.SE_FSS_FIELD[1], consts.SE_STAMP_VALUE)) 1813 financial_statement_supplementary_input.append((consts.SE_FSS_FIELD[1], consts.SE_STAMP_VALUE))
1814 financial_statement_supplementary_info[consts.FSS_EN] = financial_statement_supplementary_input 1814 financial_statement_supplementary_info[consts.FSS_EN] = financial_statement_supplementary_input
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!