Monday, May 11, 2026
2 changes · master
New functionality added to Odoo
This update introduces the ability to link Point of Sale (POS) orders to rental sale orders, streamlining processes for businesses like hotels. Users can now associate POS transactions with specific room bookings, simplifying revenue tracking and inventory management. The system handles stock updates while accounting focuses on the core sale order.
Original PR description
This commit adds modules pos_sale_planning and pos_sale_renting_planning which provide a new feature to put a POS order on the sale order of a rental. It's actually a bit larger. We can put a POS…
This commit adds modules pos_sale_planning and pos_sale_renting_planning which provide a new feature to put a POS order on the sale order of a rental. It's actually a bit larger. We can put a POS order on a sale order linked to a slot linked to a resource. This is useful for example in a hotel scenario where you want to put some pos order on the checkout of a room. To do that, user have to create a payment method, select "link resource" and select the resources he wants. Then, in the point of sale, he will be able to select the payment method and the frontend will fetch the current opened slot linked to selected resource and ask the user on which slot/resource he wants to put the order. Then after the validation of the payment, the order lines will be consolidated by tax and added to the sale order linked to the slot. The accounting of the pos will not take into account those orders but the stock will. task-id: 6192655 Community PR: https://github.com/odoo/odoo/pull/263480
This update introduces a new, sticky dashboard within the rental order management system. It provides real-time counts of rental orders based on their status (Today, Late, etc.), streamlining workflow and offering a clearer overview for rental teams. The previous 'To Do Today' submenu has been removed to simplify the interface.
Original PR description
Add a sticky dashboard header to the rental orders list and kanban views showing live counts (Today, Late, In Progress, To Confirm, To Invoice). Clicking a card filters the view accordingly. Remove the "To Do Today" submenu in favor of the new dashboard. task-5358651