mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
30 lines
1.2 KiB
Python
30 lines
1.2 KiB
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2009-2018 Noviat.
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountAsset(models.Model):
|
|
_inherit = 'account.asset'
|
|
|
|
method_number = fields.Integer(
|
|
string='Number',
|
|
help="The meaning of this parameter depends on the Time Method.\n"
|
|
" * Number of Years: Specify the number of years "
|
|
"for the depreciation.\n"
|
|
" * Number of Depreciations: Fix the number of "
|
|
"depreciation lines and the time between 2 depreciations.\n"
|
|
" * Ending Date: Choose the time between 2 depreciations "
|
|
"and the date the depreciations won't go beyond.")
|
|
|
|
method_time = fields.Selection(
|
|
help="Choose the method to use to compute the dates and "
|
|
"number of depreciation lines.\n"
|
|
" * Number of Years: Specify the number of years "
|
|
"for the depreciation.\n"
|
|
" * Number of Depreciations: Fix the number of "
|
|
"depreciation lines and the time between 2 depreciations.\n"
|
|
" * Ending Date: Choose the time between 2 depreciations "
|
|
"and the date the depreciations won't go beyond.")
|