Explorar el Código

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

Mike hace 3 años
padre
commit
e7f730db0c
Se han modificado 1 ficheros con 2 adiciones y 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)))