mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
[MIG] account_statement_import_ofx to v16
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "Import OFX Bank Statement",
|
"name": "Import OFX Bank Statement",
|
||||||
"category": "Banking addons",
|
"category": "Banking addons",
|
||||||
"version": "14.0.1.0.0",
|
"version": "16.0.1.0.0",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"author": "Odoo SA,"
|
"author": "Odoo SA,"
|
||||||
"Akretion,"
|
"Akretion,"
|
||||||
@@ -10,8 +10,10 @@
|
|||||||
"Nicolas JEUDY,"
|
"Nicolas JEUDY,"
|
||||||
"Le Filament,"
|
"Le Filament,"
|
||||||
"Odoo Community Association (OCA)",
|
"Odoo Community Association (OCA)",
|
||||||
|
"maintainers": ["alexis-via"],
|
||||||
|
"development_status": "Mature",
|
||||||
"website": "https://github.com/OCA/bank-statement-import",
|
"website": "https://github.com/OCA/bank-statement-import",
|
||||||
"depends": ["account_statement_import"],
|
"depends": ["account_statement_import_file"],
|
||||||
"data": ["views/account_statement_import.xml"],
|
"data": ["views/account_statement_import.xml"],
|
||||||
"external_dependencies": {"python": ["ofxparse"]},
|
"external_dependencies": {"python": ["ofxparse"]},
|
||||||
"installable": True,
|
"installable": True,
|
||||||
|
|||||||
@@ -4,7 +4,7 @@
|
|||||||
<field name="model">account.statement.import</field>
|
<field name="model">account.statement.import</field>
|
||||||
<field
|
<field
|
||||||
name="inherit_id"
|
name="inherit_id"
|
||||||
ref="account_statement_import.account_statement_import_form"
|
ref="account_statement_import_file.account_statement_import_form"
|
||||||
/>
|
/>
|
||||||
<field name="arch" type="xml">
|
<field name="arch" type="xml">
|
||||||
<xpath expr="//ul[@id='statement_format']" position="inside">
|
<xpath expr="//ul[@id='statement_format']" position="inside">
|
||||||
|
|||||||
@@ -84,5 +84,5 @@ class AccountStatementImport(models.TransientModel):
|
|||||||
"The file might not be valid.\n\n %s"
|
"The file might not be valid.\n\n %s"
|
||||||
)
|
)
|
||||||
% str(e)
|
% str(e)
|
||||||
)
|
) from e
|
||||||
return result
|
return result
|
||||||
|
|||||||
2
requirements.txt
Normal file
2
requirements.txt
Normal file
@@ -0,0 +1,2 @@
|
|||||||
|
# generated from manifests external_dependencies
|
||||||
|
ofxparse
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
../../../../account_statement_import_ofx
|
||||||
6
setup/account_statement_import_ofx/setup.py
Normal file
6
setup/account_statement_import_ofx/setup.py
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import setuptools
|
||||||
|
|
||||||
|
setuptools.setup(
|
||||||
|
setup_requires=['setuptools-odoo'],
|
||||||
|
odoo_addon=True,
|
||||||
|
)
|
||||||
Reference in New Issue
Block a user