From fab2d0429cbac7a655142f2e6b990f43038c79d1 Mon Sep 17 00:00:00 2001 From: AaronHForgeFlow Date: Fri, 22 Apr 2022 10:57:22 +0200 Subject: [PATCH] [FIX] rma_repair: re-license to AGPL due to rma_repair_refurbish --- rma_repair/README.rst | 4 ++-- rma_repair/__init__.py | 2 +- rma_repair/__manifest__.py | 4 ++-- rma_repair/models/__init__.py | 2 +- rma_repair/models/repair.py | 2 +- rma_repair/models/rma_operation.py | 2 +- rma_repair/models/rma_order.py | 2 +- rma_repair/models/rma_order_line.py | 2 +- rma_repair/tests/__init__.py | 2 +- rma_repair/tests/test_rma_repair.py | 2 +- rma_repair/wizards/__init__.py | 2 +- rma_repair/wizards/rma_order_line_make_repair.py | 2 +- 12 files changed, 14 insertions(+), 14 deletions(-) diff --git a/rma_repair/README.rst b/rma_repair/README.rst index e19e5f22..2076ecb7 100644 --- a/rma_repair/README.rst +++ b/rma_repair/README.rst @@ -1,5 +1,5 @@ -.. image:: https://img.shields.io/badge/licence-LGPL--3-blue.svg - :alt: License LGPL-3 +.. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg + :alt: License AGPL-3 ========== RMA Repair diff --git a/rma_repair/__init__.py b/rma_repair/__init__.py index 8051eeb4..35d24ece 100644 --- a/rma_repair/__init__.py +++ b/rma_repair/__init__.py @@ -1,5 +1,5 @@ # Copyright 2020 ForgeFlow S.L. -# License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import models from . import wizards diff --git a/rma_repair/__manifest__.py b/rma_repair/__manifest__.py index 9a551f11..f90302da 100644 --- a/rma_repair/__manifest__.py +++ b/rma_repair/__manifest__.py @@ -1,9 +1,9 @@ # Copyright 2020 ForgeFlow S.L. -# License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). { "name": "RMA Repair", "version": "14.0.1.0.0", - "license": "LGPL-3", + "license": "AGPL-3", "category": "RMA", "summary": "Links RMA with Repairs.", "author": "ForgeFlow S.L., Odoo Community Association (OCA)", diff --git a/rma_repair/models/__init__.py b/rma_repair/models/__init__.py index 71df692a..ca262417 100644 --- a/rma_repair/models/__init__.py +++ b/rma_repair/models/__init__.py @@ -1,4 +1,4 @@ -# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html) from . import repair from . import rma_order_line diff --git a/rma_repair/models/repair.py b/rma_repair/models/repair.py index 90da8bc4..f48b1d93 100644 --- a/rma_repair/models/repair.py +++ b/rma_repair/models/repair.py @@ -1,5 +1,5 @@ # Copyright 2020-21 ForgeFlow S.L. -# License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import fields, models diff --git a/rma_repair/models/rma_operation.py b/rma_repair/models/rma_operation.py index c2ee3dd1..8b6e8a2a 100644 --- a/rma_repair/models/rma_operation.py +++ b/rma_repair/models/rma_operation.py @@ -1,5 +1,5 @@ # Copyright 2020 ForgeFlow S.L. -# License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import fields, models diff --git a/rma_repair/models/rma_order.py b/rma_repair/models/rma_order.py index 08440e88..b3091f0c 100644 --- a/rma_repair/models/rma_order.py +++ b/rma_repair/models/rma_order.py @@ -1,5 +1,5 @@ # Copyright 2020 ForgeFlow S.L. -# License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import fields, models diff --git a/rma_repair/models/rma_order_line.py b/rma_repair/models/rma_order_line.py index 0b911b92..c7255c99 100644 --- a/rma_repair/models/rma_order_line.py +++ b/rma_repair/models/rma_order_line.py @@ -1,5 +1,5 @@ # Copyright 2020-21 ForgeFlow S.L. -# License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import api, fields, models diff --git a/rma_repair/tests/__init__.py b/rma_repair/tests/__init__.py index f962eaf8..932c8363 100644 --- a/rma_repair/tests/__init__.py +++ b/rma_repair/tests/__init__.py @@ -1,2 +1,2 @@ -# License LGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/lgpl.html) from . import test_rma_repair diff --git a/rma_repair/tests/test_rma_repair.py b/rma_repair/tests/test_rma_repair.py index 3dde84b4..8fd91273 100644 --- a/rma_repair/tests/test_rma_repair.py +++ b/rma_repair/tests/test_rma_repair.py @@ -1,5 +1,5 @@ # Copyright 2020-21 ForgeFlow S.L. -# License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import fields from odoo.tests import common diff --git a/rma_repair/wizards/__init__.py b/rma_repair/wizards/__init__.py index 9a165090..cad4c62a 100644 --- a/rma_repair/wizards/__init__.py +++ b/rma_repair/wizards/__init__.py @@ -1,4 +1,4 @@ # Copyright 2020 ForgeFlow S.L. -# License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from . import rma_order_line_make_repair diff --git a/rma_repair/wizards/rma_order_line_make_repair.py b/rma_repair/wizards/rma_order_line_make_repair.py index 29d7d2f4..2473d032 100644 --- a/rma_repair/wizards/rma_order_line_make_repair.py +++ b/rma_repair/wizards/rma_order_line_make_repair.py @@ -1,5 +1,5 @@ # Copyright 2020 ForgeFlow S.L. -# License LGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). from odoo import _, api, fields, models from odoo.exceptions import ValidationError