diff --git a/base_accounting_kit/__manifest__.py b/base_accounting_kit/__manifest__.py index e669b2a1d..441cd6be4 100644 --- a/base_accounting_kit/__manifest__.py +++ b/base_accounting_kit/__manifest__.py @@ -21,7 +21,7 @@ ############################################################################# { 'name': 'Odoo 17 Full Accounting Kit for Community', - 'version': '17.0.1.0.4', + 'version': '17.0.1.0.5', 'category': 'Accounting', 'summary': """Odoo 17 Accounting, Odoo 17 Accounting Reports, Odoo17 Accounting, Odoo Accounting, Odoo17 Financial Reports, Odoo17 Asset, Odoo17 Profit and Loss, PDC, Followups, Odoo17, Accounting, Odoo Apps, Reports""", 'description': """ Odoo 17 Accounting, The module used to manage the Full @@ -44,6 +44,7 @@ 'data/multiple_invoice_data.xml', 'data/recurring_entry_cron.xml', 'data/account_pdc_data.xml', + 'views/account_journal_dashboard_view.xml', 'views/reports_config_view.xml', 'views/accounting_menu.xml', 'views/account_group.xml', diff --git a/base_accounting_kit/doc/RELEASE_NOTES.md b/base_accounting_kit/doc/RELEASE_NOTES.md index 61ef79b4a..cbeb76127 100644 --- a/base_accounting_kit/doc/RELEASE_NOTES.md +++ b/base_accounting_kit/doc/RELEASE_NOTES.md @@ -24,3 +24,8 @@ #### Version 17.0.1.0.4 ##### FIX - Bug Fix-Resolved displaying payment badge when confirming the invoice. + +#### 07.01.2025 +#### Version 17.0.1.0.5 +##### UPDT +- Removed the transactions and statements from bank journal in the account journal dashboard. \ No newline at end of file diff --git a/base_accounting_kit/models/account_journal.py b/base_accounting_kit/models/account_journal.py index c75734636..87a41981c 100644 --- a/base_accounting_kit/models/account_journal.py +++ b/base_accounting_kit/models/account_journal.py @@ -35,6 +35,7 @@ class AccountJournal(models.Model): # to this journal bank_stmt = self.env['account.bank.statement'].search( [('journal_id', 'in', self.ids)]).mapped('line_ids') + print("lines", bank_stmt) return { 'type': 'ir.actions.client', 'tag': 'bank_statement_reconciliation_view', diff --git a/base_accounting_kit/views/account_journal_dashboard_view.xml b/base_accounting_kit/views/account_journal_dashboard_view.xml new file mode 100644 index 000000000..d06db9149 --- /dev/null +++ b/base_accounting_kit/views/account_journal_dashboard_view.xml @@ -0,0 +1,24 @@ + + + + account.journal.dashboard.kanban + account.journal + + + +
+
+
+ +
+
+
+ + + +
+
+
\ No newline at end of file