Atik Agewan(OpenERP) has proposed merging
lp:~openerp-dev/openobject-addons/trunk-hr-feature-aag into
lp:openobject-addons.
Requested reviews:
qdp (OpenERP) (qdp)
For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-hr-feature-aag/+merge/63196
Hello
HR Feature 1 : sum of number of employee per department is alredy done
HR Feature 1 :add a menuitem for HR\ Reporting \ Job Positions Analysis.It's
opening the same menu as in Recruitment / Job Positions but with a group by
"company, department.
--
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-hr-feature-aag/+merge/63196
Your team OpenERP R&D Team is subscribed to branch
lp:~openerp-dev/openobject-addons/trunk-hr-feature-aag.
=== modified file 'hr/hr_view.xml'
--- hr/hr_view.xml 2011-05-04 10:09:10 +0000
+++ hr/hr_view.xml 2011-06-02 06:19:23 +0000
@@ -414,9 +414,36 @@
<field name="context">{"search_default_Current":1,"search_default_department_id": department_id}</field>
<field name="help">Job Positions are used to define jobs and their requirements. You can keep track of the number of employees you have per job position and how many you expect in the future. You can also attach a survey to a job position that will be used in the recruitment process to evaluate the applicants for this job position.</field>
</record>
+
+ <!-- Job Positions Analysis -->
+
+ <record id="view_job_filter_analysis" model="ir.ui.view">
+ <field name="name">Job Positions Analysis</field>
+ <field name="model">hr.job</field>
+ <field name="type">search</field>
+ <field name="inherit_id" ref="hr.view_job_filter"/>
+ <field name="arch" type="xml">
+ <data>
+ <xpath expr="/search/group/filter[@string='State']" position="replace">
+ <separator orientation="vertical" groups="base.group_multi_company"/>
+ </xpath>
+ </data>
+ </field>
+ </record>
+
+ <record model="ir.actions.act_window" id="action_hr_job_analysis">
+ <field name="name">Job Positions Analysis</field>
+ <field name="res_model">hr.job</field>
+ <field name="view_type">form</field>
+ <field name="view_mode">tree</field>
+ <field name="search_view_id" ref="view_job_filter_analysis"/>
+ <field name="context">{"search_default_Current":1,"search_default_department_id": department_id}</field>
+ </record>
<menuitem name="Recruitment" id="base.menu_crm_case_job_req_main" parent="menu_hr_root" groups="base.group_hr_user"/>
<menuitem parent="base.menu_crm_case_job_req_main" id="menu_hr_job" action="action_hr_job" sequence="2"/>
+ <menuitem name="Reporting" id="base.menu_hr_job_position_reporting" parent="menu_hr_root" groups="base.group_hr_user"/>
+ <menuitem parent="base.menu_hr_job_position_reporting" id="menu_hr_job_analysis" action="action_hr_job_analysis"/>
</data>
</openerp>
_______________________________________________
Mailing list: https://launchpad.net/~openerp-dev-gtk
Post to : [email protected]
Unsubscribe : https://launchpad.net/~openerp-dev-gtk
More help : https://help.launchpad.net/ListHelp