[ADD]: config wizard for hr_requirement
authorksa (Open ERP) <ksa@tinyerp.co.in>
Thu, 7 Apr 2011 05:09:10 +0000 (10:39 +0530)
committerksa (Open ERP) <ksa@tinyerp.co.in>
Thu, 7 Apr 2011 05:09:10 +0000 (10:39 +0530)
bzr revid: ksa@tinyerp.co.in-20110407050910-upj2d0kfh2wnypw7

addons/hr_recruitment/__openerp__.py
addons/hr_recruitment/installer_view.xml [new file with mode: 0644]

index c7f97cf..158d51f 100644 (file)
@@ -47,6 +47,7 @@ system to store and search in your CV base.
         'security/ir.model.access.csv',
         'report/hr_recruitment_report_view.xml',
         'board_hr_recruitment_statistical_view.xml',
+        'installer_view.xml'
      ],
     'init_xml': [
         'hr_recruitment_data.xml'
diff --git a/addons/hr_recruitment/installer_view.xml b/addons/hr_recruitment/installer_view.xml
new file mode 100644 (file)
index 0000000..2f31fb5
--- /dev/null
@@ -0,0 +1,19 @@
+<?xml version="1.0" encoding="utf-8"?>
+<openerp>
+  <data>
+ <record model="ir.actions.act_window" id="hr_recruitment_stage_form_installer">
+           <field name="name">Recruitment Stages</field>
+           <field name="type">ir.actions.act_window</field>
+           <field name="res_model">hr.recruitment.stage</field>
+           <field name="view_type">form</field>
+           <field name="view_mode">tree,form</field>
+           <field name="view_id" ref="hr_recruitment.hr_recruitment_stage_form"/>
+       </record>
+
+       <record id="hr_recruitment_stage_form_todo" model="ir.actions.todo">
+           <field name="action_id" ref="hr_recruitment_stage_form_installer"/>
+           <field name="sequence">3</field>
+           <field name="restart">always</field>
+       </record>
+    </data>
+</openerp>