From 9cbb49ff355c0279f44bf8257a51ce427ee6c7a5 Mon Sep 17 00:00:00 2001 From: "Bharat R. Devnani (OpenERP)" Date: Tue, 6 Aug 2013 14:45:32 +0530 Subject: [PATCH] [ADD] added value in product_uom_qty field in action_confirm method bzr revid: bde@tinyerp.com-20130806091532-0uydtb8u2nqhbgm3 --- addons/mrp_byproduct/mrp_byproduct.py | 1 + 1 file changed, 1 insertion(+) diff --git a/addons/mrp_byproduct/mrp_byproduct.py b/addons/mrp_byproduct/mrp_byproduct.py index 2425c2d8fea..9ac516dcb15 100644 --- a/addons/mrp_byproduct/mrp_byproduct.py +++ b/addons/mrp_byproduct/mrp_byproduct.py @@ -107,6 +107,7 @@ class mrp_production(osv.osv): 'date': production.date_planned, 'product_id': sub_product.product_id.id, 'product_qty': qty1, + 'product_uom_qty': production.product_qty, 'product_uom': sub_product.product_uom.id, 'product_uos_qty': qty2, 'product_uos': production.product_uos and production.product_uos.id or False,