[FIX] account_asset: move lines should use the depreciation line date

opw-616843
This commit is contained in:
Julien Legros 2014-11-05 16:56:44 +01:00
parent a3f9c908a0
commit a5cf719739
1 changed files with 2 additions and 2 deletions

View File

@ -431,7 +431,7 @@ class account_asset_depreciation_line(osv.osv):
'partner_id': partner_id, 'partner_id': partner_id,
'currency_id': company_currency != current_currency and current_currency or False, 'currency_id': company_currency != current_currency and current_currency or False,
'amount_currency': company_currency != current_currency and - sign * line.amount or 0.0, 'amount_currency': company_currency != current_currency and - sign * line.amount or 0.0,
'date': depreciation_date, 'date': line.depreciation_date,
}) })
move_line_obj.create(cr, uid, { move_line_obj.create(cr, uid, {
'name': asset_name, 'name': asset_name,
@ -446,7 +446,7 @@ class account_asset_depreciation_line(osv.osv):
'currency_id': company_currency != current_currency and current_currency or False, 'currency_id': company_currency != current_currency and current_currency or False,
'amount_currency': company_currency != current_currency and sign * line.amount or 0.0, 'amount_currency': company_currency != current_currency and sign * line.amount or 0.0,
'analytic_account_id': line.asset_id.category_id.account_analytic_id.id, 'analytic_account_id': line.asset_id.category_id.account_analytic_id.id,
'date': depreciation_date, 'date': line.depreciation_date,
'asset_id': line.asset_id.id 'asset_id': line.asset_id.id
}) })
self.write(cr, uid, line.id, {'move_id': move_id}, context=context) self.write(cr, uid, line.id, {'move_id': move_id}, context=context)