mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
18 lines
650 B
Python
18 lines
650 B
Python
# Copyright (c) 2014 ACSONE SA/NV (http://acsone.eu).
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class Config(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
module_account_asset_management = fields.Boolean(
|
|
string="Assets management (OCA)",
|
|
help="""This allows you to manage the assets owned by a company
|
|
or a person. It keeps track of the depreciation occurred
|
|
on those assets, and creates account move for those
|
|
depreciation lines.
|
|
This installs the module account_asset_management.""",
|
|
)
|