registration spelling fix
This commit is contained in:
@@ -97,13 +97,14 @@ async def read_business_by_business_id(business_id: str, session: SessionContain
|
|||||||
"business_id": item[0],
|
"business_id": item[0],
|
||||||
"Name": item[1],
|
"Name": item[1],
|
||||||
"type": item[2],
|
"type": item[2],
|
||||||
"tregistration_noitle": item[3],
|
"registration_no": item[3],
|
||||||
"logo_name": item[4],
|
"logo_name": item[4],
|
||||||
"logo_path": item[5],
|
"logo_path": item[5],
|
||||||
"app_id": item[6],
|
"app_id": item[6],
|
||||||
}
|
}
|
||||||
for item in cursor.fetchall()
|
for item in cursor.fetchall()
|
||||||
]
|
]
|
||||||
|
#
|
||||||
cursor.close()
|
cursor.close()
|
||||||
db.close()
|
db.close()
|
||||||
if(len(items)!= 0):
|
if(len(items)!= 0):
|
||||||
@@ -131,7 +132,7 @@ async def read_business_by_app_id(app_id: str, session: SessionContainer = Depen
|
|||||||
"business_id": item[0],
|
"business_id": item[0],
|
||||||
"Name": item[1],
|
"Name": item[1],
|
||||||
"type": item[2],
|
"type": item[2],
|
||||||
"tregistration_noitle": item[3],
|
"registration_no": item[3],
|
||||||
"logo_name": item[4],
|
"logo_name": item[4],
|
||||||
"logo_path": item[5],
|
"logo_path": item[5],
|
||||||
"app_id": item[6],
|
"app_id": item[6],
|
||||||
|
|||||||
Reference in New Issue
Block a user