Feature: Datepicker for POS Order List
Currently, the POS order list in Odoo provides a date filter inside a dropdown. This limits usability, as users often need to search by order number, receipt number, customer or date.
I propose introducing a datepicker widget beside the search filter. This will allow users to select custom dates more quickly and intuitively, while still combining it with the existing search filter options.
Benefits:
- Improved usability for POS users
- Faster and more flexible date-based searches
- Enhanced user experience compared to dropdown-only selection
- Ability to search orders by number, receipt number, or customer along with a specific date
Love the idea of a datepicker for POS orders. Our dev raised one concern: if we add it by removing the existing date option from the dropdown, it becomes a destructive change and risks incompatibilities on upgrades.
A safer path is an additive quick-date control that writes to the same search state/facet (date_order) the dropdown uses (SearchModel), so users can combine text search (order # / receipt / customer) and dates without forking core behavior. Bonus: handle timezone day boundaries (local → UTC) to avoid off-by-one issues.
Alternatively, enhancing the filter bar to support multiple composable filters would also solve this pain without deleting the existing date filter.
I'm just hiding date option from dropdown, not removing and use same date flow for datepicker. That's not affect our odoo flow.