[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", "name": "Import OFX Bank Statement",
"category": "Banking addons", "category": "Banking addons",
"version": "14.0.1.0.0", "version": "15.0.1.0.0",
"license": "AGPL-3", "license": "AGPL-3",
"author": "Odoo SA," "author": "Odoo SA,"
"Akretion," "Akretion,"

View File

@@ -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

View File

@@ -1,3 +1,4 @@
# generated from manifests external_dependencies # generated from manifests external_dependencies
chardet chardet
ofxparse
xlrd 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,
)