Merge branch 'feature/CHINARPA-4942'
Showing
1 changed file
with
10 additions
and
6 deletions
... | @@ -1174,9 +1174,11 @@ def get_se_cms_compare_info_auto(application_id, last_obj, application_entity, d | ... | @@ -1174,9 +1174,11 @@ def get_se_cms_compare_info_auto(application_id, last_obj, application_entity, d |
1174 | account_holder_name = cms_info.get('bankAccountDetails', {}).get('accountHolderName', '') | 1174 | account_holder_name = cms_info.get('bankAccountDetails', {}).get('accountHolderName', '') |
1175 | is_gsyh = True if '工商' in bank_name else False | 1175 | is_gsyh = True if '工商' in bank_name else False |
1176 | 1176 | ||
1177 | if isinstance(company_info, tuple) and company_info[0] == account_holder_name: | 1177 | # CHINARPA-4942 去掉注释逻辑,改为只要not ignore_bank 银行卡都要校验,不论是否公户 |
1178 | pass | 1178 | # if isinstance(company_info, tuple) and company_info[0] == account_holder_name: |
1179 | elif not ignore_bank: | 1179 | # pass |
1180 | # el | ||
1181 | if not ignore_bank: | ||
1180 | bank_field_input = [ | 1182 | bank_field_input = [ |
1181 | ('accountNo', account_no), | 1183 | ('accountNo', account_no), |
1182 | ('bankName', bank_name), | 1184 | ('bankName', bank_name), |
... | @@ -1830,9 +1832,11 @@ def get_se_cms_compare_info(application_id, last_obj, application_entity, detect | ... | @@ -1830,9 +1832,11 @@ def get_se_cms_compare_info(application_id, last_obj, application_entity, detect |
1830 | account_holder_name = cms_info.get('bankAccountDetails', {}).get('accountHolderName', '') | 1832 | account_holder_name = cms_info.get('bankAccountDetails', {}).get('accountHolderName', '') |
1831 | is_gsyh = True if '工商' in bank_name else False | 1833 | is_gsyh = True if '工商' in bank_name else False |
1832 | 1834 | ||
1833 | if isinstance(company_info, tuple) and company_info[0] == account_holder_name: | 1835 | # CHINARPA-4942 去掉注释逻辑,改为只要not ignore_bank 银行卡都要校验,不论是否公户 |
1834 | pass | 1836 | # if isinstance(company_info, tuple) and company_info[0] == account_holder_name: |
1835 | elif not ignore_bank: | 1837 | # pass |
1838 | # el | ||
1839 | if not ignore_bank: | ||
1836 | bank_field_input = [ | 1840 | bank_field_input = [ |
1837 | ('accountNo', account_no), | 1841 | ('accountNo', account_no), |
1838 | ('bankName', bank_name), | 1842 | ('bankName', bank_name), | ... | ... |
-
Please register or sign in to post a comment