mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
The 2 modules account_statement_import_online and account_statement_import depend on account_statement_import_base (and not on each other) and share common code, in particular a hook to update the statement line. So we can now have reconciliation modules that use this hook and therefore work both on file import and online import. More details on https://github.com/OCA/bank-statement-import/issues/481. Improve bank statement line form view and journal form view.
26 lines
829 B
Python
26 lines
829 B
Python
# Copyright 2004-2020 Odoo S.A.
|
|
# Copyright 2020 Akretion France (http://www.akretion.com/)
|
|
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# Licence LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl-3.0).
|
|
|
|
{
|
|
"name": "Import Statement Files",
|
|
"category": "Accounting",
|
|
"version": "14.0.2.1.0",
|
|
"license": "LGPL-3",
|
|
"depends": ["account_statement_import_base"],
|
|
"author": "Odoo SA, Akretion, Odoo Community Association (OCA)",
|
|
"maintainers": ["alexis-via"],
|
|
"development_status": "Mature",
|
|
"website": "https://github.com/OCA/bank-statement-import",
|
|
"data": [
|
|
"security/ir.model.access.csv",
|
|
"wizard/account_statement_import_view.xml",
|
|
"views/account_journal.xml",
|
|
],
|
|
"demo": [
|
|
"demo/partner_bank.xml",
|
|
],
|
|
"installable": True,
|
|
}
|