[IMP] mrp_repair: better use a search on scrap location rather than rely on xml_ids that may refer to removed/deprecated data

bzr revid: qdp-launchpad@openerp.com-20121213112607-0gzeu7dpq81dxx3w
This commit is contained in:
Quentin (OpenERP) 2012-12-13 12:26:07 +01:00
parent 02ebe3312b
commit 154dab3182
1 changed files with 4 additions and 4 deletions

View File

@ -729,8 +729,9 @@ class mrp_repair_line(osv.osv, ProductChangeMixin):
'location_id': False,
'location_dest_id': False
}}
location_obj = self.pool.get('stock.location')
warehouse_obj = self.pool.get('stock.warehouse')
location_id = self.pool.get('stock.location').search(cr, uid, [('usage','=','production')], context=context)
location_id = location_obj.search(cr, uid, [('usage','=','production')], context=context)
location_id = location_id and location_id[0] or False
if type == 'add':
@ -748,13 +749,12 @@ class mrp_repair_line(osv.osv, ProductChangeMixin):
'location_id': stock_id,
'location_dest_id': location_id
}}
obj_data = self.pool.get('ir.model.data')
dummy, scrapped_location_id = obj_data.get_object_reference(cr, uid, 'stock', 'stock_location_scrapped')
scrap_location_ids = location_obj.search(cr, uid, [('scrap_location', '=', True)], context=context)
return {'value': {
'to_invoice': False,
'location_id': location_id,
'location_dest_id': scrapped_location_id,
'location_dest_id': scrap_location_ids and scrap_location_ids[0] or False,
}}
mrp_repair_line()