[IMP] hr: show the employees from the category
[odoo/odoo.git] / addons / hr / hr.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 from osv import fields, osv
23 import logging
24 import addons
25
26 class hr_employee_category(osv.osv):
27
28     def name_get(self, cr, uid, ids, context=None):
29         if not ids:
30             return []
31         reads = self.read(cr, uid, ids, ['name','parent_id'], context=context)
32         res = []
33         for record in reads:
34             name = record['name']
35             if record['parent_id']:
36                 name = record['parent_id'][1]+' / '+name
37             res.append((record['id'], name))
38         return res
39
40     def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, context=None):
41         res = self.name_get(cr, uid, ids, context=context)
42         return dict(res)
43
44     _name = "hr.employee.category"
45     _description = "Employee Category"
46     _columns = {
47         'name': fields.char("Category", size=64, required=True),
48         'complete_name': fields.function(_name_get_fnc, type="char", string='Name'),
49         'parent_id': fields.many2one('hr.employee.category', 'Parent Category', select=True),
50         'child_ids': fields.one2many('hr.employee.category', 'parent_id', 'Child Categories'),
51         'employee_ids': fields.many2many('hr.employee', 'employee_category_rel', 'category_id', 'emp_id', 'Employees'),
52     }
53
54     def _check_recursion(self, cr, uid, ids, context=None):
55         level = 100
56         while len(ids):
57             cr.execute('select distinct parent_id from hr_employee_category where id IN %s', (tuple(ids), ))
58             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
59             if not level:
60                 return False
61             level -= 1
62         return True
63
64     _constraints = [
65         (_check_recursion, 'Error ! You cannot create recursive Categories.', ['parent_id'])
66     ]
67
68 hr_employee_category()
69
70 class hr_job(osv.osv):
71
72     def _no_of_employee(self, cr, uid, ids, name, args, context=None):
73         res = {}
74         for job in self.browse(cr, uid, ids, context=context):
75             nb_employees = len(job.employee_ids or [])
76             res[job.id] = {
77                 'no_of_employee': nb_employees,
78                 'expected_employees': nb_employees + job.no_of_recruitment,
79             }
80         return res
81
82     _name = "hr.job"
83     _description = "Job Description"
84     _columns = {
85         'name': fields.char('Job Name', size=128, required=True, select=True),
86         'expected_employees': fields.function(_no_of_employee, string='Expected Employees', help='Required number of Employees in total for that job.', multi="no_of_employee", store=True),
87         'no_of_employee': fields.function(_no_of_employee, string="No of Employee", help='Number of employee with that job.', multi="no_of_employee", store=True),
88         'no_of_recruitment': fields.float('Expected in Recruitment'),
89         'employee_ids': fields.one2many('hr.employee', 'job_id', 'Employees'),
90         'description': fields.text('Job Description'),
91         'requirements': fields.text('Requirements'),
92         'department_id': fields.many2one('hr.department', 'Department'),
93         'company_id': fields.many2one('res.company', 'Company'),
94         'state': fields.selection([('open', 'In Position'),('old', 'Old'),('recruit', 'In Recruitement')], 'State', readonly=True, required=True),
95     }
96     _defaults = {
97         'expected_employees': 1,
98         'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'hr.job', context=c),
99         'state': 'open',
100     }
101     
102     _sql_constraints = [
103         ('name_company_uniq', 'unique(name, company_id)', 'The name of the job position must be unique per company!'),
104     ]
105
106
107     def on_change_expected_employee(self, cr, uid, ids, no_of_recruitment, no_of_employee, context=None):
108         if context is None:
109             context = {}
110         return {'value': {'expected_employees': no_of_recruitment + no_of_employee}}
111
112     def job_old(self, cr, uid, ids, *args):
113         self.write(cr, uid, ids, {'state': 'old', 'no_of_recruitment': 0})
114         return True
115
116     def job_recruitement(self, cr, uid, ids, *args):
117         for job in self.browse(cr, uid, ids):
118             no_of_recruitment = job.no_of_recruitment == 0 and 1 or job.no_of_recruitment
119             self.write(cr, uid, [job.id], {'state': 'recruit', 'no_of_recruitment': no_of_recruitment})
120         return True
121
122     def job_open(self, cr, uid, ids, *args):
123         self.write(cr, uid, ids, {'state': 'open', 'no_of_recruitment': 0})
124         return True
125
126 hr_job()
127
128 class hr_employee(osv.osv):
129     _name = "hr.employee"
130     _description = "Employee"
131     _inherits = {'resource.resource': "resource_id"}
132     _columns = {
133         'country_id': fields.many2one('res.country', 'Nationality'),
134         'birthday': fields.date("Date of Birth"),
135         'ssnid': fields.char('SSN No', size=32, help='Social Security Number'),
136         'sinid': fields.char('SIN No', size=32, help="Social Insurance Number"),
137         'identification_id': fields.char('Identification No', size=32),
138         'otherid': fields.char('Other Id', size=64),
139         'gender': fields.selection([('male', 'Male'),('female', 'Female')], 'Gender'),
140         'marital': fields.selection([('single', 'Single'), ('married', 'Married'), ('widower', 'Widower'), ('divorced', 'Divorced')], 'Marital Status'),
141         'department_id':fields.many2one('hr.department', 'Department'),
142         'address_id': fields.many2one('res.partner.address', 'Working Address'),
143         'address_home_id': fields.many2one('res.partner.address', 'Home Address'),
144         'partner_id': fields.related('address_home_id', 'partner_id', type='many2one', relation='res.partner', readonly=True, help="Partner that is related to the current employee. Accounting transaction will be written on this partner belongs to employee."),
145         'bank_account_id':fields.many2one('res.partner.bank', 'Bank Account Number', domain="[('partner_id','=',partner_id)]", help="Employee bank salary account"),
146         'work_phone': fields.char('Work Phone', size=32, readonly=False),
147         'mobile_phone': fields.char('Work Mobile', size=32, readonly=False),
148         'work_email': fields.char('Work E-mail', size=240),
149         'work_location': fields.char('Office Location', size=32),
150         'notes': fields.text('Notes'),
151         'parent_id': fields.many2one('hr.employee', 'Manager'),
152         'category_ids': fields.many2many('hr.employee.category', 'employee_category_rel', 'emp_id', 'category_id', 'Categories'),
153         'child_ids': fields.one2many('hr.employee', 'parent_id', 'Subordinates'),
154         'resource_id': fields.many2one('resource.resource', 'Resource', ondelete='cascade', required=True),
155         'coach_id': fields.many2one('hr.employee', 'Coach'),
156         'job_id': fields.many2one('hr.job', 'Job'),
157         'photo': fields.binary('Photo'),
158         'passport_id':fields.char('Passport No', size=64),
159         'color': fields.integer('Color Index'),
160         'city': fields.related('address_id', 'city', type='char', string='City'),
161     }
162
163     def unlink(self, cr, uid, ids, context=None):
164         resource_obj = self.pool.get('resource.resource')
165         resource_ids = []
166         for employee in self.browse(cr, uid, ids, context=context):
167             resource = employee.resource_id
168             if resource:
169                 resource_ids.append(resource.id)
170         if resource_ids:
171             resource_obj.unlink(cr, uid, resource_ids, context=context)
172         return super(hr_employee, self).unlink(cr, uid, ids, context=context)
173
174     def onchange_address_id(self, cr, uid, ids, address, context=None):
175         if address:
176             address = self.pool.get('res.partner.address').browse(cr, uid, address, context=context)
177             return {'value': {'work_email': address.email, 'work_phone': address.phone, 'mobile_phone': address.mobile}}
178         return {'value': {}}
179
180     def onchange_company(self, cr, uid, ids, company, context=None):
181         address_id = False
182         if company:
183             company_id = self.pool.get('res.company').browse(cr, uid, company, context=context)
184             address = self.pool.get('res.partner').address_get(cr, uid, [company_id.partner_id.id], ['default'])
185             address_id = address and address['default'] or False
186         return {'value': {'address_id' : address_id}}
187
188     def onchange_department_id(self, cr, uid, ids, department_id, context=None):
189         value = {'parent_id': False}
190         if department_id:
191             department = self.pool.get('hr.department').browse(cr, uid, department_id)
192             value['parent_id'] = department.manager_id.id
193         return {'value': value}
194
195     def onchange_user(self, cr, uid, ids, user_id, context=None):
196         work_email = False
197         if user_id:
198             work_email = self.pool.get('res.users').browse(cr, uid, user_id, context=context).user_email
199         return {'value': {'work_email' : work_email}}
200
201     def _get_photo(self, cr, uid, context=None):
202         photo_path = addons.get_module_resource('hr','images','photo.png')
203         return open(photo_path, 'rb').read().encode('base64')
204
205     _defaults = {
206         'active': 1,
207         'photo': _get_photo,
208         'marital': 'single',
209         'color': 0,
210     }
211
212     def _check_recursion(self, cr, uid, ids, context=None):
213         level = 100
214         while len(ids):
215             cr.execute('SELECT DISTINCT parent_id FROM hr_employee WHERE id IN %s AND parent_id!=id',(tuple(ids),))
216             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
217             if not level:
218                 return False
219             level -= 1
220         return True
221
222     _constraints = [
223         (_check_recursion, 'Error ! You cannot create recursive Hierarchy of Employees.', ['parent_id']),
224     ]
225
226 hr_employee()
227
228 class hr_department(osv.osv):
229     _description = "Department"
230     _inherit = 'hr.department'
231     _columns = {
232         'manager_id': fields.many2one('hr.employee', 'Manager'),
233         'member_ids': fields.one2many('hr.employee', 'department_id', 'Members', readonly=True),
234     }
235
236 hr_department()
237
238
239 class res_users(osv.osv):
240     _name = 'res.users'
241     _inherit = 'res.users'
242
243     def create(self, cr, uid, data, context=None):
244         user_id = super(res_users, self).create(cr, uid, data, context=context)
245         
246         # add shortcut unless 'noshortcut' is True in context
247         if not(context and context.get('noshortcut', False)):
248             data_obj = self.pool.get('ir.model.data')
249             try:
250                 data_id = data_obj._get_id(cr, uid, 'hr', 'ir_ui_view_sc_employee')
251                 view_id  = data_obj.browse(cr, uid, data_id, context=context).res_id
252                 self.pool.get('ir.ui.view_sc').copy(cr, uid, view_id, default = {
253                                             'user_id': user_id}, context=context)
254             except:
255                 # Tolerate a missing shortcut. See product/product.py for similar code.
256                 logging.getLogger('orm').debug('Skipped meetings shortcut for user "%s"', data.get('name','<new'))
257         
258         return user_id
259
260 res_users()
261
262
263 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: