[FIX]procurement: added read method instead of browse method

lp bug: https://launchpad.net/bugs/915404 fixed

bzr revid: mma@tinyerp.com-20120117120531-xg0acpsb4vt3gwe3
This commit is contained in:
Mayur Maheshwari (OpenERP) 2012-01-17 17:35:31 +05:30
parent 24ef362e7f
commit 3635ade2e4
1 changed files with 3 additions and 2 deletions

View File

@ -180,10 +180,11 @@ class procurement_order(osv.osv):
for warehouse in warehouse_obj.browse(cr, uid, warehouse_ids, context=context):
context['warehouse'] = warehouse
for product in product_obj.browse(cr, uid, products_id, context=context):
if product.virtual_available >= 0.0:
for product_availability in product_obj.read(cr, uid, products_id, ['virtual_available'], context=context):
if product_availability['virtual_available'] >= 0.0:
continue
product = product_obj.browse(cr, uid, [product_availability['id']], context=context)[0]
if product.supply_method == 'buy':
location_id = warehouse.lot_input_id.id
elif product.supply_method == 'produce':