Parcourir la source

修改手機"-"符號處理方式

Mike il y a 3 ans
Parent
commit
ede0089499
1 fichiers modifiés avec 2 ajouts et 3 suppressions
  1. 2 3
      api/main.py

+ 2 - 3
api/main.py

@@ -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)))