Daily updates from Odoo
Tuesday, September 13, 2022
3 changes
Resolved issues and error corrections
The general ledger no longer includes opening balances for income and expense accounts, which could previously make reports inaccurate. This helps businesses rely on more accurate financial reporting for period-based profit and loss activity.
Original PR description
The general ledger was wrongfully taking into account the initial balance of income and expense accounts. Initial balance on income and expense accounts is now properly ignored. Signed-off-by: Ruben Gomes <rugo@odoo.com>
The Mexican DIOT tax report now opens reliably and includes the internal counter information needed for exports. Labels were also improved so the report is clearer for users preparing compliance information.
Original PR description
[IMP] l10n_mx_reports: better labelling of DIOT line [FIX] l10n_mx_reports: allow opening DIOT report DIOT report was failing because we were building the result dict of the engine based upon the column_ids' expression_label. This was wrong, because expression labelled 'counter' wasn't included, since it does not correspond to any column. This expression is necessary for exports, though, so instead of calling the columns, we now directly call the labels of the expressions defined on the report line.
Refreshing the bank reconciliation screen no longer triggers an automatic save. This helps avoid unintended changes being recorded while users are reviewing or working on bank reconciliation items.
Original PR description
urgentSave is called on refresh of the UI. override beforeUnload to prevent this