blob: e63b6621069227a5f77fe54c4e9d89f1c536fdd3 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- coding: utf-8 -*-
from odoo import fields, models
class ResCompany(models.Model):
_name = 'res.company'
_description = 'Companies'
_inherit = 'res.company'
l10n_sg_unique_entity_number = fields.Char(string='UEN', related="partner_id.l10n_sg_unique_entity_number", readonly=False)
|