diff --git a/rma_procurement_customer/README.rst b/rma_procurement_customer/README.rst new file mode 100644 index 000000000..25d5618ab --- /dev/null +++ b/rma_procurement_customer/README.rst @@ -0,0 +1,82 @@ +======================== +Rma Procurement Customer +======================== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:7a072ca3cae8947855d0dcadef71464eb17859c0e059aff37d5738935d152538 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |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-OCA%2Frma-lightgray.png?logo=github + :target: https://github.com/OCA/rma/tree/16.0/rma_procurement_customer + :alt: OCA/rma +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/rma-16-0/rma-16-0-rma_procurement_customer + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/rma&target_branch=16.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module extends the ``stock_procurement_customer`` module to ensure +that the customer information is automatically propagated to any stock +pickings created as part of an RMA process. + +When this module is installed, all stock pickings generated from an RMA +— whether for product reception, delivery, or replacement — will inherit +the customer from the original delivery 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 +------- + +* ACSONE SA/NV + +Contributors +------------ + +- Souheil Bejaoui - ACSONE SA/NV souheil.bejaoui@acsone.eu + +Maintainers +----------- + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +This module is part of the `OCA/rma `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/rma_procurement_customer/__init__.py b/rma_procurement_customer/__init__.py new file mode 100644 index 000000000..aee8895e7 --- /dev/null +++ b/rma_procurement_customer/__init__.py @@ -0,0 +1,2 @@ +from . import models +from . import wizards diff --git a/rma_procurement_customer/__manifest__.py b/rma_procurement_customer/__manifest__.py new file mode 100644 index 000000000..24cfe48ea --- /dev/null +++ b/rma_procurement_customer/__manifest__.py @@ -0,0 +1,13 @@ +# Copyright 2024 ACSONE SA/NV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Rma Procurement Customer", + "version": "16.0.1.0.0", + "license": "AGPL-3", + "author": "ACSONE SA/NV,Odoo Community Association (OCA)", + "website": "https://github.com/OCA/rma", + "depends": ["stock_procurement_customer", "rma"], + "data": [], + "demo": [], +} diff --git a/rma_procurement_customer/models/__init__.py b/rma_procurement_customer/models/__init__.py new file mode 100644 index 000000000..0031f431f --- /dev/null +++ b/rma_procurement_customer/models/__init__.py @@ -0,0 +1 @@ +from . import rma diff --git a/rma_procurement_customer/models/rma.py b/rma_procurement_customer/models/rma.py new file mode 100644 index 000000000..45dee45b6 --- /dev/null +++ b/rma_procurement_customer/models/rma.py @@ -0,0 +1,15 @@ +# Copyright 2024 ACSONE SA/NV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import models + + +class Rma(models.Model): + + _inherit = "rma" + + def _prepare_procurement_group_vals(self): + res = super()._prepare_procurement_group_vals() + if self.move_id.picking_id.customer_id: + res["customer_id"] = self.move_id.picking_id.customer_id.id + return res diff --git a/rma_procurement_customer/readme/CONTRIBUTORS.md b/rma_procurement_customer/readme/CONTRIBUTORS.md new file mode 100644 index 000000000..18f298014 --- /dev/null +++ b/rma_procurement_customer/readme/CONTRIBUTORS.md @@ -0,0 +1 @@ +- Souheil Bejaoui - ACSONE SA/NV \ No newline at end of file diff --git a/rma_procurement_customer/readme/DESCRIPTION.md b/rma_procurement_customer/readme/DESCRIPTION.md new file mode 100644 index 000000000..5d4238706 --- /dev/null +++ b/rma_procurement_customer/readme/DESCRIPTION.md @@ -0,0 +1,7 @@ +This module extends the `stock_procurement_customer` module to ensure that the +customer information is automatically propagated to any stock pickings created +as part of an RMA process. + +When this module is installed, all stock pickings generated from an RMA — +whether for product reception, delivery, or replacement — will inherit +the customer from the original delivery order. diff --git a/rma_procurement_customer/static/description/icon.png b/rma_procurement_customer/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/rma_procurement_customer/static/description/icon.png differ diff --git a/rma_procurement_customer/static/description/index.html b/rma_procurement_customer/static/description/index.html new file mode 100644 index 000000000..c822c1bd3 --- /dev/null +++ b/rma_procurement_customer/static/description/index.html @@ -0,0 +1,425 @@ + + + + + +Rma Procurement Customer + + + +
+

Rma Procurement Customer

+ + +

Beta License: AGPL-3 OCA/rma Translate me on Weblate Try me on Runboat

+

This module extends the stock_procurement_customer module to ensure +that the customer information is automatically propagated to any stock +pickings created as part of an RMA process.

+

