diff --git a/repair_assignee/README.rst b/repair_assignee/README.rst new file mode 100644 index 000000000..5a8a23486 --- /dev/null +++ b/repair_assignee/README.rst @@ -0,0 +1,63 @@ +=============== +Repair Assignee +=============== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:af1e45b0ee5ae03eec01fa57f67cc57a85ee735cd96d2f02b0ba4b113b801995 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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 +.. |badge3| image:: https://img.shields.io/badge/github-NuoBiT%2Fodoo--addons-lightgray.png?logo=github + :target: https://github.com/NuoBiT/odoo-addons/tree/14.0/repair_assignee + :alt: NuoBiT/odoo-addons + +|badge1| |badge2| |badge3| + +This module adds an assignee field in the repair order. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* NuoBiT Solutions +* S.L. + +Contributors +~~~~~~~~~~~~ + +* `Nuobit `_: + + * Frank Cespedes + +Maintainers +~~~~~~~~~~~ + +This module is part of the `NuoBiT/odoo-addons `_ project on GitHub. + +You are welcome to contribute. diff --git a/repair_assignee/__init__.py b/repair_assignee/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/repair_assignee/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/repair_assignee/__manifest__.py b/repair_assignee/__manifest__.py new file mode 100644 index 000000000..ddfcbe296 --- /dev/null +++ b/repair_assignee/__manifest__.py @@ -0,0 +1,17 @@ +# Copyright NuoBiT Solutions, S.L. () +# Eric Antones +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) + +{ + "name": "Repair Assignee", + "summary": "This module adds an assignee field in the repair order", + "version": "14.0.0.0.0", + "category": "Inventory", + "author": "NuoBiT Solutions, S.L.", + "website": "https://github.com/nuobit/odoo-addons", + "license": "AGPL-3", + "depends": ["repair"], + "data": [ + "views/repair_order_views.xml", + ], +} diff --git a/repair_assignee/i18n/es.po b/repair_assignee/i18n/es.po new file mode 100644 index 000000000..962acc5f8 --- /dev/null +++ b/repair_assignee/i18n/es.po @@ -0,0 +1,36 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * repair_assignee +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-06-05 12:59+0000\n" +"PO-Revision-Date: 2024-06-05 12:59+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: repair_assignee +#: model:ir.model.fields,field_description:repair_assignee.field_repair_order__user_assignee_id +msgid "Assigned To" +msgstr "Asignado a" + +#. module: repair_assignee +#: model:ir.model.fields,field_description:repair_assignee.field_repair_order__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: repair_assignee +#: model:ir.model.fields,field_description:repair_assignee.field_repair_order____last_update +msgid "Last Modified on" +msgstr "Última modificación el" + +#. module: repair_assignee +#: model:ir.model,name:repair_assignee.model_repair_order +msgid "Repair Order" +msgstr "Orden de reparación" diff --git a/repair_assignee/models/__init__.py b/repair_assignee/models/__init__.py new file mode 100644 index 000000000..2251f67dd --- /dev/null +++ b/repair_assignee/models/__init__.py @@ -0,0 +1 @@ +from . import repair_order diff --git a/repair_assignee/models/repair_order.py b/repair_assignee/models/repair_order.py new file mode 100644 index 000000000..55cd523b6 --- /dev/null +++ b/repair_assignee/models/repair_order.py @@ -0,0 +1,15 @@ +# Copyright NuoBiT Solutions - Frank Cespedes +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) + +from odoo import fields, models + + +class Repair(models.Model): + _inherit = "repair.order" + + user_assignee_id = fields.Many2one( + string="Assigned To", + comodel_name="res.users", + ondelete="restrict", + domain="['|',('company_id', '=', False), ('company_id', '=', company_id)]", + ) diff --git a/repair_assignee/readme/CONTRIBUTORS.rst b/repair_assignee/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..774df7562 --- /dev/null +++ b/repair_assignee/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `Nuobit `_: + + * Frank Cespedes diff --git a/repair_assignee/readme/DESCRIPTION.rst b/repair_assignee/readme/DESCRIPTION.rst new file mode 100644 index 000000000..8f9a8e58d --- /dev/null +++ b/repair_assignee/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module adds an assignee field in the repair order. diff --git a/repair_assignee/static/description/icon.png b/repair_assignee/static/description/icon.png new file mode 100644 index 000000000..1cd641e79 Binary files /dev/null and b/repair_assignee/static/description/icon.png differ diff --git a/repair_assignee/static/description/index.html b/repair_assignee/static/description/index.html new file mode 100644 index 000000000..bc0d8e53f --- /dev/null +++ b/repair_assignee/static/description/index.html @@ -0,0 +1,420 @@ + + + + + + +Repair Assignee + + + +
+

