fix: website showing disabled items in list of products
This commit is contained in:
parent
4350846f1e
commit
2944301c87
@ -52,7 +52,6 @@ def get_attribute_filter_data():
|
||||
|
||||
|
||||
def get_products_for_website(field_filters=None, attribute_filters=None, search=None):
|
||||
|
||||
if attribute_filters:
|
||||
item_codes = get_item_codes_by_attributes(attribute_filters)
|
||||
items_by_attributes = get_items([['name', 'in', item_codes]])
|
||||
@ -336,7 +335,9 @@ def get_items(filters=None, search=None):
|
||||
|
||||
filter_condition = get_conditions(filters, 'and')
|
||||
|
||||
where_conditions = ' and '.join(
|
||||
where_conditions = 'disabled = 0 and '
|
||||
|
||||
where_conditions += ' and '.join(
|
||||
[condition for condition in [show_in_website_condition, search_condition, filter_condition] if condition]
|
||||
)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user