From f56f6011eae742b9896293b352747df260e56edc Mon Sep 17 00:00:00 2001 From: "Quentin (OpenERP)" Date: Thu, 8 May 2014 14:25:59 +0200 Subject: [PATCH] [FIX] mrp_repair: removing product_qty from stock move creation bzr revid: qdp-launchpad@openerp.com-20140508122559-f00trgm0b66z84oj --- addons/mrp_repair/mrp_repair.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/mrp_repair/mrp_repair.py b/addons/mrp_repair/mrp_repair.py index 217340f3385..e07bf65af46 100644 --- a/addons/mrp_repair/mrp_repair.py +++ b/addons/mrp_repair/mrp_repair.py @@ -493,7 +493,7 @@ class mrp_repair(osv.osv): 'name': repair.name, 'product_id': repair.product_id.id, 'product_uom': repair.product_uom.id or repair.product_id.uom_id.id, - 'product_qty': repair.product_qty, + 'product_uom_qty': repair.product_qty, 'partner_id': repair.address_id and repair.address_id.id or False, 'location_id': repair.location_id.id, 'location_dest_id': repair.location_dest_id.id,