diff --git a/README.md b/README.md index 2c365ac8ef..53751f36ac 100644 --- a/README.md +++ b/README.md @@ -23,8 +23,8 @@ addon | version | maintainers | summary --- | --- | --- | --- [account_mass_reconcile](account_mass_reconcile/) | 17.0.1.0.1 | | Account Mass Reconcile [account_reconcile_model_oca](account_reconcile_model_oca/) | 17.0.1.0.1 | | This includes the logic moved from Odoo Community to Odoo Enterprise -[account_reconcile_oca](account_reconcile_oca/) | 17.0.1.2.3 | [![etobella](https://github.com/etobella.png?size=30px)](https://github.com/etobella) | Reconcile addons for Odoo CE accounting -[account_statement_base](account_statement_base/) | 17.0.1.0.0 | [![alexis-via](https://github.com/alexis-via.png?size=30px)](https://github.com/alexis-via) | Base module for Bank Statements +[account_reconcile_oca](account_reconcile_oca/) | 17.0.1.2.4 | [![etobella](https://github.com/etobella.png?size=30px)](https://github.com/etobella) | Reconcile addons for Odoo CE accounting +[account_statement_base](account_statement_base/) | 17.0.1.0.1 | [![alexis-via](https://github.com/alexis-via.png?size=30px)](https://github.com/alexis-via) | Base module for Bank Statements [//]: # (end addons) diff --git a/account_reconcile_oca/README.rst b/account_reconcile_oca/README.rst index 1141b4b2b9..2a29b93a7d 100644 --- a/account_reconcile_oca/README.rst +++ b/account_reconcile_oca/README.rst @@ -7,7 +7,7 @@ Account Reconcile Oca !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:03f1bec0fb4d71509ddd5f9fe13713c9f65957e744454883322244ae09e52425 + !! source digest: sha256:fec87faa0dc16f2bc940c74b388d5fa2066077f7160ace0b675230f353212982 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/account_reconcile_oca/__manifest__.py b/account_reconcile_oca/__manifest__.py index 2543035f30..c67def781a 100644 --- a/account_reconcile_oca/__manifest__.py +++ b/account_reconcile_oca/__manifest__.py @@ -5,7 +5,7 @@ "name": "Account Reconcile Oca", "summary": """ Reconcile addons for Odoo CE accounting""", - "version": "17.0.1.2.3", + "version": "17.0.1.2.4", "license": "AGPL-3", "author": "CreuBlanca,Dixmit,Odoo Community Association (OCA)", "maintainers": ["etobella"], diff --git a/account_reconcile_oca/models/account_bank_statement_line.py b/account_reconcile_oca/models/account_bank_statement_line.py index ddf8a8dcaf..2395b195c5 100644 --- a/account_reconcile_oca/models/account_bank_statement_line.py +++ b/account_reconcile_oca/models/account_bank_statement_line.py @@ -412,8 +412,9 @@ def _reconcile_data_by_model(self, data, reconcile_model, reconcile_auxiliary_id continue new_data.append(line_data) liquidity_amount += line_data["amount"] + for line in reconcile_model._get_write_off_move_lines_dict( - -liquidity_amount, self._retrieve_partner() + -liquidity_amount, self._retrieve_partner().id ): new_line = line.copy() amount = line.get("balance") diff --git a/account_reconcile_oca/static/description/index.html b/account_reconcile_oca/static/description/index.html index 86af96a2d2..867969b808 100644 --- a/account_reconcile_oca/static/description/index.html +++ b/account_reconcile_oca/static/description/index.html @@ -367,7 +367,7 @@

Account Reconcile Oca

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:03f1bec0fb4d71509ddd5f9fe13713c9f65957e744454883322244ae09e52425 +!! source digest: sha256:fec87faa0dc16f2bc940c74b388d5fa2066077f7160ace0b675230f353212982 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: AGPL-3 OCA/account-reconcile Translate me on Weblate Try me on Runboat

This addon allows to reconcile bank statements and account marked as diff --git a/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js b/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js index fd9f7cb9e9..862c05ac12 100644 --- a/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js +++ b/account_reconcile_oca/static/src/js/reconcile/reconcile_controller.esm.js @@ -33,7 +33,7 @@ export class ReconcileController extends KanbanController { }); } get journalId() { - if (this.props.resModel === "account.bank.statement.line") { + if (this.props.context.active_model === "account.journal") { return this.props.context.active_id; } return false; @@ -69,6 +69,7 @@ export class ReconcileController extends KanbanController { this.action.doAction(action, { onClose: async () => { await this.model.root.load(); + await this.updateJournalInfo(); this.render(true); }, }); diff --git a/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js b/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js index d91b4bda5b..ae5640dd13 100644 --- a/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js +++ b/account_reconcile_oca/static/src/js/reconcile_form/reconcile_form_controller.esm.js @@ -23,10 +23,12 @@ export class ReconcileFormController extends FormController { async reloadFormController() { var is_reconciled = this.model.root.data.is_reconciled; await this.model.root.load(); - if (!is_reconciled && this.model.root.data.is_reconciled) { - // This only happens when we press the reconcile button - if (this.env.parentController) { - // Showing rainbow man + if (this.env.parentController) { + // We will update the parent controller every time we reload the form. + await this.env.parentController.model.root.load(); + await this.env.parentController.render(true); + if (!is_reconciled && this.model.root.data.is_reconciled) { + // This only happens when we press the reconcile button for showing rainbow man const message = await this.orm.call( "account.journal", "get_rainbowman_message", @@ -36,8 +38,6 @@ export class ReconcileFormController extends FormController { this.env.parentController.setRainbowMan(message); } // Refreshing - await this.env.parentController.model.root.load(); - await this.env.parentController.render(true); this.env.parentController.selectRecord(); } } diff --git a/account_reconcile_oca/views/account_move.xml b/account_reconcile_oca/views/account_move.xml index c8de1da836..aa6a8d3a5b 100644 --- a/account_reconcile_oca/views/account_move.xml +++ b/account_reconcile_oca/views/account_move.xml @@ -13,6 +13,7 @@ type="action" name="%(account_reconcile_oca.action_bank_statement_line_move_view_reconcile)s" string="Bank reconcile" + context="{'search_default_move_id': id}" class="btn btn-primary" icon="fa-list" invisible="statement_line_id == False" diff --git a/account_reconcile_oca/views/account_move_line.xml b/account_reconcile_oca/views/account_move_line.xml index e818c71819..c2927700a5 100644 --- a/account_reconcile_oca/views/account_move_line.xml +++ b/account_reconcile_oca/views/account_move_line.xml @@ -45,7 +45,7 @@ diff --git a/account_statement_base/README.rst b/account_statement_base/README.rst index 84f5addea9..b7874dc2a9 100644 --- a/account_statement_base/README.rst +++ b/account_statement_base/README.rst @@ -7,7 +7,7 @@ Bank Statement Base !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:ebb315e960fae495344d0aa2729ae20054f785e44d1eb1e75adfbcce350e911e + !! source digest: sha256:fda7731d828a881d3d3f7d31cc319a4653655b80fda1bece80ea21b3a1e89add !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png @@ -58,7 +58,14 @@ Authors Contributors ------------ -- Alexis de Lattre +- `Akretion `__: + + - Alexis de Lattre + +- `Tecnativa `__: + + - Carlos Dauden + - Sergio Teruel Maintainers ----------- diff --git a/account_statement_base/__init__.py b/account_statement_base/__init__.py index e69de29bb2..0650744f6b 100644 --- a/account_statement_base/__init__.py +++ b/account_statement_base/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/account_statement_base/__manifest__.py b/account_statement_base/__manifest__.py index 871bb02ec7..66645b1a5c 100644 --- a/account_statement_base/__manifest__.py +++ b/account_statement_base/__manifest__.py @@ -4,7 +4,7 @@ { "name": "Bank Statement Base", - "version": "17.0.1.0.0", + "version": "17.0.1.0.1", "category": "Accounting", "license": "LGPL-3", "summary": "Base module for Bank Statements", @@ -14,8 +14,8 @@ "website": "https://github.com/OCA/account-reconcile", "depends": ["account"], "data": [ - "views/account_bank_statement.xml", "views/account_bank_statement_line.xml", + "views/account_bank_statement.xml", # Keep order ], "installable": True, } diff --git a/account_statement_base/i18n/account_statement_base.pot b/account_statement_base/i18n/account_statement_base.pot index 129c637da8..780a3148cb 100644 --- a/account_statement_base/i18n/account_statement_base.pot +++ b/account_statement_base/i18n/account_statement_base.pot @@ -13,6 +13,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: \n" +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Bank Statement" +msgstr "" + #. module: account_statement_base #: model:ir.actions.act_window,name:account_statement_base.account_bank_statement_line_action msgid "Bank Statement Lines" @@ -24,6 +29,7 @@ msgid "Date" msgstr "" #. module: account_statement_base +#: model:ir.model,name:account_statement_base.model_account_journal #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Journal" msgstr "" @@ -73,3 +79,13 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Transaction Type" msgstr "" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Transactions" +msgstr "" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "e.g. BNK/2021/0001" +msgstr "" diff --git a/account_statement_base/i18n/es.po b/account_statement_base/i18n/es.po index e1951a1f88..331eb00047 100644 --- a/account_statement_base/i18n/es.po +++ b/account_statement_base/i18n/es.po @@ -16,6 +16,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n != 1;\n" "X-Generator: Weblate 4.17\n" +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Bank Statement" +msgstr "" + #. module: account_statement_base #: model:ir.actions.act_window,name:account_statement_base.account_bank_statement_line_action msgid "Bank Statement Lines" @@ -27,6 +32,7 @@ msgid "Date" msgstr "Fecha" #. module: account_statement_base +#: model:ir.model,name:account_statement_base.model_account_journal #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Journal" msgstr "Dario" @@ -76,3 +82,13 @@ msgstr "Para revisar" #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Transaction Type" msgstr "Tipo de transacción" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Transactions" +msgstr "" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "e.g. BNK/2021/0001" +msgstr "" diff --git a/account_statement_base/i18n/fr.po b/account_statement_base/i18n/fr.po index 261ebdb2f4..77e19014e0 100644 --- a/account_statement_base/i18n/fr.po +++ b/account_statement_base/i18n/fr.po @@ -16,6 +16,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.17\n" +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Bank Statement" +msgstr "" + #. module: account_statement_base #: model:ir.actions.act_window,name:account_statement_base.account_bank_statement_line_action msgid "Bank Statement Lines" @@ -27,6 +32,7 @@ msgid "Date" msgstr "Date" #. module: account_statement_base +#: model:ir.model,name:account_statement_base.model_account_journal #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Journal" msgstr "Journal" @@ -76,3 +82,13 @@ msgstr "À vérifier" #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Transaction Type" msgstr "Type de transaction" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Transactions" +msgstr "" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "e.g. BNK/2021/0001" +msgstr "" diff --git a/account_statement_base/i18n/it.po b/account_statement_base/i18n/it.po index 0daccbea6d..832bfe03a3 100644 --- a/account_statement_base/i18n/it.po +++ b/account_statement_base/i18n/it.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Odoo Server 17.0\n" "Report-Msgid-Bugs-To: \n" -"PO-Revision-Date: 2024-02-06 09:35+0000\n" +"PO-Revision-Date: 2024-09-09 09:06+0000\n" "Last-Translator: mymage \n" "Language-Team: none\n" "Language: it\n" @@ -14,7 +14,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.17\n" +"X-Generator: Weblate 5.6.2\n" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Bank Statement" +msgstr "Estratto conto bancario" #. module: account_statement_base #: model:ir.actions.act_window,name:account_statement_base.account_bank_statement_line_action @@ -27,6 +32,7 @@ msgid "Date" msgstr "Data" #. module: account_statement_base +#: model:ir.model,name:account_statement_base.model_account_journal #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Journal" msgstr "Registro" @@ -76,3 +82,13 @@ msgstr "Da controllare" #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Transaction Type" msgstr "Tipo transazione" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Transactions" +msgstr "Transazioni" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "e.g. BNK/2021/0001" +msgstr "es. BNK/2021/0001" diff --git a/account_statement_base/i18n/pt_BR.po b/account_statement_base/i18n/pt_BR.po index 0b6cfe9602..ef4fee50ed 100644 --- a/account_statement_base/i18n/pt_BR.po +++ b/account_statement_base/i18n/pt_BR.po @@ -16,6 +16,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 4.17\n" +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Bank Statement" +msgstr "" + #. module: account_statement_base #: model:ir.actions.act_window,name:account_statement_base.account_bank_statement_line_action msgid "Bank Statement Lines" @@ -27,6 +32,7 @@ msgid "Date" msgstr "Data" #. module: account_statement_base +#: model:ir.model,name:account_statement_base.model_account_journal #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Journal" msgstr "Diário" @@ -76,3 +82,13 @@ msgstr "Para Verificar" #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Transaction Type" msgstr "Tipo de Transação" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Transactions" +msgstr "" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "e.g. BNK/2021/0001" +msgstr "" diff --git a/account_statement_base/i18n/zh.po b/account_statement_base/i18n/zh.po index 5936973865..f6722c0684 100644 --- a/account_statement_base/i18n/zh.po +++ b/account_statement_base/i18n/zh.po @@ -14,6 +14,11 @@ msgstr "" "Content-Transfer-Encoding: \n" "Plural-Forms: nplurals=1; plural=0;\n" +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Bank Statement" +msgstr "" + #. module: account_statement_base #: model:ir.actions.act_window,name:account_statement_base.account_bank_statement_line_action msgid "Bank Statement Lines" @@ -25,6 +30,7 @@ msgid "Date" msgstr "" #. module: account_statement_base +#: model:ir.model,name:account_statement_base.model_account_journal #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Journal" msgstr "" @@ -74,3 +80,13 @@ msgstr "" #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Transaction Type" msgstr "" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Transactions" +msgstr "" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "e.g. BNK/2021/0001" +msgstr "" diff --git a/account_statement_base/i18n/zh_CN.po b/account_statement_base/i18n/zh_CN.po index ea75508c7b..c3d2f933aa 100644 --- a/account_statement_base/i18n/zh_CN.po +++ b/account_statement_base/i18n/zh_CN.po @@ -16,6 +16,11 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Weblate 4.17\n" +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Bank Statement" +msgstr "" + #. module: account_statement_base #: model:ir.actions.act_window,name:account_statement_base.account_bank_statement_line_action msgid "Bank Statement Lines" @@ -27,6 +32,7 @@ msgid "Date" msgstr "日期" #. module: account_statement_base +#: model:ir.model,name:account_statement_base.model_account_journal #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Journal" msgstr "日记账" @@ -76,3 +82,13 @@ msgstr "待复核" #: model_terms:ir.ui.view,arch_db:account_statement_base.account_bank_statement_line_search msgid "Transaction Type" msgstr "交易类型" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "Transactions" +msgstr "" + +#. module: account_statement_base +#: model_terms:ir.ui.view,arch_db:account_statement_base.view_bank_statement_form +msgid "e.g. BNK/2021/0001" +msgstr "" diff --git a/account_statement_base/models/__init__.py b/account_statement_base/models/__init__.py new file mode 100644 index 0000000000..3fb26d489b --- /dev/null +++ b/account_statement_base/models/__init__.py @@ -0,0 +1 @@ +from . import account_journal_dashboard diff --git a/account_statement_base/models/account_journal_dashboard.py b/account_statement_base/models/account_journal_dashboard.py new file mode 100644 index 0000000000..d666109018 --- /dev/null +++ b/account_statement_base/models/account_journal_dashboard.py @@ -0,0 +1,16 @@ +from odoo import models + + +class AccountJournal(models.Model): + _inherit = "account.journal" + + def create_cash_statement(self): + # Totally override this action for avoiding the standard + # message saying that you need to install the enterprise + # module. We do the equivalent thing instead. + self.ensure_one() + action = self.env["ir.actions.actions"]._for_xml_id( + "account_statement_base.account_bank_statement_line_action" + ) + action["context"] = {"search_default_journal_id": self.id} + return action diff --git a/account_statement_base/readme/CONTRIBUTORS.md b/account_statement_base/readme/CONTRIBUTORS.md index b61afe5d01..fc3d487bdc 100644 --- a/account_statement_base/readme/CONTRIBUTORS.md +++ b/account_statement_base/readme/CONTRIBUTORS.md @@ -1 +1,5 @@ -- Alexis de Lattre \<\> + - [Akretion](https://www.akretion.com): + - Alexis de Lattre \<\> + - [Tecnativa](https://www.tecnativa.com): + - Carlos Dauden + - Sergio Teruel diff --git a/account_statement_base/static/description/index.html b/account_statement_base/static/description/index.html index 3aba0616a5..ab1cfea115 100644 --- a/account_statement_base/static/description/index.html +++ b/account_statement_base/static/description/index.html @@ -8,10 +8,11 @@ /* :Author: David Goodger (goodger@python.org) -:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $ +:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $ :Copyright: This stylesheet has been placed in the public domain. Default cascading style sheet for the HTML output of Docutils. +Despite the name, some widely supported CSS2 features are used. See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to customize this style sheet. @@ -274,7 +275,7 @@ margin-left: 2em ; margin-right: 2em } -pre.code .ln { color: grey; } /* line numbers */ +pre.code .ln { color: gray; } /* line numbers */ pre.code, code { background-color: #eeeeee } pre.code .comment, code .comment { color: #5C6576 } pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } @@ -300,7 +301,7 @@ span.pre { white-space: pre } -span.problematic { +span.problematic, pre.problematic { color: red } span.section-subtitle { @@ -366,7 +367,7 @@

Bank Statement Base

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:ebb315e960fae495344d0aa2729ae20054f785e44d1eb1e75adfbcce350e911e +!! source digest: sha256:fda7731d828a881d3d3f7d31cc319a4653655b80fda1bece80ea21b3a1e89add !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Mature License: LGPL-3 OCA/account-reconcile Translate me on Weblate Try me on Runboat

This is a technical module that adds the views of the Bank Statement @@ -403,13 +404,23 @@

Authors

Contributors

Maintainers

This module is maintained by the OCA.

-Odoo Community Association + +Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose mission is to support the collaborative development of Odoo features and promote its widespread use.

diff --git a/account_statement_base/views/account_bank_statement.xml b/account_statement_base/views/account_bank_statement.xml index 7c4341c972..6c86b867af 100644 --- a/account_statement_base/views/account_bank_statement.xml +++ b/account_statement_base/views/account_bank_statement.xml @@ -5,6 +5,81 @@ --> + + account.bank.statement.form + account.bank.statement + 1 + +
+ + +
+
+
+
+ + + + + + + + + + + + + + + +
+ + + + + + account.bank.statement diff --git a/account_statement_base/views/account_bank_statement_line.xml b/account_statement_base/views/account_bank_statement_line.xml index 052595c0d0..aac145a2b8 100644 --- a/account_statement_base/views/account_bank_statement_line.xml +++ b/account_statement_base/views/account_bank_statement_line.xml @@ -15,7 +15,7 @@ - + @@ -60,21 +60,36 @@ account.bank.statement.line - - - - - - - + + + + + + + + + + - - - + + + +