[REM] Remove unwanted changes.

bzr revid: bth@tinyerp.com-20130416072248-qtn1ajo89i4wt048
This commit is contained in:
bth-openerp 2013-04-16 12:52:48 +05:30
parent 8caa5bae8d
commit 30b847fbf0
1 changed files with 2 additions and 2 deletions

View File

@ -274,9 +274,9 @@ class account_analytic_account(osv.osv):
def _total_cost_calc(self, cr, uid, ids, name, arg, context=None):
res = {}
res_final = {}
child_ids = tuple(ids) # We don't want consolidation for each of these fields because those complex computation is resource-greedy.
child_ids = tuple(ids) #We don't want consolidation for each of these fields because those complex computation is resource-greedy.
for i in child_ids:
res[i] = 0.0
res[i] = 0.0
if not child_ids:
return res
if child_ids: