fix personal api call to get
This commit is contained in:
parent
92ae951b0d
commit
cf70cf5c1c
1 changed files with 1 additions and 1 deletions
|
|
@ -73,7 +73,7 @@ async def read_all_patient_queue_by_business_id(app_id: str, date: str, session:
|
||||||
query += "from patient_manager.patient_queue "
|
query += "from patient_manager.patient_queue "
|
||||||
query += "inner join patient_manager.patients "
|
query += "inner join patient_manager.patients "
|
||||||
query += "on patient_queue.app_id = patients.app_id "
|
query += "on patient_queue.app_id = patients.app_id "
|
||||||
query = query + "where app_id = %s and date_time like '" + str(requestDate) + "%' "
|
query = query + "where patient_queue.app_id = %s and date_time like '" + str(requestDate) + "%' "
|
||||||
query += "ORDER BY date_time ASC"
|
query += "ORDER BY date_time ASC"
|
||||||
cursor.execute(query, (app_id,))
|
cursor.execute(query, (app_id,))
|
||||||
items = [
|
items = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue