[14.0][FIX] rma_sale: description not passed to SO

This commit is contained in:
DavidJForgeFlow
2023-01-23 13:26:57 +01:00
parent 52a33a7648
commit ca017414ab

View File

@@ -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,