root 3 days ago
parent
commit
17551dc4be
1 changed files with 1 additions and 2 deletions
  1. 1 2
      ai-slibra-assistant/util/request_utils.py

+ 1 - 2
ai-slibra-assistant/util/request_utils.py

@@ -168,8 +168,7 @@ def business_service(session_id, uid, code, tools,  asr):
             nums = len(neighbour)
             mess = f"根据您的手机号查询到{nums}个小区," + ";".join(map(lambda x: ",".join(x), zip(neighbour, ["户号是"]* nums, cardNo)))+ "。解决轻按1, 未解决请安2."
         elif tools in ["meter_owner_phone", "meter_owner_neighbour"]:
-            loc_phone = [[content['neighbourhoodName'], content['meterReaderPhone']] for content in contents]
-            loc_phone = filter(lambda x: len(x[1])>0, loc_phone)
+            loc_phone = [[content['neighbourhoodName'], content['meterReaderPhone']] for content in contents if len(content['meterReaderPhone']) >0]
             if len(loc_phone)==0:
                 return ''
             loc_phone = [i for i in loc_phone]