e1604e8a by 冯轩

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

2 parents 65be0b78 9b87d331
...@@ -964,14 +964,21 @@ class Command(BaseCommand, LoggerMixin): ...@@ -964,14 +964,21 @@ class Command(BaseCommand, LoggerMixin):
964 print_date = bs_info.get('end_date', '').strftime("%Y-%m-%d") 964 print_date = bs_info.get('end_date', '').strftime("%Y-%m-%d")
965 except Exception as e: 965 except Exception as e:
966 print_date = '' 966 print_date = ''
967 is_eBank = bs_info.get('e_bank', False)
968 if is_eBank:
969 bs_verify = bs_info.get('verify_res_ebank', True)
970 else:
971 bs_verify = bs_info.get('verify_res_paper_bank', True)
967 res.append( 972 res.append(
968 { 973 {
969 'bankStatement_type': str(bs_info.get('classify', '')), 974 'bankStatement_type': str(bs_info.get('classify', '')),
970 'role': bs_info.get('role', ''), 975 'role': bs_info.get('role', ''),
971 'print_time': print_date, 976 'print_time': print_date,
972 'timedelta': bs_info.get('timedelta', ''), 977 'timedelta': bs_info.get('timedelta', ''),
973 'verify': bs_info.get('verify_res_ebank', True), 978 # 'verify': bs_info.get('verify_res_ebank', True),
974 'e_bank': bs_info.get('e_bank', False), 979 'verify': bs_verify,
980 # 'e_bank': bs_info.get('e_bank', False),
981 'e_bank': is_eBank,
975 'income_keywords': income_keywords_str 982 'income_keywords': income_keywords_str
976 } 983 }
977 ) 984 )
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!