Skip to content

Commit

Permalink
Merge branch 'OCA:16.0' into 16.0-arpol
Browse files Browse the repository at this point in the history
  • Loading branch information
arpol-dev authored Jan 7, 2025
2 parents 020cf67 + 2298d49 commit 2d2d99b
Show file tree
Hide file tree
Showing 102 changed files with 549 additions and 128 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ Available addons
----------------
addon | version | maintainers | summary
--- | --- | --- | ---
[account_statement_import_base](account_statement_import_base/) | 16.0.1.0.0 | [![alexis-via](https://github.com/alexis-via.png?size=30px)](https://github.com/alexis-via) | Base module for Bank Statement Import
[account_statement_import_base](account_statement_import_base/) | 16.0.1.0.1 | [![alexis-via](https://github.com/alexis-via.png?size=30px)](https://github.com/alexis-via) | Base module for Bank Statement Import
[account_statement_import_camt](account_statement_import_camt/) | 16.0.1.0.2 | | CAMT Format Bank Statements Import
[account_statement_import_camt54](account_statement_import_camt54/) | 16.0.1.0.0 | | Bank Account Camt54 Import
[account_statement_import_file](account_statement_import_file/) | 16.0.1.0.2 | [![alexis-via](https://github.com/alexis-via.png?size=30px)](https://github.com/alexis-via) | Import Statement Files
[account_statement_import_file](account_statement_import_file/) | 16.0.1.1.0 | [![alexis-via](https://github.com/alexis-via.png?size=30px)](https://github.com/alexis-via) [![etobella](https://github.com/etobella.png?size=30px)](https://github.com/etobella) | Import Statement Files
[account_statement_import_file_reconcile_oca](account_statement_import_file_reconcile_oca/) | 16.0.1.0.0 | [![alexis-via](https://github.com/alexis-via.png?size=30px)](https://github.com/alexis-via) | Import Statement Files and Go Direct to Reconciliation
[account_statement_import_ofx](account_statement_import_ofx/) | 16.0.1.0.0 | [![alexis-via](https://github.com/alexis-via.png?size=30px)](https://github.com/alexis-via) | Import OFX Bank Statement
[account_statement_import_online](account_statement_import_online/) | 16.0.1.3.0 | [![alexey-pelykh](https://github.com/alexey-pelykh.png?size=30px)](https://github.com/alexey-pelykh) | Online bank statements update
[account_statement_import_online](account_statement_import_online/) | 16.0.1.4.0 | [![alexey-pelykh](https://github.com/alexey-pelykh.png?size=30px)](https://github.com/alexey-pelykh) | Online bank statements update
[account_statement_import_online_gocardless](account_statement_import_online_gocardless/) | 16.0.1.2.4 | | Online Bank Statements: GoCardless
[account_statement_import_online_ofx](account_statement_import_online_ofx/) | 16.0.1.0.0 | | Online bank statements for OFX
[account_statement_import_online_paypal](account_statement_import_online_paypal/) | 16.0.1.0.1 | [![alexey-pelykh](https://github.com/alexey-pelykh.png?size=30px)](https://github.com/alexey-pelykh) | Online bank statements for PayPal.com
[account_statement_import_online_paypal](account_statement_import_online_paypal/) | 16.0.1.0.2 | [![alexey-pelykh](https://github.com/alexey-pelykh.png?size=30px)](https://github.com/alexey-pelykh) | Online bank statements for PayPal.com
[account_statement_import_online_ponto](account_statement_import_online_ponto/) | 16.0.1.1.1 | | Online Bank Statements: MyPonto.com
[account_statement_import_online_qonto](account_statement_import_online_qonto/) | 16.0.1.0.1 | | Online Bank Statements: Qonto
[account_statement_import_qif](account_statement_import_qif/) | 16.0.1.0.0 | | Import QIF Bank Statements
Expand Down
2 changes: 1 addition & 1 deletion account_statement_import_base/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Base module for Bank Statement Import
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:9fa09d431b4c7e1698f01c7fd2250709e7c51a8ad373c7b6bdefe84c3ead0541
!! source digest: sha256:c7cc0078d436d9ef292a3f62de69631a3899fa891089fe235b6c086a6063f0ca
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
Expand Down
2 changes: 1 addition & 1 deletion account_statement_import_base/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{
"name": "Base module for Bank Statement Import",
"category": "Accounting",
"version": "16.0.1.0.0",
"version": "16.0.1.0.1",
"license": "LGPL-3",
"depends": ["account_statement_base"],
"author": "Akretion, Odoo Community Association (OCA)",
Expand Down
5 changes: 4 additions & 1 deletion account_statement_import_base/models/account_journal.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@ def _statement_line_import_speeddict(self):
["acc_number", "partner_id"],
)
for partner_bank in partner_banks:
speeddict["account_number"][partner_bank["acc_number"]] = {
sanitized_acc_number = self._sanitize_bank_account_number(
partner_bank["acc_number"]
)
speeddict["account_number"][sanitized_acc_number] = {
"partner_id": partner_bank["partner_id"][0],
"partner_bank_id": partner_bank["id"],
}
Expand Down
14 changes: 8 additions & 6 deletions account_statement_import_base/static/description/index.html
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
Expand All @@ -9,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.
Expand Down Expand Up @@ -275,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 }
Expand All @@ -301,7 +301,7 @@
span.pre {
white-space: pre }

span.problematic {
span.problematic, pre.problematic {
color: red }

span.section-subtitle {
Expand Down Expand Up @@ -367,7 +367,7 @@ <h1 class="title">Base module for Bank Statement Import</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:9fa09d431b4c7e1698f01c7fd2250709e7c51a8ad373c7b6bdefe84c3ead0541
!! source digest: sha256:c7cc0078d436d9ef292a3f62de69631a3899fa891089fe235b6c086a6063f0ca
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Mature" src="https://img.shields.io/badge/maturity-Mature-brightgreen.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/lgpl-3.0-standalone.html"><img alt="License: LGPL-3" src="https://img.shields.io/badge/licence-LGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/bank-statement-import/tree/16.0/account_statement_import_base"><img alt="OCA/bank-statement-import" src="https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/bank-statement-import-16-0/bank-statement-import-16-0-account_statement_import_base"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/bank-statement-import&amp;target_branch=16.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
<p>This is a technical module designed to share code between 2 other modules:</p>
Expand Down Expand Up @@ -412,7 +412,9 @@ <h2><a class="toc-backref" href="#toc-entry-4">Contributors</a></h2>
<div class="section" id="maintainers">
<h2><a class="toc-backref" href="#toc-entry-5">Maintainers</a></h2>
<p>This module is maintained by the OCA.</p>
<a class="reference external image-reference" href="https://odoo-community.org"><img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" /></a>
<a class="reference external image-reference" href="https://odoo-community.org">
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
</a>
<p>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.</p>
Expand Down
10 changes: 7 additions & 3 deletions account_statement_import_file/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Import Statement Files
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:05b01603d319c8d76bf854f4c741c8439547285d1db7cfddfdd65d8c75a06e54
!! source digest: sha256:4cb9d31129214139471474143fe6624654b0549708637c0685a82839c991d4a9
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png
Expand Down Expand Up @@ -77,6 +77,7 @@ Contributors
* Odoo S.A.
* Alexis de Lattre <alexis.delattre@akretion.com>
* Tecnativa - Pedro M. Baeza
* Dixmit - Enric Tobella

Maintainers
~~~~~~~~~~~
Expand All @@ -94,10 +95,13 @@ promote its widespread use.
.. |maintainer-alexis-via| image:: https://github.com/alexis-via.png?size=40px
:target: https://github.com/alexis-via
:alt: alexis-via
.. |maintainer-etobella| image:: https://github.com/etobella.png?size=40px
:target: https://github.com/etobella
:alt: etobella

Current `maintainer <https://odoo-community.org/page/maintainer-role>`__:
Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:

|maintainer-alexis-via|
|maintainer-alexis-via| |maintainer-etobella|

This module is part of the `OCA/bank-statement-import <https://github.com/OCA/bank-statement-import/tree/16.0/account_statement_import_file>`_ project on GitHub.

Expand Down
10 changes: 8 additions & 2 deletions account_statement_import_file/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
{
"name": "Import Statement Files",
"category": "Accounting",
"version": "16.0.1.0.2",
"version": "16.0.1.1.0",
"license": "LGPL-3",
"depends": ["account_statement_import_base"],
"author": "Odoo SA, Akretion, Odoo Community Association (OCA)",
"maintainers": ["alexis-via"],
"maintainers": ["alexis-via", "etobella"],
"development_status": "Mature",
"website": "https://github.com/OCA/bank-statement-import",
"data": [
Expand All @@ -21,5 +21,11 @@
"demo": [
"demo/partner_bank.xml",
],
"assets": {
"web.assets_backend": [
"account_statement_import_file/static/src/**/*.xml",
"account_statement_import_file/static/src/**/*.esm.js",
],
},
"installable": True,
}
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/af.po
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/am.po
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/ar.po
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@ msgid "Import Statement"
msgstr "استيراد كشف حساب"

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/az.po
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/bg.po
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
7 changes: 5 additions & 2 deletions account_statement_import_file/i18n/bs.po
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"

#. module: account_statement_import_file
#. odoo-python
Expand Down Expand Up @@ -106,7 +106,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
6 changes: 5 additions & 1 deletion account_statement_import_file/i18n/ca.po
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ msgid "Import Statement"
msgstr "Importar extracte"

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr "Importar extracte bancari (OCA)"

Expand Down Expand Up @@ -174,7 +177,8 @@ msgstr "Formats suportats:"
#: code:addons/account_statement_import_file/wizard/account_statement_import.py:0
#, python-format
msgid "The Bank Accounting Account is not set on the journal '%s'."
msgstr "El compte comptable del compte bancari no està establert al diari '%s'."
msgstr ""
"El compte comptable del compte bancari no està establert al diari '%s'."

#. module: account_statement_import_file
#. odoo-python
Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/cs.po
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/da.po
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ msgid "Import Statement"
msgstr "Importer kontoudtog"

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/de.po
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ msgid "Import Statement"
msgstr "Bankauszug importieren"

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/el.po
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,10 @@ msgid "Import Statement"
msgstr "Εισαγωγή Statement"

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/en_AU.po
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/en_GB.po
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/es.po
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,10 @@ msgid "Import Statement"
msgstr "Importar extracto"

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr "Importar Extracto (OCA)"

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/es_AR.po
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,10 @@ msgid "Import Statement"
msgstr "Importar Extracto"

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/es_BO.po
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/es_CL.po
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
3 changes: 3 additions & 0 deletions account_statement_import_file/i18n/es_CO.po
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,10 @@ msgid "Import Statement"
msgstr ""

#. module: account_statement_import_file
#. odoo-javascript
#: code:addons/account_statement_import_file/static/src/account_statement_import_file/account_statement_import_file.xml:0
#: model_terms:ir.ui.view,arch_db:account_statement_import_file.journal_dashboard_view_inherit
#, python-format
msgid "Import Statement (OCA)"
msgstr ""

Expand Down
Loading

0 comments on commit 2d2d99b

Please sign in to comment.