diff --git a/dynamic_accounts_report/__manifest__.py b/dynamic_accounts_report/__manifest__.py index 813126115..44e08206e 100644 --- a/dynamic_accounts_report/__manifest__.py +++ b/dynamic_accounts_report/__manifest__.py @@ -21,7 +21,7 @@ ################################################################################ { 'name': 'Odoo17 Dynamic Accounting Reports', - 'version': '17.0.1.0.1', + 'version': '17.0.1.0.0', 'category': 'Accounting', 'summary': "Odoo 17 Accounting Financial Reports,Dynamic Accounting Reports, Dynamic Financial Reports,Dynamic Report Odoo17, Odoo17,Financial Reports, Odoo17 Accounting,Accounting, Odoo Apps", 'description': "This module creates dynamic Accounting General Ledger, Trial" diff --git a/dynamic_accounts_report/doc/RELEASE_NOTES.md b/dynamic_accounts_report/doc/RELEASE_NOTES.md index 8ad751f80..5e3d79f6d 100644 --- a/dynamic_accounts_report/doc/RELEASE_NOTES.md +++ b/dynamic_accounts_report/doc/RELEASE_NOTES.md @@ -4,3 +4,8 @@ #### Version 17.0.1.0.0 #### ADD - Initial commit for Dynamic Accounts Reports + +#### 19.04.2024 +#### Version 17.0.1.0.1 +##### BUG FIX +- Updated the scrolling issue of General Ledger diff --git a/dynamic_accounts_report/models/dynamic_balance_sheet_report.py b/dynamic_accounts_report/models/dynamic_balance_sheet_report.py index d54b9d0bd..23b1bfc9e 100644 --- a/dynamic_accounts_report/models/dynamic_balance_sheet_report.py +++ b/dynamic_accounts_report/models/dynamic_balance_sheet_report.py @@ -303,13 +303,13 @@ class ProfitLossReport(models.TransientModel): amount = sum(filtered_lines.mapped('debit')) - sum( filtered_lines.mapped('credit')) entries.append({ - 'name': "{} - {}".format(account.code, account.name), + 'name': "{} - {}".format(account.root_id.id, account.name), 'amount': "{:,.2f}".format(amount), }) total += amount else: entries.append({ - 'name': "{} - {}".format(account.code, account.name), + 'name': "{} - {}".format(account.root_id.id, account.name), 'amount': "{:,.2f}".format(0), }) return entries, "{:,.2f}".format(total) diff --git a/dynamic_accounts_report/report/balance_sheet_report_templates.xml b/dynamic_accounts_report/report/balance_sheet_report_templates.xml index 73c7744c7..339474cdb 100644 --- a/dynamic_accounts_report/report/balance_sheet_report_templates.xml +++ b/dynamic_accounts_report/report/balance_sheet_report_templates.xml @@ -6,7 +6,6 @@