2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import api, fields, models
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class AccountMove(models.Model):
|
|
|
|
_inherit = 'account.move'
|
|
|
|
|
|
|
|
asset_depreciation_ids = fields.One2many('account.asset.depreciation.line', 'move_id', string='Assets Depreciation Lines', ondelete="restrict")
|
2018-07-24 13:15:11 +02:00
|
|
|
asset_id = fields.Many2one('account.asset.asset', string="Asset")
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
@api.multi
|
|
|
|
def button_cancel(self):
|
|
|
|
for move in self:
|
|
|
|
for line in move.asset_depreciation_ids:
|
|
|
|
line.move_posted_check = False
|
|
|
|
return super(AccountMove, self).button_cancel()
|
|
|
|
|
|
|
|
@api.multi
|
|
|
|
def post(self):
|
|
|
|
for move in self:
|
|
|
|
for depreciation_line in move.asset_depreciation_ids:
|
|
|
|
depreciation_line.post_lines_and_close_asset()
|
|
|
|
return super(AccountMove, self).post()
|
2018-07-24 13:15:11 +02:00
|
|
|
|
|
|
|
|
|
|
|
class AccountMoveLine(models.Model):
|
|
|
|
_inherit = 'account.move.line'
|
|
|
|
|
|
|
|
asset_id = fields.Many2one(related='move_id.asset_id', string="Asset")
|