You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
438 B
12 lines
438 B
# -*- 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')
|
|
|