-
-
Notifications
You must be signed in to change notification settings - Fork 421
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by grindtildeath
- Loading branch information
Showing
21 changed files
with
1,025 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
===================================== | ||
Base module for Bank Statement Import | ||
===================================== | ||
|
||
.. | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! source digest: sha256:8a0ca56de404b6170ac3b65b4307eebcf333aba95bdd7ae467333cafd5796bde | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Mature-brightgreen.png | ||
:target: https://odoo-community.org/page/development-status | ||
:alt: Mature | ||
.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png | ||
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html | ||
:alt: License: LGPL-3 | ||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github | ||
:target: https://github.com/OCA/bank-statement-import/tree/18.0/account_statement_import_base | ||
:alt: OCA/bank-statement-import | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/bank-statement-import-18-0/bank-statement-import-18-0-account_statement_import_base | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png | ||
:target: https://runboat.odoo-community.org/builds?repo=OCA/bank-statement-import&target_branch=18.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
This is a technical module designed to share code between 2 other | ||
modules: | ||
|
||
- **account_statement_import_file** that allows to import bank | ||
statements from files, | ||
- **account_statement_import_online** that allows to import bank | ||
statements from webservices/APIs. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/bank-statement-import/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us to smash it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_base%0Aversion:%2018.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. | ||
|
||
Do not contact contributors directly about support or help with technical issues. | ||
|
||
Credits | ||
======= | ||
|
||
Authors | ||
------- | ||
|
||
* Akretion | ||
|
||
Contributors | ||
------------ | ||
|
||
- Alexis de Lattre <[email protected]> | ||
|
||
- Trobz <https://www.trobz.com/> | ||
|
||
- Do Anh Duy <[email protected]> | ||
|
||
Maintainers | ||
----------- | ||
|
||
This module is maintained by the OCA. | ||
|
||
.. image:: https://odoo-community.org/logo.png | ||
:alt: Odoo Community Association | ||
:target: https://odoo-community.org | ||
|
||
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. | ||
|
||
.. |maintainer-alexis-via| image:: https://github.com/alexis-via.png?size=40px | ||
:target: https://github.com/alexis-via | ||
:alt: alexis-via | ||
|
||
Current `maintainer <https://odoo-community.org/page/maintainer-role>`__: | ||
|
||
|maintainer-alexis-via| | ||
|
||
This module is part of the `OCA/bank-statement-import <https://github.com/OCA/bank-statement-import/tree/18.0/account_statement_import_base>`_ project on GitHub. | ||
|
||
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
from . import models |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# Copyright 2022 Akretion France (http://www.akretion.com/) | ||
# @author: Alexis de Lattre <[email protected]> | ||
# Licence LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0). | ||
|
||
{ | ||
"name": "Base module for Bank Statement Import", | ||
"category": "Accounting", | ||
"version": "18.0.1.0.0", | ||
"license": "LGPL-3", | ||
"depends": ["account_statement_base"], | ||
"author": "Akretion, Odoo Community Association (OCA)", | ||
"maintainers": ["alexis-via"], | ||
"development_status": "Mature", | ||
"website": "https://github.com/OCA/bank-statement-import", | ||
"data": [ | ||
"views/account_bank_statement_line.xml", | ||
], | ||
"installable": True, | ||
} |
40 changes: 40 additions & 0 deletions
40
account_statement_import_base/i18n/account_statement_import_base.pot
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * account_statement_import_base | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 17.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"Last-Translator: \n" | ||
"Language-Team: \n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: \n" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.constraint,message:account_statement_import_base.constraint_account_bank_statement_line_unique_import_id | ||
msgid "A bank account transaction can be imported only once!" | ||
msgstr "" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_bank_statement_line | ||
msgid "Bank Statement Line" | ||
msgstr "" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__unique_import_id | ||
msgid "Import ID" | ||
msgstr "" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_journal | ||
msgid "Journal" | ||
msgstr "" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__raw_data | ||
#: model_terms:ir.ui.view,arch_db:account_statement_import_base.account_bank_statement_line_form | ||
msgid "Raw Data" | ||
msgstr "" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * account_statement_import_base | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 16.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2023-11-18 18:35+0000\n" | ||
"Last-Translator: pere-aquarian <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: ca\n" | ||
"MIME-Version: 1.0\n" | ||
"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" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.constraint,message:account_statement_import_base.constraint_account_bank_statement_line_unique_import_id | ||
msgid "A bank account transaction can be imported only once!" | ||
msgstr "Una transacció de compte bancari només es pot importar una vegada!" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_bank_statement_line | ||
msgid "Bank Statement Line" | ||
msgstr "Línia d'extracte bancari" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__unique_import_id | ||
msgid "Import ID" | ||
msgstr "Importar ID" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_journal | ||
msgid "Journal" | ||
msgstr "Diari" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__raw_data | ||
#: model_terms:ir.ui.view,arch_db:account_statement_import_base.account_bank_statement_line_form | ||
msgid "Raw Data" | ||
msgstr "Dades de línia" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * account_statement_import_base | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 16.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2023-06-02 14:10+0000\n" | ||
"Last-Translator: gelo joga Rodríguez <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: es\n" | ||
"MIME-Version: 1.0\n" | ||
"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" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.constraint,message:account_statement_import_base.constraint_account_bank_statement_line_unique_import_id | ||
msgid "A bank account transaction can be imported only once!" | ||
msgstr "¡Una transacción bancaria sólo se puede importar una vez!" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_bank_statement_line | ||
msgid "Bank Statement Line" | ||
msgstr "Línea de extracto bancario" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__unique_import_id | ||
msgid "Import ID" | ||
msgstr "ID importación" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_journal | ||
msgid "Journal" | ||
msgstr "Diario" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__raw_data | ||
#: model_terms:ir.ui.view,arch_db:account_statement_import_base.account_bank_statement_line_form | ||
msgid "Raw Data" | ||
msgstr "Datos sin procesar" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * account_statement_import_base | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 16.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2023-06-08 14:08+0000\n" | ||
"Last-Translator: Alexis de Lattre <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: fr\n" | ||
"MIME-Version: 1.0\n" | ||
"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" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.constraint,message:account_statement_import_base.constraint_account_bank_statement_line_unique_import_id | ||
msgid "A bank account transaction can be imported only once!" | ||
msgstr "Une transaction bancaire ne peut être importée qu'une seule fois !" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_bank_statement_line | ||
msgid "Bank Statement Line" | ||
msgstr "Ligne de relevé de compte" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__unique_import_id | ||
msgid "Import ID" | ||
msgstr "Identifiant d'import" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_journal | ||
msgid "Journal" | ||
msgstr "Journal" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__raw_data | ||
#: model_terms:ir.ui.view,arch_db:account_statement_import_base.account_bank_statement_line_form | ||
msgid "Raw Data" | ||
msgstr "Données brutes" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * account_statement_import_base | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 16.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2023-06-02 14:10+0000\n" | ||
"Last-Translator: Bole <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: hr\n" | ||
"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" | ||
"X-Generator: Weblate 4.17\n" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.constraint,message:account_statement_import_base.constraint_account_bank_statement_line_unique_import_id | ||
msgid "A bank account transaction can be imported only once!" | ||
msgstr "Transakcija po bankovnom računu može biti uvežena samo jednom!" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_bank_statement_line | ||
msgid "Bank Statement Line" | ||
msgstr "Stavka izvoda" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__unique_import_id | ||
msgid "Import ID" | ||
msgstr "ID Uvoza" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_journal | ||
msgid "Journal" | ||
msgstr "Dnevnik" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__raw_data | ||
#: model_terms:ir.ui.view,arch_db:account_statement_import_base.account_bank_statement_line_form | ||
msgid "Raw Data" | ||
msgstr "Sirovi podaci" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * account_statement_import_base | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 17.0\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"PO-Revision-Date: 2024-05-03 16:35+0000\n" | ||
"Last-Translator: mymage <[email protected]>\n" | ||
"Language-Team: none\n" | ||
"Language: it\n" | ||
"MIME-Version: 1.0\n" | ||
"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" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.constraint,message:account_statement_import_base.constraint_account_bank_statement_line_unique_import_id | ||
msgid "A bank account transaction can be imported only once!" | ||
msgstr "Un'operazione di un conto bancario può essere importata una sola volta!" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_bank_statement_line | ||
msgid "Bank Statement Line" | ||
msgstr "Riga estratto conto" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__unique_import_id | ||
msgid "Import ID" | ||
msgstr "ID importazione" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model,name:account_statement_import_base.model_account_journal | ||
msgid "Journal" | ||
msgstr "Registro" | ||
|
||
#. module: account_statement_import_base | ||
#: model:ir.model.fields,field_description:account_statement_import_base.field_account_bank_statement_line__raw_data | ||
#: model_terms:ir.ui.view,arch_db:account_statement_import_base.account_bank_statement_line_form | ||
msgid "Raw Data" | ||
msgstr "Dati grezzi" |
Oops, something went wrong.