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