1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/hr_recruitment_extract/models/res_company.py
2024-12-10 09:04:09 +07:00

18 lines
546 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResCompany(models.Model):
_inherit = 'res.company'
recruitment_extract_show_ocr_option_selection = fields.Selection(
selection=[
('no_send', 'Do not digitize'),
('manual_send', "Digitize on demand only"),
('auto_send', 'Digitize automatically')],
string="Send mode on applicant attachments",
required=False,
default='auto_send')