Skip to content

Commit 38c8100

Browse files
committed
[IMP] rma: allow return different product
1 parent 60a33e0 commit 38c8100

7 files changed

+78
-24
lines changed

rma/models/rma.py

+21-10
Original file line numberDiff line numberDiff line change
@@ -329,6 +329,14 @@ def _domain_location_id(self):
329329
show_create_refund = fields.Boolean(
330330
string="Show Create refund Button", compute="_compute_show_refund_replace"
331331
)
332+
return_product_id = fields.Many2one(
333+
"product.product",
334+
help="Product to be returned if it's different from the originally delivered "
335+
"item.",
336+
)
337+
different_return_product = fields.Boolean(
338+
related="operation_id.different_return_product"
339+
)
332340

333341
@api.depends("operation_id.action_create_receipt", "state", "reception_move_id")
334342
def _compute_show_create_receipt(self):
@@ -606,14 +614,6 @@ def _compute_product_uom(self):
606614
else:
607615
record.product_uom = False
608616

609-
@api.depends("replace_product_id")
610-
def _compute_replace_product_uom(self):
611-
for record in self:
612-
if record.product_id:
613-
record.replace_product_uom = record.replace_product_id.uom_id
614-
else:
615-
record.replace_product_uom = False
616-
617617
@api.depends("picking_id", "product_id", "company_id")
618618
def _compute_location_id(self):
619619
for record in self:
@@ -796,13 +796,24 @@ def _prepare_reception_procurements(self):
796796
group = rma.procurement_group_id
797797
if not group:
798798
group = group_model.create(rma._prepare_procurement_group_vals())
799+
product = self.product_id
800+
if self.different_return_product:
801+
if not self.return_product_id:
802+
raise ValidationError(
803+
_(
804+
"The selected operation requires a return product different"
805+
" from the originally delivered item. Please select the "
806+
"product to return."
807+
)
808+
)
809+
product = self.return_product_id
799810
procurements.append(
800811
group_model.Procurement(
801-
rma.product_id,
812+
product,
802813
rma.product_uom_qty,
803814
rma.product_uom,
804815
rma.location_id,
805-
rma.product_id.display_name,
816+
product.display_name,
806817
group.name,
807818
rma.company_id,
808819
rma._prepare_reception_procurement_vals(group),

rma/tests/test_rma_operation.py

+5-7
Original file line numberDiff line numberDiff line change
@@ -149,15 +149,13 @@ def test_07(self):
149149
ValidationError, msg="Complete the replacement information"
150150
):
151151
rma.action_confirm()
152-
self.assertTrue(rma.show_replacement_fields)
153-
rma.replace_product_id = self.product_product.create(
154-
{"name": "replace Product test 1", "type": "product"}
152+
rma.return_product_id = self.product_product.create(
153+
{"name": "return Product test 1", "type": "product"}
155154
)
156-
rma.replace_product_uom_qty = 1
157155
rma.action_confirm()
158-
self.assertEqual(rma.delivery_move_ids.product_id, rma.replace_product_id)
159-
self.assertEqual(rma.delivery_move_ids.product_uom_qty, 1)
160-
self.assertEqual(rma.state, "waiting_replacement")
156+
self.assertEqual(rma.delivery_move_ids.product_id, rma.product_id)
157+
self.assertEqual(rma.reception_move_id.product_id, rma.return_product_id)
158+
self.assertEqual(rma.state, "waiting_return")
161159

162160
def test_08(self):
163161
"""test refund, manually after confirm"""

rma/views/rma_operation.xml

+7-6
Original file line numberDiff line numberDiff line change
@@ -16,19 +16,20 @@
1616
<group>
1717
<field name="action_create_receipt" />
1818

19-
</group>
20-
<group />
21-
<group>
22-
<field name="action_create_delivery" />
23-
2419
</group>
2520
<group>
2621
<field
2722
name="different_return_product"
2823
widget="boolean_toggle"
29-
attrs="{'invisible': [('action_create_delivery', '=', False)]}"
24+
attrs="{'invisible': [('action_create_receipt', '=', False)]}"
3025
/>
3126
</group>
27+
<group>
28+
<field name="action_create_delivery" />
29+
30+
</group>
31+
<group />
32+
3233
<group>
3334
<field name="action_create_refund" />
3435

rma/views/rma_views.xml

+6
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,11 @@
272272
force_save="1"
273273
attrs="{'readonly': ['|', ('picking_id', '!=', False), ('state', '!=', 'draft')]}"
274274
/>
275+
<field
276+
name="return_product_id"
277+
force_save="1"
278+
attrs="{'readonly': ['|', ('picking_id', '!=', False), ('state', '!=', 'draft')], 'invisible': [('different_return_product', '=', False)], 'required': [('different_return_product', '=', True)]}"
279+
/>
275280
<field name="uom_category_id" invisible="1" />
276281
<label for="product_uom_qty" />
277282
<div class="o_row">
@@ -352,6 +357,7 @@
352357
<field name="show_create_refund" invisible="1" />
353358
<field name="show_create_return" invisible="1" />
354359
<field name="show_create_replace" invisible="1" />
360+
<field name="different_return_product" invisible="1" />
355361
<field name="can_be_split" invisible="1" />
356362
<field name="can_be_locked" invisible="1" />
357363
<field name="can_be_finished" invisible="1" />

rma_sale/tests/test_rma_sale.py

+25-1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# Copyright 2023 Tecnativa - Pedro M. Baeza
44
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
55

6+
from odoo.exceptions import ValidationError
67
from odoo.tests import Form, TransactionCase
78
from odoo.tests.common import users
89

@@ -248,8 +249,31 @@ def test_no_manual_refund_quantity_impact(self):
248249
wizard = self._rma_sale_wizard(order)
249250
rma = self.env["rma"].browse(wizard.create_and_open_rma()["res_id"])
250251
self.assertEqual(rma.reception_move_id.sale_line_id, order_line)
251-
rma.action_confirm()
252252
self.assertFalse(rma.can_be_refunded)
253253
rma.reception_move_id.quantity_done = rma.product_uom_qty
254254
rma.reception_move_id.picking_id._action_done()
255255
self.assertEqual(order.order_line.qty_delivered, 0)
256+
257+
def test_return_different_product(self):
258+
self.operation.action_create_delivery = False
259+
self.operation.different_return_product = True
260+
self.operation.action_create_refund = "update_quantity"
261+
order = self.sale_order
262+
order_line = order.order_line
263+
self.assertEqual(order_line.qty_delivered, 5)
264+
wizard = self._rma_sale_wizard(order)
265+
with self.assertRaises(
266+
ValidationError, msg="Complete the replacement information"
267+
):
268+
rma = self.env["rma"].browse(wizard.create_and_open_rma()["res_id"])
269+
return_product = self.product_product.create(
270+
{"name": "return Product test 1", "type": "product"}
271+
)
272+
wizard.line_ids.return_product_id = return_product
273+
rma = self.env["rma"].browse(wizard.create_and_open_rma()["res_id"])
274+
self.assertEqual(rma.reception_move_id.sale_line_id, order_line)
275+
self.assertEqual(rma.reception_move_id.product_id, return_product)
276+
self.assertFalse(rma.can_be_refunded)
277+
rma.reception_move_id.quantity_done = rma.product_uom_qty
278+
rma.reception_move_id.picking_id._action_done()
279+
self.assertEqual(order.order_line.qty_delivered, 5)

rma_sale/wizard/sale_order_rma_wizard.py

+9
Original file line numberDiff line numberDiff line change
@@ -157,6 +157,14 @@ class SaleOrderLineRmaWizard(models.TransientModel):
157157
comodel_name="sale.order.line",
158158
)
159159
description = fields.Text()
160+
return_product_id = fields.Many2one(
161+
"product.product",
162+
help="Product to be returned if it's different from the originally delivered "
163+
"item.",
164+
)
165+
different_return_product = fields.Boolean(
166+
related="operation_id.different_return_product"
167+
)
160168

161169
@api.depends("wizard_id.operation_id")
162170
def _compute_operation_id(self):
@@ -223,4 +231,5 @@ def _prepare_rma_values(self):
223231
"product_uom": self.uom_id.id,
224232
"operation_id": self.operation_id.id,
225233
"description": description,
234+
"return_product_id": self.return_product_id.id,
226235
}

rma_sale/wizard/sale_order_rma_wizard_views.xml

+5
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@
3535
name="operation_id"
3636
attrs="{'required': [('quantity', '>', 0)]}"
3737
/>
38+
<field
39+
name="return_product_id"
40+
attrs="{'invisible': [('different_return_product', '=', False)], 'required': [('different_return_product', '=', True)]}"
41+
/>
42+
<field name="different_return_product" invisible="1" />
3843
</tree>
3944
</field>
4045
</group>

0 commit comments

Comments
 (0)