dcdd28c6 by 冯轩

MOD:去掉公户不比对银行卡的特殊情况

1 parent 6cd561ad
......@@ -1174,10 +1174,10 @@ 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
el
# 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),
......@@ -1832,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!