[FIX] stock: fix core indentation
authorXavier ALT <xal@openerp.com>
Wed, 25 Apr 2012 10:33:45 +0000 (12:33 +0200)
committerXavier ALT <xal@openerp.com>
Wed, 25 Apr 2012 10:33:45 +0000 (12:33 +0200)
bzr revid: xal@openerp.com-20120425103345-3qho4w9w6y88ti5t

addons/stock/wizard/stock_fill_inventory.py

index ef2d851..4210fba 100644 (file)
@@ -103,7 +103,7 @@ class stock_fill_inventory(osv.osv_memory):
                     qty = -uom_obj._compute_qty(cr, uid, move.product_uom.id,move.product_qty, move.product_id.uom_id.id)
 
                 if datas.get((prod_id, lot_id)):
-                     qty += datas[(prod_id, lot_id)]['product_qty']
+                    qty += datas[(prod_id, lot_id)]['product_qty']
                 
                 datas[(prod_id, lot_id)] = {'product_id': prod_id, 'location_id': location, 'product_qty': qty, 'product_uom': move.product_id.uom_id.id, 'prod_lot_id': lot_id}