Daily updates from Odoo
Monday, April 22, 2024
4 changes · master
Enhancements to existing features
Knowledge comments now save a short copy of the text or image area they refer to, so the comment remains understandable even if the original article content changes. Longer saved references can be expanded with a Read More option, improving collaboration and review clarity.
Original PR description
This commit adds the storage of text anchors for comments. Before this commit we didn't store the text's anchors and displayed it dynamically. The advantage of this approach is that we didn't need to store any text inside the DB for each comment => this could've led to big sums of data for not a big gain. The disadvantage is that if the anchor doesn't exist anymore and we lose the context of the comment. Now, a new field `article_anchor_text` stores up to 1200 characters of the anchor's text. When the anchor is longer than 50 chars we display a Read More button that will display the anchor's stored text. task-3672422
Electronic payment flows in Point of Sale now start automatically instead of waiting for extra cashier input. This speeds up checkout, reduces manual steps, and helps customers complete card payments more quickly.
Original PR description
- changed the functionality of the electronic payment button to be automatic instead of waiting for user input. TASK-ID: 2770467 Related: https://github.com/odoo/odoo/pull/153659
The delivery IoT settings screen now presents the Scales feature explanation more clearly. The text is better aligned with its section and separated from the documentation link, making the information easier for users to read.
Original PR description
This PR introduces two minor changes to `stock.picking.type` model: * align the explanation of "Scales" feature with its section. * add a line break between the explanation and the link to the documentation. COM PR: odoo/odoo#159495 Task-3644665
Employee managers now receive the right payroll-related access through their existing contract management role. This keeps payroll collaboration features, such as discussion chatter, limited to appropriate manager users and simplifies permission management.
Original PR description
Make hr_contract_employee_manager imply hr_payroll_employee_manager