Monday, December 16, 2024
4 changes · master
Resolved issues and error corrections
Users can once again like Twitter/X posts directly from the Social kanban view in Odoo. This restores expected engagement tracking and prevents errors caused by a recent backend view change.
Original PR description
This commit fixes an issue with the social kanban view when liking a Twitter/X post from it. Since odoo/odoo#189109, some views encountered issues with disappearing props and various crashes. The social kanban view used the `list` props to update the like counters on potentially several posts. Since this one disappeared it needed to be replaced to be functional again. This is what this commit does: instead of searching records on `this.props.list` the method does it on `this.props.group.model.root`. task-4403372
The Moroccan reports module now allows users to manually edit the Payment Channel even though it is automatically calculated. This fixes cases where the calculated value needs to be adjusted, helping keep payment reporting accurate during upgrades and daily use.
Original PR description
Upgrade PR: https://github.com/odoo/upgrade/pull/6842 task-4226448
This corrects a typo introduced during an earlier code cleanup in the Chilean electronic invoicing integration for Point of Sale. It helps ensure the POS order process continues calling the right function, reducing the risk of failures for businesses using Chilean localization.
Original PR description
Fix : ------- A previous refactor [PR](https://github.com/odoo/odoo/pull/185252) introduced a typo in a function name. This fixes it. Related Community PR: https://github.com/odoo/odoo/pull/189565
Clicking a line in the Accounting amounts to settle view no longer opens a detailed record form. This keeps the view aligned with its intended purpose and avoids confusing navigation for users reviewing unpaid or late invoices and bills.
Original PR description
Description of the issue this commit addresses: The amounts to settle view which is accessible via the accounting dashboard upon clicking on unpaid or late invoice or bills hyperlink and is an modified version of the journal items view has a different behavior than the original journal items view upon clicking a record. In the amounts to settle view, it opens a form view of the record which is not wanted. --- Steps to reproduce: 1. Install Accounting 2. Go to the accounting dashboard with demo data 3. Click on "Late bills" to open the amounts to settle 4. Click on a line 5. A form view opens --- Desired behavior after this commit is merged: When clicking on a record in the amounts to settle view, nothing should happen. --- Note on the fix: This bug happend because a js_class was missing to disable the reactiveness of the record lines. --- task-4164683