fix: handle scenario with no condition
This commit is contained in:
parent
2944301c87
commit
5b622eace1
@ -335,11 +335,13 @@ def get_items(filters=None, search=None):
|
|||||||
|
|
||||||
filter_condition = get_conditions(filters, 'and')
|
filter_condition = get_conditions(filters, 'and')
|
||||||
|
|
||||||
where_conditions = 'disabled = 0 and '
|
where_conditions = ' and '.join(
|
||||||
|
|
||||||
where_conditions += ' and '.join(
|
|
||||||
[condition for condition in [show_in_website_condition, search_condition, filter_condition] if condition]
|
[condition for condition in [show_in_website_condition, search_condition, filter_condition] if condition]
|
||||||
)
|
)
|
||||||
|
if where_conditions:
|
||||||
|
where_conditions += ' and disabled = 0'
|
||||||
|
else:
|
||||||
|
where_conditions += 'disabled = 0'
|
||||||
|
|
||||||
left_joins = []
|
left_joins = []
|
||||||
for f in filters:
|
for f in filters:
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user