Compare commits
No commits in common. "974730d6601d4507d1e8ea7771c4ff39b30ab6f0" and "81964ebf24ca6868a9718ed9567a5cc5c2c9c890" have entirely different histories.
974730d660
...
81964ebf24
@ -4,7 +4,7 @@ async def search_user_inquiry_dict(ns={}):
|
||||
where_sql = "where status = 1"
|
||||
if ns.get('dict_type'):
|
||||
where_sql += " and dict_type = '%s'" % ns.get('dict_type')
|
||||
search_sql = """select * from product_inquiry_dict %s order by dict_type asc, sort_order asc;""" % where_sql
|
||||
search_sql = """select id, dict_type, dict_key, dict_value, sort_order from product_inquiry_dict %s order by dict_type asc, sort_order asc;""" % where_sql
|
||||
result = await sor.sqlExe(search_sql, {})
|
||||
return {
|
||||
'status': True,
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user