61adc961 by 冯轩

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

2 parents 5b9ac125 29aedd0a
...@@ -2060,7 +2060,7 @@ class EmployeeView(GenericView): ...@@ -2060,7 +2060,7 @@ class EmployeeView(GenericView):
2060 bss_ocr = json.loads(bss_ocr_str) 2060 bss_ocr = json.loads(bss_ocr_str)
2061 self.running_log.info('[query Employee] [application_id={0}] [bss_ocr={1}]'.format(application_id, bss_ocr)) 2061 self.running_log.info('[query Employee] [application_id={0}] [bss_ocr={1}]'.format(application_id, bss_ocr))
2062 for one_bss in bss_ocr: 2062 for one_bss in bss_ocr:
2063 income_keywords = one_bss['income_keywords'] 2063 income_keywords = one_bss.get('income_keywords')
2064 self.running_log.info('[query Employee] [application_id={0}] [income_keywords={1}]'.format(application_id, income_keywords)) 2064 self.running_log.info('[query Employee] [application_id={0}] [income_keywords={1}]'.format(application_id, income_keywords))
2065 if income_keywords is not None and len(income_keywords) > 0: 2065 if income_keywords is not None and len(income_keywords) > 0:
2066 return response.ok(data=True) 2066 return response.ok(data=True)
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!