Daily updates from Odoo
Friday, December 27, 2024
3 changes
2 changes
Enhancements to existing features
The VoIP softphone now loads more recent calls and contacts as users scroll, instead of requiring all entries to appear at once. This makes browsing longer call histories and contact lists easier and keeps the interface more responsive.
Original PR description
Implement "infinite scrolling" in recent calls/contacts tabs. Task-3984680
Point of Sale no longer needs extra country-specific customizations for blocking mixed refund and sales orders, because this behavior is now handled by default. This reduces duplicated logic and helps keep Chilean electronic invoicing and Belgian blackbox POS flows aligned with the standard process.
Original PR description
Community PR Odoo/Odoo#189329 changes the return value of the `PosOrder` method `doNotAllowRefundAndSales` to `true`, so that some patches are no longer relevant. Community PR: 189329 task-4369388
1 change
Enhancements to existing features
The Point of Sale +/- button now changes quantities and prices to negative values instead of resetting them to zero. This makes returns, refunds, and negative quantity adjustments more accurate and easier for cashiers to handle.
Original PR description
Before this commit: ------------------------- Previously, when adding a product and clicking the "+/-" button, the quantity would change to "0" instead of becoming negative. After this commit: ----------------------- After implementing this commit, pressing the +/- button now results in the quantity value changing to negative instead of changing it to 0. task- 4281516 Related PR: https://github.com/odoo/enterprise/pull/73653