mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-27 02:42:07 +02:00
Initial commit: L10N_Asia Pacific packages
This commit is contained in:
commit
54c86b612c
828 changed files with 58224 additions and 0 deletions
16
odoo-bringout-oca-ocb-l10n_th/l10n_th/models/res_partner.py
Normal file
16
odoo-bringout-oca-ocb-l10n_th/l10n_th/models/res_partner.py
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
# -*- coding: utf-8 -*-
|
||||
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||||
from odoo import models, fields
|
||||
|
||||
class ResPartner(models.Model):
|
||||
_inherit = "res.partner"
|
||||
|
||||
l10n_th_branch_name = fields.Char(compute="_l10n_th_get_branch_name")
|
||||
|
||||
def _l10n_th_get_branch_name(self):
|
||||
for partner in self:
|
||||
if not partner.is_company or partner.country_code != 'TH':
|
||||
partner.l10n_th_branch_name = ""
|
||||
else:
|
||||
code = partner.company_registry
|
||||
partner.l10n_th_branch_name = f"Branch {code}" if code else "Headquarter"
|
||||
Loading…
Add table
Add a link
Reference in a new issue