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