Files
bank-statement-import/account_statement_import_sftp/__manifest__.py
Simon Gonzalez c5fd49f957 [ADD] account_statement_import_sftp (#14)
* [ADD] account_statement_import_sftp

Add a mechanism to receive file from an sftp back end.

---------

Co-authored-by: ecino <ecino@users.noreply.github.com>
2023-06-29 12:52:42 +02:00

25 lines
748 B
Python

# Copyright 2019 ForgeFlow, S.L.
# Copyright 2020 CorporateHub (https://corporatehub.eu)
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
{
"name": "Bank Statement SFTP import",
"summary": "Import bank statement from an SFTP server",
"version": "14.0.1.0.0",
"category": "Accounting",
"website": "https://github.com/OCA/bank-statement-import",
"author": "Odoo Community Association (OCA), Compassion CH",
"maintainers": ["OCA"],
"license": "AGPL-3",
"installable": True,
"depends": [
"edi_storage_oca", # OCA/edi
"storage_backend_sftp", # OCA/storage
"account_statement_import",
"base_automation",
],
"data": [
"data/edi_data.xml",
],
}