[FIX]account_asset:Fixes the expresion problem in

lp bug: https://launchpad.net/bugs/1074228 fixed

bzr revid: kbh@tinyerp.com-20121102072500-ylzaw1i75a13kimh
This commit is contained in:
jacara 2012-11-02 12:55:00 +05:30 committed by Khushboo Bhatt (Open ERP)
parent ddb59425d0
commit 459270ebff
1 changed files with 1 additions and 1 deletions

View File

@ -376,7 +376,7 @@ class account_asset_depreciation_line(osv.osv):
current_currency = line.asset_id.currency_id.id
context.update({'date': depreciation_date})
amount = currency_obj.compute(cr, uid, current_currency, company_currency, line.amount, context=context)
sign = line.asset_id.category_id.journal_id.type = 'purchase' and 1 or -1
sign == (line.asset_id.category_id.journal_id.type == 'purchase' and 1) or -1
asset_name = line.asset_id.name
reference = line.name
move_vals = {