We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 059ac5a commit 576ee0dCopy full SHA for 576ee0d
qfdmo/views/carte.py
@@ -50,13 +50,13 @@ def get_context_data(self, **kwargs):
50
def _get_selected_action_ids(self):
51
return [a.id for a in self._get_selected_action()]
52
53
- def get_sous_categories(self):
+ def get_sous_categories_ids(self):
54
if sous_categories := self.displayed_acteur_form.cleaned_data.get(
55
"sous_categories"
56
):
57
return sous_categories.values_list("pk", flat=True)
58
59
- return super().get_sous_categories()
+ return super().get_sous_categories_ids()
60
61
62
class ProductCarteView(CarteSearchActeursView):
0 commit comments