Merge pull request #364 from ForgeFlow/14.0-fix-rma_sale_description

[14.0][FIX] rma_sale: description not passed to SO
This commit is contained in:
Lois Rilo
2023-02-15 09:30:51 +01:00
committed by GitHub

View File

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