Repair Assignee

+ + +

Beta License: AGPL-3 NuoBiT/odoo-addons

+

This module adds an assignee field in the repair order.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • NuoBiT Solutions
  • +
  • S.L.
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is part of the NuoBiT/odoo-addons project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/repair_assignee/views/repair_order_views.xml b/repair_assignee/views/repair_order_views.xml new file mode 100644 index 000000000..482e09c8f --- /dev/null +++ b/repair_assignee/views/repair_order_views.xml @@ -0,0 +1,14 @@ + + + + + repair.order + + + + + + + + diff --git a/rma_assignee/README.rst b/rma_assignee/README.rst new file mode 100644 index 000000000..4186f4252 --- /dev/null +++ b/rma_assignee/README.rst @@ -0,0 +1,63 @@ +============ +RMA Assignee +============ + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:04e6c2e3b57fa7808a9f09af64651ecfeb20d0ab279b2c5549c4e529c3038961 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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 +.. |badge3| image:: https://img.shields.io/badge/github-NuoBiT%2Fodoo--addons-lightgray.png?logo=github + :target: https://github.com/NuoBiT/odoo-addons/tree/14.0/rma_assignee + :alt: NuoBiT/odoo-addons + +|badge1| |badge2| |badge3| + +This module adds an assignee field to the RMA model. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* NuoBiT Solutions +* S.L. + +Contributors +~~~~~~~~~~~~ + +* `Nuobit `_: + + * Frank Cespedes + +Maintainers +~~~~~~~~~~~ + +This module is part of the `NuoBiT/odoo-addons `_ project on GitHub. + +You are welcome to contribute. diff --git a/rma_assignee/__init__.py b/rma_assignee/__init__.py new file mode 100644 index 000000000..0650744f6 --- /dev/null +++ b/rma_assignee/__init__.py @@ -0,0 +1 @@ +from . import models diff --git a/rma_assignee/__manifest__.py b/rma_assignee/__manifest__.py new file mode 100644 index 000000000..eae5d1d76 --- /dev/null +++ b/rma_assignee/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright NuoBiT - Frank Cespedes +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) + +{ + "name": "RMA Assignee", + "summary": "This module adds an assignee field to the RMA model.", + "version": "14.0.0.0.0", + "category": "RMA", + "author": "NuoBiT Solutions, S.L.", + "website": "https://github.com/nuobit/odoo-addons", + "license": "AGPL-3", + "depends": ["rma"], + "data": [ + "views/rma_views.xml", + ], +} diff --git a/rma_assignee/i18n/es.po b/rma_assignee/i18n/es.po new file mode 100644 index 000000000..59dcf1b50 --- /dev/null +++ b/rma_assignee/i18n/es.po @@ -0,0 +1,31 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * rma_assignee +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 14.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2024-06-05 13:01+0000\n" +"PO-Revision-Date: 2024-06-05 13:01+0000\n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: rma_assignee +#: model:ir.model.fields,field_description:rma_assignee.field_rma__user_assignee_id +msgid "Assigned To" +msgstr "Asignado a" + +#. module: rma_assignee +#: model:ir.model.fields,field_description:rma_assignee.field_rma__display_name +msgid "Display Name" +msgstr "Nombre mostrado" + +#. module: rma_assignee +#: model:ir.model.fields,field_description:rma_assignee.field_rma____last_update +msgid "Last Modified on" +msgstr "Última modificación el" diff --git a/rma_assignee/models/__init__.py b/rma_assignee/models/__init__.py new file mode 100644 index 000000000..0031f431f --- /dev/null +++ b/rma_assignee/models/__init__.py @@ -0,0 +1 @@ +from . import rma diff --git a/rma_assignee/models/rma.py b/rma_assignee/models/rma.py new file mode 100644 index 000000000..ed3ed12e8 --- /dev/null +++ b/rma_assignee/models/rma.py @@ -0,0 +1,15 @@ +# Copyright NuoBiT - Frank Cespedes +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) + +from odoo import fields, models + + +class Rma(models.Model): + _inherit = "rma" + + user_assignee_id = fields.Many2one( + string="Assigned To", + comodel_name="res.users", + ondelete="restrict", + domain="['|',('company_id', '=', False), ('company_id', '=', company_id)]", + ) diff --git a/rma_assignee/readme/CONTRIBUTORS.rst b/rma_assignee/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..774df7562 --- /dev/null +++ b/rma_assignee/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `Nuobit `_: + + * Frank Cespedes diff --git a/rma_assignee/readme/DESCRIPTION.rst b/rma_assignee/readme/DESCRIPTION.rst new file mode 100644 index 000000000..f62496418 --- /dev/null +++ b/rma_assignee/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module adds an assignee field to the RMA model. diff --git a/rma_assignee/static/description/icon.png b/rma_assignee/static/description/icon.png new file mode 100644 index 000000000..1cd641e79 Binary files /dev/null and b/rma_assignee/static/description/icon.png differ diff --git a/rma_assignee/static/description/index.html b/rma_assignee/static/description/index.html new file mode 100644 index 000000000..604d0239c --- /dev/null +++ b/rma_assignee/static/description/index.html @@ -0,0 +1,420 @@ + + + + + + +RMA Assignee + + + +
+

