From 5c8dd47a19d0cb5d7ca87a3b8a72aeaa702a1022 Mon Sep 17 00:00:00 2001 From: Lois Rilo Date: Mon, 2 Jan 2023 10:54:29 +0100 Subject: [PATCH] [IMP] rma_sale: copy group description to rma lines --- rma_sale/wizards/rma_add_sale.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rma_sale/wizards/rma_add_sale.py b/rma_sale/wizards/rma_add_sale.py index 44700e4e..c4810f1f 100644 --- a/rma_sale/wizards/rma_add_sale.py +++ b/rma_sale/wizards/rma_add_sale.py @@ -123,6 +123,7 @@ class RmaAddSale(models.TransientModel): ) data = { "partner_id": self.partner_id.id, + "description": self.rma_id.description, "sale_line_id": line.id, "product_id": line.product_id.id, "lot_id": lot and lot.id or False,