15 lines
679 B
Python
15 lines
679 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResCompany(models.Model):
|
|
_inherit = 'res.company'
|
|
|
|
l10n_jo_edi_sequence_income_source = fields.Char(string="JoFotara Sequence of Income Source")
|
|
l10n_jo_edi_secret_key = fields.Char(string="JoFotara Secret Key", groups="base.group_system")
|
|
l10n_jo_edi_client_identifier = fields.Char(string="JoFotara Client ID", groups="base.group_system")
|
|
l10n_jo_edi_taxpayer_type = fields.Selection(string="JoFotara Taxpayer Type", selection=[
|
|
('income', "Unregistered in the sales tax"),
|
|
('sales', "Registered in the sales tax"),
|
|
('special', "Registered in the special sales tax"),
|
|
], default='sales')
|