mirror of
https://gitlab.com/sonalarora/tra_backend.git
synced 2025-12-17 18:29:08 +02:00
13 lines
438 B
Python
13 lines
438 B
Python
# -*- coding: utf-8 -*-
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
module_account_accountant = fields.Boolean(string='Account Accountant')
|
|
module_l10n_fr_hr_payroll = fields.Boolean(string='French Payroll')
|
|
module_l10n_be_hr_payroll = fields.Boolean(string='Belgium Payroll')
|
|
module_l10n_in_hr_payroll = fields.Boolean(string='Indian Payroll')
|