|
@@ -59,7 +59,7 @@ async def checkCellphone(cellphone: str = ''):
|
|
|
# 避免換行空白問題
|
|
|
for t in temp_list:
|
|
|
if t:
|
|
|
- cellphone_list.append(t.strip())
|
|
|
+ cellphone_list.append(t.strip().replace("-", ""))
|
|
|
|
|
|
cellphone_list = "','".join(cellphone_list)
|
|
|
|
|
@@ -69,8 +69,7 @@ async def checkCellphone(cellphone: str = ''):
|
|
|
# 取得手機號碼資料
|
|
|
q = "SELECT * \
|
|
|
FROM agent_form \
|
|
|
- WHERE cellphone IN ('" + cellphone_list + "') \
|
|
|
- OR REPLACE(cellphone, '-', '') IN ('" + cellphone_list + "')"
|
|
|
+ WHERE cellphone IN ('" + cellphone_list + "')"
|
|
|
|
|
|
count = len(list(db.query(q)))
|
|
|
|