mirror of
https://github.com/bringout/oca-ocb-hr.git
synced 2026-04-23 12:32:08 +02:00
96 lines
6 KiB
XML
96 lines
6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit.hr.recruitment</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="priority" eval="75"/>
|
|
<field name="inherit_id" ref="base.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[hasclass('settings')]" position="inside">
|
|
<div class="app_settings_block" data-string="Recruitment" string="Recruitment" data-key="hr_recruitment" groups="hr_recruitment.group_hr_recruitment_manager">
|
|
<h2>Job Posting</h2>
|
|
<div class="row mt16 o_settings_container" name="online_posting_setting_container">
|
|
<div class="col-12 col-lg-6 o_setting_box" id="publish_available_jobs_setting">
|
|
<div class="o_setting_left_pane">
|
|
<field name="module_website_hr_recruitment"/>
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="module_website_hr_recruitment" string="Online Posting"/>
|
|
<div class="text-muted">
|
|
Publish available jobs on your website
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<h2>Recruitment Process</h2>
|
|
<div class="row mt16 o_settings_container" name="recruitment_process_div">
|
|
<div class="col-12 col-lg-6 o_setting_box"
|
|
id="interview_forms_setting"
|
|
title="Use interview forms tailored to each job position during the recruitment process. Select the form to use in the job position detail form. This relies on the Survey app.">
|
|
<div class="o_setting_left_pane">
|
|
<field name="module_hr_recruitment_survey"/>
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="module_hr_recruitment_survey" string="Send Interview Survey"/>
|
|
<div class="text-muted">
|
|
Send an Interview Survey to the applicant during
|
|
the recruitment process
|
|
</div>
|
|
<div class="content-group" id="interview_forms"/>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-12 col-md-6 o_setting_box" id="sms">
|
|
<div class="o_setting_right_pane" id="sms_settings">
|
|
<div class="o_form_label">
|
|
Send SMS
|
|
<a href="https://www.odoo.com/documentation/16.0/applications/marketing/sms_marketing/pricing/pricing_and_faq.html" title="Documentation" class="ms-1 o_doc_link" target="_blank"></a>
|
|
</div>
|
|
<div class="text-muted">
|
|
Send texts to your contacts
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-12 col-md-6 o_setting_box" id="display_cv">
|
|
<div class="o_setting_left_pane">
|
|
<field name="group_applicant_cv_display"/>
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="group_applicant_cv_display" string="CV Display"/>
|
|
<div class="text-muted">
|
|
Display CV on application form
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="col-xs-12 col-md-6 o_setting_box" title="Use OCR to fill data from a picture of the CV or the file itself">
|
|
<div class="o_setting_left_pane">
|
|
<field name="module_hr_recruitment_extract" widget="upgrade_boolean"/>
|
|
</div>
|
|
<div class="o_setting_right_pane" id="recruitment_extract_settings">
|
|
<label string="CV Digitization (OCR)" for="module_hr_recruitment_extract"/>
|
|
<span class="fa fa-lg fa-building-o" title="Values set here are company-specific."/>
|
|
<div class="text-muted">
|
|
Digitize your CV to extract name and email automatically.
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
<record id="action_hr_recruitment_configuration" model="ir.actions.act_window">
|
|
<field name="name">Settings</field>
|
|
<field name="type">ir.actions.act_window</field>
|
|
<field name="res_model">res.config.settings</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">inline</field>
|
|
<field name="context">{'module' : 'hr_recruitment', 'bin_size': False}</field>
|
|
</record>
|
|
|
|
<menuitem id="menu_hr_recruitment_global_settings" name="Settings"
|
|
parent="menu_hr_recruitment_configuration" sequence="0" action="action_hr_recruitment_configuration"
|
|
groups="base.group_system"/>
|
|
</data>
|
|
</odoo>
|