Merge branch 'CHINARPA-4562' into feature/uat-tmp
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -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) | ... | ... |
-
Please register or sign in to post a comment