[MIG] account_statement_import_file_reconciliation_widget: Migration to 15.0

This commit is contained in:
Miquel Raïch
2023-02-22 16:49:27 +01:00
parent 22cb5ac7de
commit b649ba9b5c
6 changed files with 11 additions and 4 deletions

View File

@@ -5,7 +5,7 @@
{
"name": "Import Statement Files and Go Direct to Reconciliation",
"category": "Accounting",
"version": "14.0.1.0.0",
"version": "15.0.1.0.0",
"license": "AGPL-3",
"depends": ["account_statement_import", "account_reconciliation_widget"],
"author": "Akretion, Odoo Community Association (OCA)",

View File

@@ -4,7 +4,7 @@
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"

View File

@@ -10,7 +10,7 @@ class AccountStatementImport(models.TransientModel):
def import_file_and_reconcile_button(self):
"""Process the file chosen in the wizard, create bank statement(s)
and jump directly to the reconcilition widget"""
and jump directly to the reconciliation widget"""
result = self._import_file()
statements = self.env["account.bank.statement"].browse(result["statement_ids"])
statements.button_post()

View File

@@ -1,4 +1,4 @@
<?xml version="1.0" ?>
<?xml version="1.0" encoding="utf-8" ?>
<!--
Copyright 2022 Akretion France (http://www.akretion.com/)
@author: Alexis de Lattre <alexis.delattre@akretion.com>

View File

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

View File

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