When this module is installed, all stock pickings generated from an RMA +— whether for product reception, delivery, or replacement — will inherit +the customer from the original delivery 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

+
    +
  • ACSONE SA/NV
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

This module is part of the OCA/rma project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/rma_procurement_customer/tests/__init__.py b/rma_procurement_customer/tests/__init__.py new file mode 100644 index 000000000..6839379dc --- /dev/null +++ b/rma_procurement_customer/tests/__init__.py @@ -0,0 +1 @@ +from . import test_rma_procurement_customer diff --git a/rma_procurement_customer/tests/test_rma_procurement_customer.py b/rma_procurement_customer/tests/test_rma_procurement_customer.py new file mode 100644 index 000000000..07c9eb957 --- /dev/null +++ b/rma_procurement_customer/tests/test_rma_procurement_customer.py @@ -0,0 +1,72 @@ +# Copyright 2024 ACSONE SA/NV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo.tests import Form + +from odoo.addons.rma.tests.test_rma import TestRma + + +class TestRmaProcurementCustomer(TestRma): + def _create_delivery(self): + picking_type = self.env["stock.picking.type"].search( + [ + ("code", "=", "outgoing"), + "|", + ("warehouse_id.company_id", "=", self.company.id), + ("warehouse_id", "=", False), + ], + limit=1, + ) + picking_form = Form( + recordp=self.env["stock.picking"].with_context( + default_picking_type_id=picking_type.id + ), + view="stock.view_picking_form", + ) + picking_form.partner_id = self.partner + with picking_form.move_ids_without_package.new() as move: + move.product_id = self.product + move.product_uom_qty = 10 + picking = picking_form.save() + picking.action_confirm() + for move in picking.move_ids: + move.quantity_done = move.product_uom_qty + picking.button_validate() + return picking + + def _return_picking_with_rma(self, picking): + stock_return_picking_form = Form( + self.env["stock.return.picking"].with_context( + active_ids=picking.ids, + active_id=picking.id, + active_model="stock.picking", + ) + ) + stock_return_picking_form.create_rma = True + stock_return_picking_form.rma_operation_id = self.operation + return_wizard = stock_return_picking_form.save() + return_wizard.create_returns() + origin_move = picking.move_ids + return origin_move.rma_ids + + def _create_replace_picking(self, rma): + res = rma.action_replace() + wizard_form = Form(self.env[res["res_model"]].with_context(**res["context"])) + wizard_form.product_id = self.product + wizard_form.product_uom_qty = rma.product_uom_qty + wizard = wizard_form.save() + wizard.action_deliver() + return rma.mapped("delivery_move_ids.picking_id") + + def test_0(self): + customer = self.partner.copy() + origin_delivery = self._create_delivery() + origin_delivery.customer_id = customer + rma = self._return_picking_with_rma(origin_delivery) + reception_move = rma.reception_move_id + reception = reception_move.picking_id + reception_move.quantity_done = reception_move.product_uom_qty + reception._action_done() + out_pickings = self._create_replace_picking(rma) + self.assertEqual(reception.customer_id, customer) + self.assertEqual(out_pickings.customer_id, customer) diff --git a/rma_procurement_customer/wizards/__init__.py b/rma_procurement_customer/wizards/__init__.py new file mode 100644 index 000000000..664e995f0 --- /dev/null +++ b/rma_procurement_customer/wizards/__init__.py @@ -0,0 +1 @@ +from . import stock_return_picking diff --git a/rma_procurement_customer/wizards/stock_return_picking.py b/rma_procurement_customer/wizards/stock_return_picking.py new file mode 100644 index 000000000..bcfa41bb0 --- /dev/null +++ b/rma_procurement_customer/wizards/stock_return_picking.py @@ -0,0 +1,18 @@ +# Copyright 2024 ACSONE SA/NV +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import models + + +class StockReturnPicking(models.TransientModel): + + _inherit = "stock.return.picking" + + def _prepare_rma_vals(self): + vals = super()._prepare_rma_vals() + if vals.get("procurement_group_id") and self.picking_id.customer_id: + procurement_group = self.env["procurement.group"].browse( + vals.get("procurement_group_id") + ) + procurement_group.customer_id = self.picking_id.customer_id + return vals diff --git a/setup/rma_procurement_customer/odoo/addons/rma_procurement_customer b/setup/rma_procurement_customer/odoo/addons/rma_procurement_customer new file mode 120000 index 000000000..372690368 --- /dev/null +++ b/setup/rma_procurement_customer/odoo/addons/rma_procurement_customer @@ -0,0 +1 @@ +../../../../rma_procurement_customer \ No newline at end of file diff --git a/setup/rma_procurement_customer/setup.py b/setup/rma_procurement_customer/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/rma_procurement_customer/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)