78e39053 by 冯轩

Merge branch 'feature/CHINARPA-4942'

2 parents f694bec1 dcdd28c6
......@@ -1174,9 +1174,11 @@ def get_se_cms_compare_info_auto(application_id, last_obj, application_entity, d
account_holder_name = cms_info.get('bankAccountDetails', {}).get('accountHolderName', '')
is_gsyh = True if '工商' in bank_name else False
if isinstance(company_info, tuple) and company_info[0] == account_holder_name:
pass
elif not ignore_bank:
# CHINARPA-4942 去掉注释逻辑,改为只要not ignore_bank 银行卡都要校验,不论是否公户
# if isinstance(company_info, tuple) and company_info[0] == account_holder_name:
# pass
# el
if not ignore_bank:
bank_field_input = [
('accountNo', account_no),
('bankName', bank_name),
......@@ -1830,9 +1832,11 @@ def get_se_cms_compare_info(application_id, last_obj, application_entity, detect
account_holder_name = cms_info.get('bankAccountDetails', {}).get('accountHolderName', '')
is_gsyh = True if '工商' in bank_name else False
if isinstance(company_info, tuple) and company_info[0] == account_holder_name:
pass
elif not ignore_bank:
# CHINARPA-4942 去掉注释逻辑,改为只要not ignore_bank 银行卡都要校验,不论是否公户
# if isinstance(company_info, tuple) and company_info[0] == account_holder_name:
# pass
# el
if not ignore_bank:
bank_field_input = [
('accountNo', account_no),
('bankName', bank_name),
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!