[IMP] hr: remove redundant active filter on employees search view

The filter is useless now that the server was fixed
at revision 4076
revision-id: odo@openerp.com-20120223141635-p117b5wvvreuj40c
to properly respect the `active` flag even when it is
inherited.
It is always possible to find deactived employees using
an advanced search with active = False.

bzr revid: odo@openerp.com-20120223145421-edyuc43r0mkn9lim
This commit is contained in:
Olivier Dony 2012-02-23 15:54:21 +01:00
parent a55e7148e3
commit d09e165589
1 changed files with 1 additions and 3 deletions

View File

@ -104,8 +104,6 @@
<field name="type">search</field>
<field name="arch" type="xml">
<search string="Employees">
<filter icon="terp-personal+" domain="[('active','=',True)]" name="active" string="Active" groups="base.group_extended"/>
<separator orientation="vertical" />
<field name="name"/>
<field name="department_id" widget="selection">
<filter icon="terp-personal+" domain="[('department_id','=',context.get('department_id',False))]" string="My Departments Employee"/>
@ -185,7 +183,7 @@
<field name="view_type">form</field>
<field name="view_mode">kanban,tree,form</field>
<field name="domain">[]</field>
<field name="context">{"search_default_department_id": department_id,"search_default_active":eval('True')}</field>
<field name="context">{"search_default_department_id": department_id}</field>
<field name="view_id" eval="False"/>
<field name="search_view_id" ref="view_employee_filter"/>
<field name="help">Here you can manage your work force by creating employees and assigning them specific properties in the system. Maintain all employee related information and keep track of anything that needs to be recorded for them. The personal information tab will help you maintain their identity data. The Categories tab gives you the opportunity to assign them related employee categories depending on their position and activities within the company. A category can be a seniority level within the company or a department. The Timesheets tab allows to assign them a specific timesheet and analytic journal where they will be able to enter time through the system. In the note tab, you can enter text data that should be recorded for a specific employee.</field>