From df6f13b7d02652364d9bcbc4787b5eac9b0846ea Mon Sep 17 00:00:00 2001 From: Lois Rilo Date: Wed, 15 Jan 2020 11:41:31 +0100 Subject: [PATCH] [13.0] mrp_bom_location: copyrights update * eficent rebranded to forgeflow * license changed to lgpl --- mrp_bom_location/README.rst | 10 +++++----- mrp_bom_location/__init__.py | 3 --- mrp_bom_location/__manifest__.py | 8 ++++---- mrp_bom_location/models/__init__.py | 3 --- mrp_bom_location/models/mrp_bom.py | 4 ++-- mrp_bom_location/readme/CONTRIBUTORS.rst | 2 +- mrp_bom_location/report/__init__.py | 3 --- mrp_bom_location/report/bom_structure.py | 5 ++--- mrp_bom_location/static/description/index.html | 8 ++++---- mrp_bom_location/views/mrp_view.xml | 6 ++++-- 10 files changed, 22 insertions(+), 30 deletions(-) diff --git a/mrp_bom_location/README.rst b/mrp_bom_location/README.rst index 70db2a32c..2249d0d65 100644 --- a/mrp_bom_location/README.rst +++ b/mrp_bom_location/README.rst @@ -10,9 +10,9 @@ MRP BOM Location .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png :target: https://odoo-community.org/page/development-status :alt: Beta -.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png - :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html - :alt: License: AGPL-3 +.. |badge2| image:: https://img.shields.io/badge/licence-LGPL--3-blue.png + :target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html + :alt: License: LGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fmanufacture-lightgray.png?logo=github :target: https://github.com/OCA/manufacture/tree/13.0/mrp_bom_location :alt: OCA/manufacture @@ -60,12 +60,12 @@ Credits Authors ~~~~~~~ -* Eficent +* ForgeFlow Contributors ~~~~~~~~~~~~ -* Lois Rilo +* Lois Rilo * Mykhailo Panarin * Saran Limpajitkutaporn * Sudhir Arya diff --git a/mrp_bom_location/__init__.py b/mrp_bom_location/__init__.py index 347b23ce7..bf588bc8b 100644 --- a/mrp_bom_location/__init__.py +++ b/mrp_bom_location/__init__.py @@ -1,5 +1,2 @@ -# Copyright 2017 Eficent Business and IT Consulting Services S.L. -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - from . import models from . import report diff --git a/mrp_bom_location/__manifest__.py b/mrp_bom_location/__manifest__.py index 5c09a04ca..194004c34 100644 --- a/mrp_bom_location/__manifest__.py +++ b/mrp_bom_location/__manifest__.py @@ -1,13 +1,13 @@ -# Copyright 2017 Eficent Business and IT Consulting Services S.L. -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# Copyright 2017-20 ForgeFlow S.L. (https://www.forgeflow.com) +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). { "name": "MRP BOM Location", "summary": "Adds location field to Bill of Materials and its components.", "version": "13.0.1.0.1", "category": "Manufacture", "website": "https://github.com/OCA/manufacture", - "author": "Eficent, Odoo Community Association (OCA)", - "license": "AGPL-3", + "author": "ForgeFlow, Odoo Community Association (OCA)", + "license": "LGPL-3", "application": False, "depends": ["mrp"], "data": ["views/mrp_view.xml", "views/report_mrpbomstructure.xml"], diff --git a/mrp_bom_location/models/__init__.py b/mrp_bom_location/models/__init__.py index a06bc71a4..a352efe9b 100644 --- a/mrp_bom_location/models/__init__.py +++ b/mrp_bom_location/models/__init__.py @@ -1,4 +1 @@ -# Copyright 2017 Eficent Business and IT Consulting Services S.L. -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - from . import mrp_bom diff --git a/mrp_bom_location/models/mrp_bom.py b/mrp_bom_location/models/mrp_bom.py index 20f653b50..941ae444f 100644 --- a/mrp_bom_location/models/mrp_bom.py +++ b/mrp_bom_location/models/mrp_bom.py @@ -1,5 +1,5 @@ -# Copyright 2017 Eficent Business and IT Consulting Services S.L. -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). +# Copyright 2017-20 ForgeFlow S.L. (https://www.forgeflow.com) +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). from odoo import api, fields, models diff --git a/mrp_bom_location/readme/CONTRIBUTORS.rst b/mrp_bom_location/readme/CONTRIBUTORS.rst index c4af6085b..d023289f4 100644 --- a/mrp_bom_location/readme/CONTRIBUTORS.rst +++ b/mrp_bom_location/readme/CONTRIBUTORS.rst @@ -1,4 +1,4 @@ -* Lois Rilo +* Lois Rilo * Mykhailo Panarin * Saran Limpajitkutaporn * Sudhir Arya diff --git a/mrp_bom_location/report/__init__.py b/mrp_bom_location/report/__init__.py index 9956baed8..df4f1117a 100644 --- a/mrp_bom_location/report/__init__.py +++ b/mrp_bom_location/report/__init__.py @@ -1,4 +1 @@ -# Copyright 2017 Eficent Business and IT Consulting Services S.L. -# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). - from . import bom_structure diff --git a/mrp_bom_location/report/bom_structure.py b/mrp_bom_location/report/bom_structure.py index 29893df4d..8b944f5d5 100644 --- a/mrp_bom_location/report/bom_structure.py +++ b/mrp_bom_location/report/bom_structure.py @@ -1,6 +1,5 @@ -# © 2017 Eficent Business and IT Consulting Services S.L. -# (http://www.eficent.com) -# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# Copyright 2017-20 ForgeFlow S.L. (https://www.forgeflow.com) +# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl). from odoo import api, models diff --git a/mrp_bom_location/static/description/index.html b/mrp_bom_location/static/description/index.html index 769a72c98..e15aeea91 100644 --- a/mrp_bom_location/static/description/index.html +++ b/mrp_bom_location/static/description/index.html @@ -3,7 +3,7 @@ - + MRP BOM Location