|
|
@ -897,7 +897,6 @@ def advanced_search():
|
|
|
|
custom_query = request.args.get('custom_column_' + str(c.id))
|
|
|
|
custom_query = request.args.get('custom_column_' + str(c.id))
|
|
|
|
if custom_query:
|
|
|
|
if custom_query:
|
|
|
|
if c.datatype == 'bool':
|
|
|
|
if c.datatype == 'bool':
|
|
|
|
getattr(db.Books, 'custom_column_1')
|
|
|
|
|
|
|
|
q = q.filter(getattr(db.Books, 'custom_column_'+str(c.id)).any(
|
|
|
|
q = q.filter(getattr(db.Books, 'custom_column_'+str(c.id)).any(
|
|
|
|
db.cc_classes[c.id].value == (custom_query == "True")))
|
|
|
|
db.cc_classes[c.id].value == (custom_query == "True")))
|
|
|
|
elif c.datatype == 'int':
|
|
|
|
elif c.datatype == 'int':
|
|
|
|