From ca017414ab922e8cd3925009f4d02c6abf3ec0d1 Mon Sep 17 00:00:00 2001 From: DavidJForgeFlow Date: Mon, 23 Jan 2023 13:26:57 +0100 Subject: [PATCH] [14.0][FIX] rma_sale: description not passed to SO --- rma_sale/wizards/rma_order_line_make_sale_order.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rma_sale/wizards/rma_order_line_make_sale_order.py b/rma_sale/wizards/rma_order_line_make_sale_order.py index 9368251a..cf061970 100644 --- a/rma_sale/wizards/rma_order_line_make_sale_order.py +++ b/rma_sale/wizards/rma_order_line_make_sale_order.py @@ -86,7 +86,7 @@ class RmaLineMakeSaleOrder(models.TransientModel): def _prepare_sale_order_line(self, so, item): product = item.product_id vals = { - "name": product.name, + "name": item.name, "order_id": so.id, "product_id": product.id, "product_uom": product.uom_po_id.id,