Files
odoo-usability/account_usability/wizard/res_config_settings.py
2021-11-26 18:57:02 +03:00

14 lines
414 B
Python

# Copyright 2015-2020 Akretion (http://www.akretion.com)
# @author Alexis de Lattre <alexis.delattre@akretion.com>
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class ResConfigSettings(models.TransientModel):
_inherit = "res.config.settings"
transfer_account_id = fields.Many2one(
related="company_id.transfer_account_id", readonly=False
)