From 6dbbd45aaefbdbff45f16884eca1102cb7ac5fa5 Mon Sep 17 00:00:00 2001 From: Aitor Bouzas Date: Tue, 3 Apr 2018 16:41:48 +0200 Subject: [PATCH] [MIG] account_invoice_currency: Migration to 11.0 --- account_invoice_currency/README.rst | 1 + account_invoice_currency/__init__.py | 1 - account_invoice_currency/__manifest__.py | 4 ++-- account_invoice_currency/models/__init__.py | 1 - account_invoice_currency/models/account_invoice.py | 1 - account_invoice_currency/tests/__init__.py | 1 - .../tests/test_account_invoice_currency.py | 1 - 7 files changed, 3 insertions(+), 7 deletions(-) diff --git a/account_invoice_currency/README.rst b/account_invoice_currency/README.rst index 6c6e9efca..ea0257ee8 100644 --- a/account_invoice_currency/README.rst +++ b/account_invoice_currency/README.rst @@ -58,6 +58,7 @@ Contributors * Pedro M. Baeza * Antonio Espinosa * Sébastien Namèche +* Aitor Bouzas Maintainer ---------- diff --git a/account_invoice_currency/__init__.py b/account_invoice_currency/__init__.py index 794fe5bc2..388ebaee2 100644 --- a/account_invoice_currency/__init__.py +++ b/account_invoice_currency/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2004-2011 Pexego Sistemas Informáticos. (http://pexego.es) # © 2004-2011 Zikzakmedia S.L. (http://zikzakmedia.com) # Jordi Esteve diff --git a/account_invoice_currency/__manifest__.py b/account_invoice_currency/__manifest__.py index 0933eaa94..ff650d1e2 100644 --- a/account_invoice_currency/__manifest__.py +++ b/account_invoice_currency/__manifest__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2004-2011 Pexego Sistemas Informáticos. (http://pexego.es) # © 2004-2011 Zikzakmedia S.L. (http://zikzakmedia.com) # Jordi Esteve @@ -8,10 +7,11 @@ { 'name': "Company currency in invoices", - 'version': "10.0.1.1.0", + 'version': "11.0.1.0.0", 'author': "Zikzakmedia SL, " "Joaquín Gutierrez, " "Tecnativa, " + "Softdil S.L, " "Odoo Community Association (OCA) ", 'website': "https://odoo-community.org/", 'category': "Accounting", diff --git a/account_invoice_currency/models/__init__.py b/account_invoice_currency/models/__init__.py index 99f5a6541..bb3d1299c 100644 --- a/account_invoice_currency/models/__init__.py +++ b/account_invoice_currency/models/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). from . import account_invoice diff --git a/account_invoice_currency/models/account_invoice.py b/account_invoice_currency/models/account_invoice.py index cff4dfdaa..ec6df42ed 100644 --- a/account_invoice_currency/models/account_invoice.py +++ b/account_invoice_currency/models/account_invoice.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # © 2004-2011 Pexego Sistemas Informáticos. (http://pexego.es) # © 2004-2011 Zikzakmedia S.L. (http://zikzakmedia.com) # Jordi Esteve diff --git a/account_invoice_currency/tests/__init__.py b/account_invoice_currency/tests/__init__.py index d2a0dfcc5..d900c47c8 100644 --- a/account_invoice_currency/tests/__init__.py +++ b/account_invoice_currency/tests/__init__.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). from . import test_account_invoice_currency diff --git a/account_invoice_currency/tests/test_account_invoice_currency.py b/account_invoice_currency/tests/test_account_invoice_currency.py index 750a78c33..c6f0c1b54 100644 --- a/account_invoice_currency/tests/test_account_invoice_currency.py +++ b/account_invoice_currency/tests/test_account_invoice_currency.py @@ -1,4 +1,3 @@ -# -*- coding: utf-8 -*- # Copyright 2016 Antonio Espinosa # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).