RMA Assignee

+ + +

Beta License: AGPL-3 NuoBiT/odoo-addons

+

This module adds an assignee field to the RMA model.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • NuoBiT Solutions
  • +
  • S.L.
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is part of the NuoBiT/odoo-addons project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/rma_assignee/views/rma_views.xml b/rma_assignee/views/rma_views.xml new file mode 100644 index 000000000..e6789e2bf --- /dev/null +++ b/rma_assignee/views/rma_views.xml @@ -0,0 +1,14 @@ + + + + + rma + + + + + + + + diff --git a/rma_repair_assignee/README.rst b/rma_repair_assignee/README.rst new file mode 100644 index 000000000..b083b7c5c --- /dev/null +++ b/rma_repair_assignee/README.rst @@ -0,0 +1,63 @@ +=================== +RMA Repair Assignee +=================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:b4189d0edc54a373a0f6a7986efe5e1eb228d02cb4a3e7f70bcd723dff2b7a00 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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 +.. |badge3| image:: https://img.shields.io/badge/github-NuoBiT%2Fodoo--addons-lightgray.png?logo=github + :target: https://github.com/NuoBiT/odoo-addons/tree/14.0/rma_repair_assignee + :alt: NuoBiT/odoo-addons + +|badge1| |badge2| |badge3| + +Glue module between RMA Assignee, RMA Repair and Repair Assignee. + +**Table of contents** + +.. contents:: + :local: + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* NuoBiT Solutions +* S.L. + +Contributors +~~~~~~~~~~~~ + +* `Nuobit `_: + + * Frank Cespedes + +Maintainers +~~~~~~~~~~~ + +This module is part of the `NuoBiT/odoo-addons `_ project on GitHub. + +You are welcome to contribute. diff --git a/rma_repair_assignee/__init__.py b/rma_repair_assignee/__init__.py new file mode 100644 index 000000000..5cb1c4914 --- /dev/null +++ b/rma_repair_assignee/__init__.py @@ -0,0 +1 @@ +from . import wizards diff --git a/rma_repair_assignee/__manifest__.py b/rma_repair_assignee/__manifest__.py new file mode 100644 index 000000000..a4ba61f2f --- /dev/null +++ b/rma_repair_assignee/__manifest__.py @@ -0,0 +1,14 @@ +# Copyright NuoBiT - Frank Cespedes +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) + +{ + "name": "RMA Repair Assignee", + "summary": "Glue module between RMA Assignee, RMA Repair and Repair Assignee", + "version": "14.0.0.0.0", + "category": "RMA/Inventory", + "author": "NuoBiT Solutions, S.L.", + "website": "https://github.com/nuobit/odoo-addons", + "license": "AGPL-3", + "depends": ["rma_assignee", "rma_repair", "repair_assignee"], + "auto_install": True, +} diff --git a/rma_repair_assignee/readme/CONTRIBUTORS.rst b/rma_repair_assignee/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..774df7562 --- /dev/null +++ b/rma_repair_assignee/readme/CONTRIBUTORS.rst @@ -0,0 +1,3 @@ +* `Nuobit `_: + + * Frank Cespedes diff --git a/rma_repair_assignee/readme/DESCRIPTION.rst b/rma_repair_assignee/readme/DESCRIPTION.rst new file mode 100644 index 000000000..38f030eec --- /dev/null +++ b/rma_repair_assignee/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +Glue module between RMA Assignee, RMA Repair and Repair Assignee. diff --git a/rma_repair_assignee/static/description/icon.png b/rma_repair_assignee/static/description/icon.png new file mode 100644 index 000000000..1cd641e79 Binary files /dev/null and b/rma_repair_assignee/static/description/icon.png differ diff --git a/rma_repair_assignee/static/description/index.html b/rma_repair_assignee/static/description/index.html new file mode 100644 index 000000000..f8ebfbde8 --- /dev/null +++ b/rma_repair_assignee/static/description/index.html @@ -0,0 +1,420 @@ + + + + + + +RMA Repair Assignee + + + +
+

