|
@@ -58,13 +58,9 @@ async def checkCellphone(cellphone: str = ''):
|
|
|
|
|
|
# 避免換行空白問題
|
|
|
for t in temp_list:
|
|
|
- try:
|
|
|
- if t:
|
|
|
- cellphone_list.append(t.strip())
|
|
|
- except TypeError:
|
|
|
- print ('TypeError: 跳過')
|
|
|
- continue
|
|
|
-
|
|
|
+ if t:
|
|
|
+ cellphone_list.append(t.strip())
|
|
|
+
|
|
|
cellphone_list = "','".join(cellphone_list)
|
|
|
|
|
|
print ('cellphone_list = ' + cellphone_list) # test
|
|
@@ -77,12 +73,14 @@ async def checkCellphone(cellphone: str = ''):
|
|
|
FROM agent_form \
|
|
|
WHERE cellphone IN ('" + cellphone_list + "')"
|
|
|
|
|
|
- count = len(list(db.query(q)))
|
|
|
-
|
|
|
- print ('count = ' + str(count))
|
|
|
+ try:
|
|
|
+ count = len(list(db.query(q)))
|
|
|
+ print ('count = ' + str(count))
|
|
|
+ except TypeError:
|
|
|
+ print ('TypeError,跳過')
|
|
|
|
|
|
if count == 0: # 無手機號碼資料
|
|
|
- print('無手機號碼資料資料')
|
|
|
+ print('無手機號碼資料')
|
|
|
return {"count": 0, "msg": "無手機號碼資料"}
|
|
|
else:
|
|
|
# 既有手機號碼資料
|