Tuesday, December 24, 2024
2 changes · master
Resolved issues and error corrections
The point of sale delivery button now refreshes properly when a new delivery order is received. This helps staff see incoming delivery activity immediately and reduces the risk of missed or delayed order handling.
Original PR description
Before this commit: === - The delivery button on the navbar was not updating properly when receiving a new order. After this commit: === - The delivery button now updates correctly upon receiving a new order. task-4420307
Demo text used for editing report templates was moved into a Studio-only field so it no longer appears on real reports when customer data is missing. This keeps follow-up and SEPA direct debit documents accurate and avoids confusing recipients with placeholder content.
Original PR description
account_* = account_followup, account_sepa_direct_debit During the introduction of the new studio report editor, some reports were edited to add some demo data as default content. See: https://github.com/odoo/enterprise/pull/47501 The assumption was that this would only be displayed inside the report editor and the field value outside. Turns out that if the field value is falsy, the demo content is displayed inside the actual report. This commit has been generated to move only the demo data(default content) inside the new attribute data-oe-demo. This attribute is only used inside studio to display the demo content. > Related PR * https://github.com/odoo/odoo/pull/186391 Task: 4182618