blob: d485df9000aace895888504b3f84c2a9eb97360e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<data noupdate="1">
<!--Manage the job_id to get in hr.applicant-->
<record id="hr.job_developer" model="hr.job">
<field name="survey_id" ref="survey_recruitment_form"/>
</record>
<record id="hr.job_ceo" model="hr.job">
<field name="survey_id" ref="survey_recruitment_form"/>
</record>
<record id="hr.job_cto" model="hr.job">
<field name="survey_id" ref="survey_recruitment_form"/>
</record>
<record id="hr.job_consultant" model="hr.job">
<field name="survey_id" ref="survey_recruitment_form"/>
</record>
<record id="hr.job_hrm" model="hr.job">
<field name="survey_id" ref="survey_recruitment_form"/>
</record>
<record id="hr.job_marketing" model="hr.job">
<field name="survey_id" ref="survey_recruitment_form"/>
</record>
<record id="hr.job_trainee" model="hr.job">
<field name="survey_id" ref="survey_recruitment_form"/>
</record>
</data>
</odoo>
|