Skip to Content
Odoo Menu
  • Zaloguj się
  • Wypróbuj za darmo
  • Aplikacje
    Finanse
    • Księgowość
    • Fakturowanie
    • Wydatki
    • Arkusz kalkulacyjny (BI)
    • Dokumenty
    • Podpisy
    Sprzedaż
    • CRM
    • Sprzedaż
    • PoS Sklep
    • PoS Restauracja
    • Subskrypcje
    • Wypożyczalnia
    Strony Internetowe
    • Kreator Stron Internetowych
    • eCommerce
    • Blog
    • Forum
    • Czat na Żywo
    • eLearning
    Łańcuch dostaw
    • Magazyn
    • Produkcja
    • PLM
    • Zakupy
    • Konserwacja
    • Jakość
    Zasoby Ludzkie
    • Pracownicy
    • Rekrutacja
    • Urlopy
    • Ocena pracy
    • Polecenia Pracownicze
    • Flota
    Marketing
    • Marketing Społecznościowy
    • E-mail Marketing
    • SMS Marketing
    • Wydarzenia
    • Automatyzacja Marketingu
    • Ankiety
    Usługi
    • Projekt
    • Ewidencja czasu pracy
    • Usługi Terenowe
    • Helpdesk
    • Planowanie
    • Spotkania
    Produktywność
    • Dyskusje
    • Zatwierdzenia
    • IoT
    • VoIP
    • Baza wiedzy
    • WhatsApp
    Aplikacje trzecich stron Studio Odoo Odoo Cloud Platform
  • Branże
    Sprzedaż detaliczna
    • Księgarnia
    • Sklep odzieżowy
    • Sklep meblowy
    • Sklep spożywczy
    • Sklep z narzędziami
    • Sklep z zabawkami
    Żywienie i hotelarstwo
    • Bar i Pub
    • Restauracja
    • Fast Food
    • Pensjonat
    • Dystrybutor napojów
    • Hotel
    Agencja nieruchomości
    • Agencja nieruchomości
    • Biuro architektoniczne
    • Budowa
    • Zarządzanie nieruchomościami
    • Ogrodnictwo
    • Stowarzyszenie właścicieli nieruchomości
    Doradztwo
    • Biuro księgowe
    • Partner Odoo
    • Agencja marketingowa
    • Kancelaria prawna
    • Agencja rekrutacyjna
    • Audyt i certyfikacja
    Produkcja
    • Tekstylia
    • Metal
    • Meble
    • Jedzenie
    • Browar
    • Prezenty firmowe
    Zdrowie & Fitness
    • Klub sportowy
    • Salon optyczny
    • Centrum fitness
    • Praktycy Wellness
    • Apteka
    • Salon fryzjerski
    Transakcje
    • Złota rączka
    • Wsparcie Sprzętu IT
    • Systemy energii słonecznej
    • Szewc
    • Firma sprzątająca
    • Usługi HVAC
    Inne
    • Organizacja non-profit
    • Agencja Środowiskowa
    • Wynajem billboardów
    • Fotografia
    • Leasing rowerów
    • Sprzedawca oprogramowania
    Przeglądaj wszystkie branże
  • Community
    Ucz się
    • Samouczki
    • Dokumentacja
    • Certyfikacje
    • Szkolenie
    • Blog
    • Podcast
    Pomóż w nauce innym
    • Program Edukacyjny
    • Scale Up! Gra biznesowa
    • Odwiedź Odoo
    Skorzystaj z oprogramowania
    • Pobierz
    • Porównaj edycje
    • Wydania
    Współpracuj
    • Github
    • Forum
    • Wydarzenia
    • Tłumaczenia
    • Zostań partnerem
    • Usługi dla partnerów
    • Zarejestruj swoją firmę rachunkową
    Skorzystaj z usług
    • Znajdź partnera
    • Znajdź księgowego
    • Spotkaj się z doradcą
    • Usługi wdrożenia
    • Opinie klientów
    • Wsparcie
    • Aktualizacje
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Zaplanuj demo
  • Cennik
  • Pomoc

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Księgowość
  • Zapasy
  • PoS
  • Projekt
  • MRP
All apps
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
Wszystkie posty Osoby Odznaki
Tagi (Zobacz wszystko)
odoo accounting v14 pos v15
O tym forum
Pomoc

Feature Request: Native “Dialog Filters” in Search Panel

To pytanie dostało ostrzeżenie
To pytanie zostało zamknięte z powodu: not enough information given to provide help
przez Ray Carnes (ray) na 28.11.2025 08:00:30
development
7 Widoki
Awatar
Adam Homolka

Description


