forked from Mapan/odoo17e
11 lines
361 B
Python
11 lines
361 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
l10n_ke_nssf_number = fields.Char(string="NSSF Number", help="NSSF Number provided by the NSSF")
|
|
l10n_ke_kra_pin = fields.Char(string="KRA PIN", help="KRA PIN provided by the KRA")
|