forked from Mapan/odoo17e
15 lines
488 B
Python
15 lines
488 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.TransientModel):
|
|
_inherit = "res.config.settings"
|
|
|
|
l10n_au_branch_code = fields.Char(
|
|
related="company_id.l10n_au_branch_code", readonly=False)
|
|
l10n_au_wpn_number = fields.Char(
|
|
related="company_id.l10n_au_wpn_number", readonly=False)
|
|
l10n_au_sfei = fields.Char(
|
|
related="company_id.l10n_au_sfei", readonly=False)
|