In many business workflows, users need to apply filters that require entering parameters (e.g., date range, amount range, customer selection, boolean switches).

Currently, in Odoo’s Search Panel / Filters, all filters must be predefined with static domain values. There is no native way to prompt the user to input parameters when a filter is activated.


This leads to a poor UX for scenarios where the filter is dynamic and depends on user input.


Typical example:

  • “Issued invoices for a selected date range”

  • “Payments with amount between X and Y”

  • “Filter partners by creation date range”

  • “Show documents before/after a chosen date”


Right now, this cannot be done without custom JavaScript or custom wizards placed outside the search interface.

Current Limitations

  • Filters in the search panel are static and cannot display any dialog.

  • It is not possible to attach a parameter form (wizard) to a filter.

  • No native mechanism exists to prompt the user for values before applying a domain.

  • Implementing this requires custom JS extending the web client, which is fragile during upgrades.

Expected Behavior


Introduce a native Odoo mechanism allowing a filter to trigger a small dialog (wizard) when clicked.

The dialog would allow the user to enter parameters which then dynamically generate the domain.


A possible structure:

  1. User clicks a filter defined as “interactive” or “parameterized”.

  2. Odoo automatically opens a dialog with relevant fields (date_from, date_to, checkboxes, selection lists…).

  3. After clicking “Apply”, Odoo:

    • builds the domain dynamically

    • applies it to the current search

    • updates the search bar accordingly


This is similar to how other systems (SAP, MS Dynamics, NetSuite) allow “filters with parameters”, improving usability.


Benefits

  • Huge UX improvement: users can filter records using custom parameters without leaving the list view.

  • Cleaner architecture: no custom JavaScript hacks are required.

  • More powerful search functionality, especially for Accounting, Sales, Inventory, HR, and any heavily date-driven workflow.

  • Reduces need for custom modules and makes Odoo more competitive against ERP systems with dynamic filter dialogs.

  • Aligns with existing Odoo UX patterns (wizards are already widely used).

Example Use-case from Accounting


User wants “Issued invoices for a custom date range”.


Currently:

  • Must create multiple static filters (Last 7 days, Last month, This quarter…)

  • Or manually enter domain

  • Or create a custom wizard outside the search panel


Proposed:

  • Click “Date Range Filter”

  • Dialog opens (date_from + date_to)

  • User confirms

  • Odoo shows filtered invoices immediately

Why this should be in core

  • This pattern appears across all Odoo modules.

  • The community repeatedly implements the same JS customization.

  • As Odoo grows in larger companies, parameterized filters become essential.

  • It fits naturally into Odoo’s design language and modular architecture.

Additional Notes


This feature would not break existing search filters.

It would simply extend the capabilities of the SearchPanel / SearchView.


I am happy to provide mockups, example XML structures, or contribute additional specification details if helpful.

Awatar
Odrzuć
Podoba Ci się ta dyskusja? Dołącz do niej!

Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!

Zarejestruj się
Powiązane posty Odpowiedzi Widoki Czynność
Solution to the Getting Started tutorial from the official Odoo 16 documentation
development
Awatar
Awatar
Awatar
2
lis 25
1412
How do I change the name of the module, or rather the name assigned to the module, after I created it in Odoo Studio?
development
Awatar
1
lis 25
326
Guest House Module - Rental Search Bar
development
Awatar
Awatar
1
lis 25
198
How to make all branches for user active automatically after login his account?
development
Awatar
Awatar
Awatar
3
lis 25
391
MrpBom _skip_bom_line skips line of product that has two multi-choice attribute values when both are selected in Apply to variant
development
Awatar
Awatar
1
lis 25
344
Społeczność
  • Samouczki
  • Dokumentacja
  • Forum
Open Source
  • Pobierz
  • Github
  • Runbot
  • Tłumaczenia
Usługi
  • Hosting Odoo.sh
  • Wsparcie
  • Aktualizacja
  • Indywidualne rozwiązania
  • Edukacja
  • Znajdź księgowego
  • Znajdź partnera
  • Zostań partnerem
O nas
  • Nasza firma
  • Zasoby marki
  • Skontaktuj się z nami
  • Oferty pracy
  • Wydarzenia
  • Podcast
  • Blog
  • Klienci
  • Informacje prawne • Prywatność
  • Bezpieczeństwo Odoo
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo to pakiet aplikacji biznesowych typu open source, które zaspokoją wszystkie potrzeby Twojej firmy: CRM, eCommerce, księgowość, inwentaryzacja, punkt sprzedaży, zarządzanie projektami itp.

Unikalną wartością Odoo jest to, że jest jednocześnie bardzo łatwe w użyciu i w pełni zintegrowane.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now