From 89a3a1813bafb83d7af2f5c68ca27bdfb973a1f3 Mon Sep 17 00:00:00 2001 From: Kumar Aberer Date: Mon, 12 Mar 2018 08:16:03 +0100 Subject: [PATCH] [MIG] product_harmonized_system: Migration to 11.0 --- product_harmonized_system/README.rst | 3 ++- product_harmonized_system/__manifest__.py | 7 +++++-- product_harmonized_system/models/hs_code.py | 2 +- 3 files changed, 8 insertions(+), 4 deletions(-) diff --git a/product_harmonized_system/README.rst b/product_harmonized_system/README.rst index 76168dd..521168d 100644 --- a/product_harmonized_system/README.rst +++ b/product_harmonized_system/README.rst @@ -31,7 +31,7 @@ Then you will be able to set the H.S. code on an product (under the *Information .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas :alt: Try me on Runbot - :target: https://runbot.odoo-community.org/runbot/227/10.0 + :target: https://runbot.odoo-community.org/runbot/227/11.0 Bug Tracker @@ -51,6 +51,7 @@ Contributors * Alexis de Lattre, Akretion * Luc De Meyer, Noviat +* Kumar Aberer, brain-tec AG Maintainer ---------- diff --git a/product_harmonized_system/__manifest__.py b/product_harmonized_system/__manifest__.py index 3935d33..8239ab6 100644 --- a/product_harmonized_system/__manifest__.py +++ b/product_harmonized_system/__manifest__.py @@ -1,17 +1,20 @@ # -*- coding: utf-8 -*- +# © 2018 brain-tec AG (http://www.braintec-group.com) # © 2011-2016 Akretion (http://www.akretion.com) # © 2009-2016 Noviat (http://www.noviat.com) +# @author Kumar Aberer # @author Alexis de Lattre # @author Luc de Meyer # License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). { 'name': 'Product Harmonized System Codes', - 'version': '10.0.1.0.0', + 'version': '11.0.1.0.0', 'category': 'Reporting', 'license': 'AGPL-3', 'summary': 'Base module for Product Import/Export reports', - 'author': 'Akretion, Noviat, Odoo Community Association (OCA)', + 'author': 'brain-tec AG, Akretion, Noviat, ' + 'Odoo Community Association (OCA)', 'depends': ['product'], 'conflicts': ['report_intrastat'], 'data': [ diff --git a/product_harmonized_system/models/hs_code.py b/product_harmonized_system/models/hs_code.py index 580c957..b24f964 100644 --- a/product_harmonized_system/models/hs_code.py +++ b/product_harmonized_system/models/hs_code.py @@ -60,7 +60,7 @@ class HSCode(models.Model): _sql_constraints = [ ('local_code_company_uniq', 'unique(local_code, company_id)', 'This code already exists for this company !'), - ] + ] @api.model def create(self, vals):