[MIG] beta migration of account_usability

This commit is contained in:
Alexis de Lattre
2020-12-07 23:48:29 +01:00
parent d72872eb90
commit 17549ca457
36 changed files with 1110 additions and 812 deletions

View File

@@ -0,0 +1,12 @@
# 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)