pos icon indicating copy to clipboard operation
pos copied to clipboard

Feature: Datepicker for POS Order List

Open rahulpatel333 opened this issue 4 months ago • 2 comments

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

rahulpatel333 avatar Aug 29 '25 12:08 rahulpatel333

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.

jelenapoblet avatar Aug 29 '25 15:08 jelenapoblet

I'm just hiding date option from dropdown, not removing and use same date flow for datepicker. That's not affect our odoo flow.

rahulpatel333 avatar Aug 30 '25 10:08 rahulpatel333