mirror of
https://github.com/ForgeFlow/stock-rma.git
synced 2025-01-21 12:57:49 +02:00
Merge pull request #366 from ForgeFlow/13.0-bp-364
[13.0][FIX] rma_sale: description not passed to SO
This commit is contained in:
@@ -86,7 +86,7 @@ class RmaLineMakeSaleOrder(models.TransientModel):
|
|||||||
def _prepare_sale_order_line(self, so, item):
|
def _prepare_sale_order_line(self, so, item):
|
||||||
product = item.product_id
|
product = item.product_id
|
||||||
vals = {
|
vals = {
|
||||||
"name": product.name,
|
"name": item.name,
|
||||||
"order_id": so.id,
|
"order_id": so.id,
|
||||||
"product_id": product.id,
|
"product_id": product.id,
|
||||||
"product_uom": product.uom_po_id.id,
|
"product_uom": product.uom_po_id.id,
|
||||||
|
|||||||
Reference in New Issue
Block a user