-
-
Notifications
You must be signed in to change notification settings - Fork 398
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 gurneyalex
- Loading branch information
Showing
61 changed files
with
2,797 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,98 @@ | ||
============================================ | ||
Base transaction ID for financial institutes | ||
============================================ | ||
|
||
.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
!! This file is generated by oca-gen-addon-readme !! | ||
!! changes will be overwritten. !! | ||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! | ||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png | ||
:target: https://odoo-community.org/page/development-status | ||
:alt: Beta | ||
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png | ||
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html | ||
:alt: License: AGPL-3 | ||
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Faccount--reconcile-lightgray.png?logo=github | ||
:target: https://github.com/OCA/account-reconcile/tree/16.0/base_transaction_id | ||
:alt: OCA/account-reconcile | ||
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png | ||
:target: https://translation.odoo-community.org/projects/account-reconcile-16-0/account-reconcile-16-0-base_transaction_id | ||
:alt: Translate me on Weblate | ||
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png | ||
:target: https://runboat.odoo-community.org/webui/builds.html?repo=OCA/account-reconcile&target_branch=16.0 | ||
:alt: Try me on Runboat | ||
|
||
|badge1| |badge2| |badge3| |badge4| |badge5| | ||
|
||
|
||
Adds transaction ID to invoice and sale models and views. | ||
|
||
On Sales order, you can specify the transaction ID used for the payment and it | ||
will be propagated to the invoice (even if made from packing). | ||
This is mostly used for e-commerce handling. | ||
|
||
You can then add a mapping on that SO field to save the e-commerce financial | ||
Transaction ID into the Odoo sale order field. | ||
|
||
The main purpose is to ease the reconciliation process and be able to find the partner | ||
when importing the bank statement. | ||
|
||
**Table of contents** | ||
|
||
.. contents:: | ||
:local: | ||
|
||
Bug Tracker | ||
=========== | ||
|
||
Bugs are tracked on `GitHub Issues <https://github.com/OCA/account-reconcile/issues>`_. | ||
In case of trouble, please check there if your issue has already been reported. | ||
If you spotted it first, help us smashing it by providing a detailed and welcomed | ||
`feedback <https://github.com/OCA/account-reconcile/issues/new?body=module:%20base_transaction_id%0Aversion:%2016.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 | ||
~~~~~~~ | ||
|
||
* Camptocamp | ||
|
||
Contributors | ||
~~~~~~~~~~~~ | ||
|
||
* Yannick Vaucher <[email protected]> | ||
* Joël Grand-Guillaume <[email protected]> | ||
* Alexandre Fayolle <[email protected]> | ||
* Guewen Baconnier <[email protected]> | ||
* Lorenzo Battistini <[email protected]> | ||
* Iryna Vyshnevska <[email protected]> | ||
* Mykhailo Panarin <[email protected]> | ||
* Simone Rubino <[email protected]> | ||
* `Trobz <https://trobz.com>`_: | ||
* Dzung Tran <[email protected]> | ||
|
||
Other credits | ||
~~~~~~~~~~~~~ | ||
|
||
The migration of this module from 14.0 to 16.0 was financially supported by Camptocamp | ||
|
||
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. | ||
|
||
This module is part of the `OCA/account-reconcile <https://github.com/OCA/account-reconcile/tree/16.0/base_transaction_id>`_ 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,20 @@ | ||
# Copyright 2019 Camptocamp SA | ||
# Copyright 2022 Simone Rubino - Agile Business Group | ||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) | ||
{ | ||
"name": "Base transaction ID for financial institutes", | ||
"version": "16.0.1.0.0", | ||
"author": "Camptocamp, Odoo Community Association (OCA)", | ||
"maintainer": "Camptocamp", | ||
"category": "Hidden/Dependency", | ||
"depends": [ | ||
"sale", | ||
], | ||
"website": "https://github.com/OCA/account-reconcile", | ||
"data": [ | ||
"views/invoice.xml", | ||
"views/sale.xml", | ||
], | ||
"installable": True, | ||
"license": "AGPL-3", | ||
} |
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,46 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * base_transaction_id | ||
# | ||
# Translators: | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: bank-statement-reconcile (9.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-12-24 00:39+0000\n" | ||
"PO-Revision-Date: 2016-04-26 13:32+0000\n" | ||
"Last-Translator: <>\n" | ||
"Language-Team: Arabic (http://www.transifex.com/oca/OCA-bank-statement-" | ||
"reconcile-9-0/language/ar/)\n" | ||
"Language: ar\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " | ||
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_account_invoice | ||
msgid "Invoice" | ||
msgstr "فاتورة" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_sale_order | ||
msgid "Sale Order" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_account_invoice__transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction ID" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_account_invoice__transaction_id | ||
msgid "Transaction ID from the financial institute" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction id from the financial institute" | ||
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,41 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * base_transaction_id | ||
# | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: Odoo Server 12.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: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_account_invoice | ||
msgid "Invoice" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_sale_order | ||
msgid "Sale Order" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_account_invoice__transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction ID" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_account_invoice__transaction_id | ||
msgid "Transaction ID from the financial institute" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction id from the financial institute" | ||
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,45 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * base_transaction_id | ||
# | ||
# Translators: | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: bank-statement-reconcile (9.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-12-24 00:39+0000\n" | ||
"PO-Revision-Date: 2016-04-26 13:32+0000\n" | ||
"Last-Translator: <>\n" | ||
"Language-Team: Bulgarian (http://www.transifex.com/oca/OCA-bank-statement-" | ||
"reconcile-9-0/language/bg/)\n" | ||
"Language: bg\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" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_account_invoice | ||
msgid "Invoice" | ||
msgstr "Фактура" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_sale_order | ||
msgid "Sale Order" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_account_invoice__transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction ID" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_account_invoice__transaction_id | ||
msgid "Transaction ID from the financial institute" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction id from the financial institute" | ||
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,46 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * base_transaction_id | ||
# | ||
# Translators: | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: bank-statement-reconcile (9.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-12-24 00:39+0000\n" | ||
"PO-Revision-Date: 2016-04-26 13:32+0000\n" | ||
"Last-Translator: <>\n" | ||
"Language-Team: Bosnian (http://www.transifex.com/oca/OCA-bank-statement-" | ||
"reconcile-9-0/language/bs/)\n" | ||
"Language: bs\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" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_account_invoice | ||
msgid "Invoice" | ||
msgstr "Faktura" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_sale_order | ||
msgid "Sale Order" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_account_invoice__transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction ID" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_account_invoice__transaction_id | ||
msgid "Transaction ID from the financial institute" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction id from the financial institute" | ||
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,45 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * base_transaction_id | ||
# | ||
# Translators: | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: bank-statement-reconcile (9.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-12-24 00:39+0000\n" | ||
"PO-Revision-Date: 2016-04-26 13:32+0000\n" | ||
"Last-Translator: <>\n" | ||
"Language-Team: Catalan (http://www.transifex.com/oca/OCA-bank-statement-" | ||
"reconcile-9-0/language/ca/)\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" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_account_invoice | ||
msgid "Invoice" | ||
msgstr "Factura" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_sale_order | ||
msgid "Sale Order" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_account_invoice__transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction ID" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_account_invoice__transaction_id | ||
msgid "Transaction ID from the financial institute" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction id from the financial institute" | ||
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,45 @@ | ||
# Translation of Odoo Server. | ||
# This file contains the translation of the following modules: | ||
# * base_transaction_id | ||
# | ||
# Translators: | ||
msgid "" | ||
msgstr "" | ||
"Project-Id-Version: bank-statement-reconcile (9.0)\n" | ||
"Report-Msgid-Bugs-To: \n" | ||
"POT-Creation-Date: 2016-12-24 00:39+0000\n" | ||
"PO-Revision-Date: 2016-04-26 13:32+0000\n" | ||
"Last-Translator: <>\n" | ||
"Language-Team: Czech (http://www.transifex.com/oca/OCA-bank-statement-" | ||
"reconcile-9-0/language/cs/)\n" | ||
"Language: cs\n" | ||
"MIME-Version: 1.0\n" | ||
"Content-Type: text/plain; charset=UTF-8\n" | ||
"Content-Transfer-Encoding: \n" | ||
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_account_invoice | ||
msgid "Invoice" | ||
msgstr "Faktura" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model,name:base_transaction_id.model_sale_order | ||
msgid "Sale Order" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_account_invoice__transaction_id | ||
#: model:ir.model.fields,field_description:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction ID" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_account_invoice__transaction_id | ||
msgid "Transaction ID from the financial institute" | ||
msgstr "" | ||
|
||
#. module: base_transaction_id | ||
#: model:ir.model.fields,help:base_transaction_id.field_sale_order__transaction_id | ||
msgid "Transaction id from the financial institute" | ||
msgstr "" |
Oops, something went wrong.