[MIG] account_statement_import_ofx: Migration to 15.0

This commit is contained in:
remi-filament
2022-11-09 10:22:40 +01:00
parent ed071e757f
commit 437368e90f
5 changed files with 10 additions and 2 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "Import OFX Bank Statement",
"category": "Banking addons",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"license": "AGPL-3",
"author": "Odoo SA,"
"Akretion,"

View File

@@ -84,5 +84,5 @@ class AccountStatementImport(models.TransientModel):
"The file might not be valid.\n\n %s"
)
% str(e)
)
) from e
return result

View File

@@ -1,3 +1,4 @@
# generated from manifests external_dependencies
chardet
ofxparse
xlrd

View File

@@ -0,0 +1 @@
../../../../account_statement_import_ofx

View File

@@ -0,0 +1,6 @@
import setuptools
setuptools.setup(
setup_requires=['setuptools-odoo'],
odoo_addon=True,
)