[FIX] stock/stock.py: identation fixed

bzr revid: qdp-launchpad@tinyerp.com-20101124172157-yhwp8hojlug240xy
This commit is contained in:
qdp-launchpad@tinyerp.com 2010-11-24 18:21:57 +01:00
parent 1920f45fc7
commit 2626459b5f
1 changed files with 2 additions and 2 deletions

View File

@ -586,8 +586,8 @@ class stock_picking(osv.osv):
group by
picking_id""",(tuple(ids),))
for pick, dt1, dt2 in cr.fetchall():
res[pick]['min_date'] = dt1
res[pick]['max_date'] = dt2
res[pick]['min_date'] = dt1
res[pick]['max_date'] = dt2
return res
def create(self, cr, user, vals, context=None):