diff --git a/base_report_auto_create_qweb/README.rst b/base_report_auto_create_qweb/README.rst index b9c0860b1..d4a5b2d7e 100644 --- a/base_report_auto_create_qweb/README.rst +++ b/base_report_auto_create_qweb/README.rst @@ -50,6 +50,7 @@ Contributors * Pedro M. Baeza * Ana Juaristi * Alex Comba +* Akim Juillerat Maintainer ---------- diff --git a/base_report_auto_create_qweb/__manifest__.py b/base_report_auto_create_qweb/__manifest__.py index 1af30e906..60e542ff0 100644 --- a/base_report_auto_create_qweb/__manifest__.py +++ b/base_report_auto_create_qweb/__manifest__.py @@ -1,11 +1,11 @@ # -*- coding: utf-8 -*- # Authors: See README.RST for Contributors -# Copyright 2015-2016 See __openerp__.py for Authors +# Copyright 2015-2017 # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). { "name": "Report qweb auto generation", - "version": "9.0.1.0.0", + "version": "10.0.1.0.0", "depends": [ "report", ], @@ -19,15 +19,10 @@ "Odoo Community Association (OCA), ", "website": "https://github.com/OCA/server-tools", "license": "AGPL-3", - "contributors": [ - "Oihane Crucelaegui ", - "Pedro M. Baeza ", - "Ana Juaristi ", - ], "category": "Tools", "data": [ "wizard/report_duplicate_view.xml", "views/report_xml_view.xml", ], - 'installable': False, + 'installable': True, } diff --git a/base_report_auto_create_qweb/models/report_xml.py b/base_report_auto_create_qweb/models/report_xml.py index 326abfa58..b28c57a38 100644 --- a/base_report_auto_create_qweb/models/report_xml.py +++ b/base_report_auto_create_qweb/models/report_xml.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- # Authors: See README.RST for Contributors -# Copyright 2015-2016 See __openerp__.py for Authors +# Copyright 2015-2017 # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import models, api, exceptions, _ +from odoo import models, api, exceptions, _ import logging _logger = logging.getLogger(__name__) diff --git a/base_report_auto_create_qweb/tests/test_base_report_auto_create_qweb.py b/base_report_auto_create_qweb/tests/test_base_report_auto_create_qweb.py index 84e247f7f..ec42b03a0 100644 --- a/base_report_auto_create_qweb/tests/test_base_report_auto_create_qweb.py +++ b/base_report_auto_create_qweb/tests/test_base_report_auto_create_qweb.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- -# (c) 2015 Oihane Crucelaegui - AvanzOSC +# Copyright 2015-2017 # License AGPL-3 - See http://www.gnu.org/licenses/agpl-3.0.html import openerp.tests.common as common -from openerp import exceptions +from odoo import exceptions class TestBaseReportAutoQwebCreate(common.TransactionCase): diff --git a/base_report_auto_create_qweb/wizard/report_duplicate.py b/base_report_auto_create_qweb/wizard/report_duplicate.py index 06b59873a..783801c26 100644 --- a/base_report_auto_create_qweb/wizard/report_duplicate.py +++ b/base_report_auto_create_qweb/wizard/report_duplicate.py @@ -1,9 +1,9 @@ # -*- coding: utf-8 -*- # Authors: See README.RST for Contributors -# Copyright 2015-2016 See __openerp__.py for Authors +# Copyright 2015-2017 # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). -from openerp import api, fields, models +from odoo import api, fields, models class IrActionsReportDuplicate(models.TransientModel):