From 79d9cea70129e52406bfa1ece836c5ccb49c9b88 Mon Sep 17 00:00:00 2001 From: Lois Rilo Date: Mon, 2 Jan 2023 10:55:03 +0100 Subject: [PATCH] [IMP] rma_purchase: copy group description to rma lines --- rma_purchase/wizards/rma_add_purchase.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rma_purchase/wizards/rma_add_purchase.py b/rma_purchase/wizards/rma_add_purchase.py index 018e6012..26aed30a 100644 --- a/rma_purchase/wizards/rma_add_purchase.py +++ b/rma_purchase/wizards/rma_add_purchase.py @@ -78,6 +78,7 @@ class RmaAddPurchase(models.TransientModel): ) data = { "partner_id": self.partner_id.id, + "description": self.rma_id.description, "purchase_order_line_id": line.id, "product_id": line.product_id.id, "origin": line.order_id.name,