mirror of
https://github.com/bringout/oca-ocb-l10n_asia-pacific.git
synced 2026-04-27 19:22:05 +02:00
7 lines
195 B
Python
7 lines
195 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResCountryState(models.Model):
|
|
_inherit = 'res.country.state'
|
|
|
|
l10n_in_tin = fields.Char("TIN Number", size=2, help="TIN number-first two digits")
|