add club and counter filters on product list page

This commit is contained in:
imperosol
2025-02-23 12:14:32 +01:00
parent a96b374ad7
commit 809febc353
4 changed files with 64 additions and 23 deletions

View File

@ -98,3 +98,5 @@ class ProductFilterSchema(FilterSchema):
is_archived: bool | None = Field(None, q="archived")
buying_groups: set[int] | None = Field(None, q="buying_groups__in")
product_type: set[int] | None = Field(None, q="product_type__in")
club: set[int] | None = Field(None, q="club__in")
counter: set[int] | None = Field(None, q="counters__in")