Tuesday, April 14, 2026
4 changes · saas-19.2
Enhancements to existing features
This update enhances the budget report to automatically include tracking of asset accounts. Previously, budget reports only covered expense accounts. Now, when tracking expenses or both expenses and budgets, the system will include asset accounts like current, non-current, and fixed assets, providing a more complete financial picture.
Original PR description
Expand the scope of budget tracking to include asset accounts. Modified the account filtering logic so that when a budget type is set to "Expenses" or "Both", the query includes 'asset_current', 'asset_non_current', and 'asset_fixed' account types. task-5994048 Forward-Port-Of: odoo/enterprise#112239 Forward-Port-Of: odoo/enterprise#109496
This update enhances the processing of point-of-sale transactions within the German tax reporting module (l10n_de_pos_cert). Specifically, it ensures accurate tracking of transaction times and automatically clears active transactions at the end of each session to align with tax reporting requirements. This improves data reliability and simplifies compliance.
Original PR description
In this commit: ------------------ - The transactions were shown to be processed within 0-1 seconds as we were used to call start and finish transaction calls on validation so in the case of retails it won't give actual data of start and end time so we need to improve this and called now for `start transaction` when first orderline added to a new order, calling `cancelled` if the order is deleted or all the orderlines are removed manually, and `finished` on validation of the order. - Also will delete all active transactions on the fiskaly at the time of closing of session so that no active order remains (if cleared cache) As a lot things are already handled in v19 Handled https://github.com/odoo/enterprise/pull/99216 pr's remaining updates here. Forward-Port-Of: odoo/enterprise#113669 Forward-Port-Of: odoo/enterprise#107530
This update brings the software running on our IoT boxes to version 19.2, aligning them with the latest Odoo release. This ensures our IoT devices receive the newest features and improvements, and will be updated within two weeks of this merge.
Original PR description
This PR updates the current version of the iot boxes to saas-19.2. This only applies to the iot boxes currently in saas-19.1 This will lead to the iot boxes updating to the next version 2 weeks after this PR is merged task-5949470 Forward-Port-Of: odoo/odoo#258140
This update enhances the system's ability to identify duplicate accounting moves, providing clearer visual cues for users. The system now highlights potential duplicates in red or yellow based on similarity, and prioritizes warnings based on move status (Draft vs. Posted).
Original PR description
In this commit: - Highlight the reference in red when it is identical and in yellow when references are different. Apply the same logic to the duplicate document warning in the form view. - In the form view duplicate warning, use the Bill Reference if available, then the Move Name, then "Draft". - Yellow warnings are restricted to Draft moves; only red warnings remain visible once Posted. task-5916255 Forward-Port-Of: odoo/odoo#248421