[FIX] account move entry should be created with 0.0 value when cost price is 0.0
authorado <ado@tinyerp.com>
Fri, 2 Mar 2012 10:21:21 +0000 (15:51 +0530)
committerado <ado@tinyerp.com>
Fri, 2 Mar 2012 10:21:21 +0000 (15:51 +0530)
bzr revid: ado@tinyerp.com-20120302102121-tjkllsh7naa31nma

addons/stock/stock.py

index 072e444..f640cee 100644 (file)
@@ -2070,7 +2070,7 @@ class stock_move(osv.osv):
                 context = {}
             currency_ctx = dict(context, currency_id = move.company_id.currency_id.id)
             amount_unit = move.product_id.price_get('standard_price', currency_ctx)[move.product_id.id]
-            reference_amount = amount_unit * qty or 1.0
+            reference_amount = amount_unit * qty or 0.0
 
         return reference_amount, reference_currency_id