Bugfixing in stock.py: completed missing brackets

bzr revid: ruchakpatel@gmail.com-20080919122709-mgpsjvbkv8vg7fru
This commit is contained in:
Rucha Patel 2008-09-19 17:57:09 +05:30
parent 5d53bf8783
commit b84a23475a
1 changed files with 2 additions and 2 deletions

View File

@ -792,8 +792,8 @@ class stock_production_lot(osv.osv):
from
stock_report_prodlots
where
location_id in ('''+','.join(map(str, locations))+''' and
prodlot_id in ('''+','.join(map(str, ids))+'''
location_id in ('''+','.join(map(str, locations))+''') and
prodlot_id in ('''+','.join(map(str, ids))+''')
group by
prodlot_id
''')