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.
30 lines
1.0 KiB
Python
30 lines
1.0 KiB
Python
# Copyright 2019-2020 Brainbean Apps (https://brainbeanapps.com)
|
|
# Copyright 2020 CorporateHub (https://corporatehub.eu)
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
{
|
|
"name": "Online Bank Statements",
|
|
"version": "14.0.3.0.0",
|
|
"author": "CorporateHub, Odoo Community Association (OCA)",
|
|
"maintainers": ["alexey-pelykh"],
|
|
"website": "https://github.com/OCA/bank-statement-import",
|
|
"license": "AGPL-3",
|
|
"category": "Accounting",
|
|
"summary": "Online bank statements update",
|
|
"external_dependencies": {"python": ["odoo_test_helper"]},
|
|
"depends": [
|
|
"account_statement_import_base",
|
|
"web_widget_dropdown_dynamic",
|
|
],
|
|
"data": [
|
|
"data/account_statement_import_online.xml",
|
|
"security/ir.model.access.csv",
|
|
"security/online_bank_statement_provider.xml",
|
|
"wizards/online_bank_statement_pull_wizard.xml",
|
|
"views/actions.xml",
|
|
"views/account_journal.xml",
|
|
"views/online_bank_statement_provider.xml",
|
|
],
|
|
"installable": True,
|
|
}
|