mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-25 17:52:08 +02:00
11 lines
445 B
Python
11 lines
445 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
module_website_hr_recruitment = fields.Boolean(string='Online Posting')
|
|
module_hr_recruitment_survey = fields.Boolean(string='Interview Forms')
|
|
module_hr_recruitment_extract = fields.Boolean(string='Send CV to OCR to fill applications')
|