Files
account-reconcile/base_transaction_id/__manifest__.py
Akim Juillerat 4c2dde8c97 [12.0] base_transaction_id: Fix migration
Module is broken since its migration as the hooks used for reconciliation
are not used anymore in Odoo 12.0.

Therefore transaction_ref is dropped from account.move.line and transaction_id
is now written into account.move.ref at invoice validation to allow the use
of standard Odoo mechanism in the reconciliation process.

As Odoo defined invoice_payment_ref on account.move in v13.0, avoiding extra
fields in v12.0 is already a step in the right direction.
2023-02-20 11:21:06 +07:00

20 lines
542 B
Python

# Copyright 2019 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
{
"name": "Base transaction ID for financial institutes",
"version": "12.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",
}