Explorar o código

手機包含'-'的篩選處理

Mike %!s(int64=3) %!d(string=hai) anos
pai
achega
e7f730db0c
Modificáronse 1 ficheiros con 2 adicións e 1 borrados
  1. 2 1
      api/main.py

+ 2 - 1
api/main.py

@@ -71,7 +71,8 @@ async def checkCellphone(cellphone: str = ''):
     # 取得手機號碼資料
     q = "SELECT * \
         FROM agent_form \
-        WHERE cellphone IN ('" + cellphone_list + "')"
+        WHERE cellphone IN ('" + cellphone_list + "') \
+        OR REPLACE(cellphone, '-', '') IN ('" + cellphone_list + "')"
 
     count = len(list(db.query(q)))