[IMP] HR: put department_id in user prefernces

bzr revid: hmo@tinyerp.com-20100219111913-mo0hexc03ugo4btp
This commit is contained in:
Harry (Open ERP) 2010-02-19 16:49:13 +05:30
parent 713ee22c90
commit 31acd18ea6
2 changed files with 4 additions and 23 deletions

View File

@ -163,14 +163,7 @@ class res_users(osv.osv):
_columns = {
'parent_id': fields.function(_parent_compute, relation='res.users',fnct_search=_parent_search, method=True, string="Managers", type='many2many'),
'child_ids': fields.function(_child_compute, relation='res.users', fnct_search=_child_search,method=True, string="Subordinates", type='many2many'),
'context_department_id': fields.many2one('hr.department', 'Departments'),
}
res_users()
#class users(osv.osv):
# _inherit = 'res.users'
# _description = "Users"
# _columns = {
# 'context_department_id': fields.many2one('hr.department', 'Departments'),
# }
#users()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -83,6 +83,7 @@
<field name="arch" type="xml">
<notebook position="inside">
<page string="Departements Informations">
<field name="context_department_id" completion="1" widget="selection" string="Department"/>
<separator string="Managers" colspan="4"/>
<field name="parent_id" nolabel="1" colspan="4"/>
<separator string="Subordinates" colspan="4"/>
@ -91,7 +92,7 @@
</notebook>
</field>
</record>
<!--<record model="ir.ui.view" id="view_department_form_simple_modif_inherited1">
<record model="ir.ui.view" id="view_department_form_simple_modif_inherited1">
<field name="name">view.department.form.hr.inherited1</field>
<field name="model">res.users</field>
<field name="inherit_id" ref="base.view_users_form_simple_modif" />
@ -102,18 +103,5 @@
</page>
</field>
</record>
<record id="view_department_form_simple_modif_inherited2" model="ir.ui.view">
<field name="name">view.department.form.hr.inherited2</field>
<field name="model">res.users</field>
<field name="type">form</field>
<field name="inherit_id" ref="base.view_users_form"/>
<field eval="18" name="priority"/>
<field name="arch" type="xml">
<field name="password" position="after">
<field name="context_department_id" completion="1" widget="selection"/>
</field>
</field>
</record>
--></data>
</data>
</openerp>