RMA Repair Assignee

+ + +

Beta License: AGPL-3 NuoBiT/odoo-addons

+

Glue module between RMA Assignee, RMA Repair and Repair Assignee.

+

Table of contents

+ +
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us to smash it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • NuoBiT Solutions
  • +
  • S.L.
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is part of the NuoBiT/odoo-addons project on GitHub.

+

You are welcome to contribute.

+
+
+
+ + diff --git a/rma_repair_assignee/wizards/__init__.py b/rma_repair_assignee/wizards/__init__.py new file mode 100644 index 000000000..ebf1d7e00 --- /dev/null +++ b/rma_repair_assignee/wizards/__init__.py @@ -0,0 +1 @@ +from . import rma_repair_wizard diff --git a/rma_repair_assignee/wizards/rma_repair_wizard.py b/rma_repair_assignee/wizards/rma_repair_wizard.py new file mode 100644 index 000000000..bcb9e8fed --- /dev/null +++ b/rma_repair_assignee/wizards/rma_repair_wizard.py @@ -0,0 +1,13 @@ +# Copyright NuoBiT - Frank Cespedes +# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl) + +from odoo import models + + +class RmaRepairWizard(models.TransientModel): + _inherit = "rma.repair.wizard" + + def _prepare_repair_order(self, line, lot_id=None): + vals = super()._prepare_repair_order(line, lot_id=lot_id) + vals["user_assignee_id"] = self.rma_id.user_assignee_id.id + return vals diff --git a/setup/repair_assignee/odoo/addons/repair_assignee b/setup/repair_assignee/odoo/addons/repair_assignee new file mode 120000 index 000000000..dcc0300eb --- /dev/null +++ b/setup/repair_assignee/odoo/addons/repair_assignee @@ -0,0 +1 @@ +../../../../repair_assignee \ No newline at end of file diff --git a/setup/repair_assignee/setup.py b/setup/repair_assignee/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/repair_assignee/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/rma_assignee/odoo/addons/rma_assignee b/setup/rma_assignee/odoo/addons/rma_assignee new file mode 120000 index 000000000..b0714467a --- /dev/null +++ b/setup/rma_assignee/odoo/addons/rma_assignee @@ -0,0 +1 @@ +../../../../rma_assignee \ No newline at end of file diff --git a/setup/rma_assignee/setup.py b/setup/rma_assignee/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/rma_assignee/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/setup/rma_repair_assignee/odoo/addons/rma_repair_assignee b/setup/rma_repair_assignee/odoo/addons/rma_repair_assignee new file mode 120000 index 000000000..d191e1f76 --- /dev/null +++ b/setup/rma_repair_assignee/odoo/addons/rma_repair_assignee @@ -0,0 +1 @@ +../../../../rma_repair_assignee \ No newline at end of file diff --git a/setup/rma_repair_assignee/setup.py b/setup/rma_repair_assignee/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/rma_repair_assignee/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +) diff --git a/test-requirements.txt b/test-requirements.txt index 301a2b08e..c5525cc7d 100644 --- a/test-requirements.txt +++ b/test-requirements.txt @@ -2,3 +2,4 @@ openupgradelib@git+https://github.com/OCA/openupgradelib.git@master pyveloedi@git+https://github.com/nuobit/pyveloedi3.git@master odoo14-addon-oxigen_stock_alternate_lot@git+https://github.com/oxigensalud/odoo-addons.git@14.0#subdirectory=setup/oxigen_stock_alternate_lot odoo14-addon-pricelist_massive_update@git+https://github.com/oxigensalud/odoo-community-addons.git@14.0#subdirectory=setup/pricelist_massive_update +odoo14-addon-rma_repair@git+https://github.com/nuobit/rma.git@14.0-rma_repair#subdirectory=setup/rma_repair