Employee create time, not have a default email address.
[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 import addons
23 import logging
24 from osv import fields, osv
25 import tools
26 _logger = logging.getLogger(__name__)
27
28 class hr_employee_category(osv.osv):
29
30     def name_get(self, cr, uid, ids, context=None):
31         if not ids:
32             return []
33         reads = self.read(cr, uid, ids, ['name','parent_id'], context=context)
34         res = []
35         for record in reads:
36             name = record['name']
37             if record['parent_id']:
38                 name = record['parent_id'][1]+' / '+name
39             res.append((record['id'], name))
40         return res
41
42     def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, context=None):
43         res = self.name_get(cr, uid, ids, context=context)
44         return dict(res)
45
46     _name = "hr.employee.category"
47     _description = "Employee Category"
48     _columns = {
49         'name': fields.char("Category", size=64, required=True),
50         'complete_name': fields.function(_name_get_fnc, type="char", string='Name'),
51         'parent_id': fields.many2one('hr.employee.category', 'Parent Category', select=True),
52         'child_ids': fields.one2many('hr.employee.category', 'parent_id', 'Child Categories'),
53         'employee_ids': fields.many2many('hr.employee', 'employee_category_rel', 'category_id', 'emp_id', 'Employees'),
54     }
55
56     def _check_recursion(self, cr, uid, ids, context=None):
57         level = 100
58         while len(ids):
59             cr.execute('select distinct parent_id from hr_employee_category where id IN %s', (tuple(ids), ))
60             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
61             if not level:
62                 return False
63             level -= 1
64         return True
65
66     _constraints = [
67         (_check_recursion, 'Error! You cannot create recursive Categories.', ['parent_id'])
68     ]
69
70 hr_employee_category()
71
72 class hr_job(osv.osv):
73
74     def _no_of_employee(self, cr, uid, ids, name, args, context=None):
75         res = {}
76         for job in self.browse(cr, uid, ids, context=context):
77             nb_employees = len(job.employee_ids or [])
78             res[job.id] = {
79                 'no_of_employee': nb_employees,
80                 'expected_employees': nb_employees + job.no_of_recruitment,
81             }
82         return res
83
84     def _get_job_position(self, cr, uid, ids, context=None):
85         res = []
86         for employee in self.pool.get('hr.employee').browse(cr, uid, ids, context=context):
87             if employee.job_id:
88                 res.append(employee.job_id.id)
89         return res
90
91     _name = "hr.job"
92     _description = "Job Description"
93     _inherit = ['mail.thread']
94     _columns = {
95         'name': fields.char('Job Name', size=128, required=True, select=True),
96         'expected_employees': fields.function(_no_of_employee, string='Total Employees',
97             help='Expected number of employees for this job position after new recruitment.',
98             store = {
99                 'hr.job': (lambda self,cr,uid,ids,c=None: ids, ['no_of_recruitment'], 10),
100                 'hr.employee': (_get_job_position, ['job_id'], 10),
101             },
102             multi='no_of_employee'),
103         'no_of_employee': fields.function(_no_of_employee, string="Number of Employees",
104             help='Number of employees currently occupying this job position.',
105             store = {
106                 'hr.employee': (_get_job_position, ['job_id'], 10),
107             },
108             multi='no_of_employee'),
109         'no_of_recruitment': fields.float('Expected in Recruitment', help='Number of new employees you expect to recruit.'),
110         'employee_ids': fields.one2many('hr.employee', 'job_id', 'Employees', groups='base.group_user'),
111         'description': fields.text('Job Description'),
112         'requirements': fields.text('Requirements'),
113         'department_id': fields.many2one('hr.department', 'Department'),
114         'company_id': fields.many2one('res.company', 'Company'),
115         'state': fields.selection([('open', 'In Position'), ('recruit', 'In Recruitement')], 'Status', readonly=True, required=True,
116             help="By default 'In position', set it to 'In Recruitment' if recruitment process is going on for this job position."),
117     }
118     _defaults = {
119         'expected_employees': 1,
120         'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'hr.job', context=c),
121         'state': 'open',
122     }
123
124     _sql_constraints = [
125         ('name_company_uniq', 'unique(name, company_id)', 'The name of the job position must be unique per company!'),
126     ]
127
128
129     def on_change_expected_employee(self, cr, uid, ids, no_of_recruitment, no_of_employee, context=None):
130         if context is None:
131             context = {}
132         return {'value': {'expected_employees': no_of_recruitment + no_of_employee}}
133
134     def job_recruitement(self, cr, uid, ids, *args):
135         for job in self.browse(cr, uid, ids):
136             no_of_recruitment = job.no_of_recruitment == 0 and 1 or job.no_of_recruitment
137             self.write(cr, uid, [job.id], {'state': 'recruit', 'no_of_recruitment': no_of_recruitment})
138         return True
139
140     def job_open(self, cr, uid, ids, *args):
141         self.write(cr, uid, ids, {'state': 'open', 'no_of_recruitment': 0})
142         return True
143
144 hr_job()
145
146 class hr_employee(osv.osv):
147     _name = "hr.employee"
148     _description = "Employee"
149     _inherits = {'resource.resource': "resource_id"}
150
151     def _get_image(self, cr, uid, ids, name, args, context=None):
152         result = dict.fromkeys(ids, False)
153         for obj in self.browse(cr, uid, ids, context=context):
154             result[obj.id] = tools.image_get_resized_images(obj.image)
155         return result
156     
157     def _set_image(self, cr, uid, id, name, value, args, context=None):
158         return self.write(cr, uid, [id], {'image': tools.image_resize_image_big(value)}, context=context)
159     
160     _columns = {
161         'country_id': fields.many2one('res.country', 'Nationality'),
162         'birthday': fields.date("Date of Birth"),
163         'ssnid': fields.char('SSN No', size=32, help='Social Security Number'),
164         'sinid': fields.char('SIN No', size=32, help="Social Insurance Number"),
165         'identification_id': fields.char('Identification No', size=32),
166         'otherid': fields.char('Other Id', size=64),
167         'gender': fields.selection([('male', 'Male'),('female', 'Female')], 'Gender'),
168         'marital': fields.selection([('single', 'Single'), ('married', 'Married'), ('widower', 'Widower'), ('divorced', 'Divorced')], 'Marital Status'),
169         'department_id':fields.many2one('hr.department', 'Department'),
170         'address_id': fields.many2one('res.partner', 'Working Address'),
171         'address_home_id': fields.many2one('res.partner', 'Home Address'),
172         'bank_account_id':fields.many2one('res.partner.bank', 'Bank Account Number', domain="[('partner_id','=',address_home_id)]", help="Employee bank salary account"),
173         'work_phone': fields.char('Work Phone', size=32, readonly=False),
174         'mobile_phone': fields.char('Work Mobile', size=32, readonly=False),
175         'work_email': fields.char('Work Email', size=240),
176         'work_location': fields.char('Office Location', size=32),
177         'notes': fields.text('Notes'),
178         'parent_id': fields.many2one('hr.employee', 'Manager'),
179         'category_ids': fields.many2many('hr.employee.category', 'employee_category_rel', 'emp_id', 'category_id', 'Tags'),
180         'child_ids': fields.one2many('hr.employee', 'parent_id', 'Subordinates'),
181         'resource_id': fields.many2one('resource.resource', 'Resource', ondelete='cascade', required=True),
182         'coach_id': fields.many2one('hr.employee', 'Coach'),
183         'job_id': fields.many2one('hr.job', 'Job'),
184         # image: all image fields are base64 encoded and PIL-supported
185         'image': fields.binary("Photo",
186             help="This field holds the image used as photo for the employee, limited to 1024x1024px."),
187         'image_medium': fields.function(_get_image, fnct_inv=_set_image,
188             string="Medium-sized photo", type="binary", multi="_get_image",
189             store = {
190                 'hr.employee': (lambda self, cr, uid, ids, c={}: ids, ['image'], 10),
191             },
192             help="Medium-sized photo of the employee. It is automatically "\
193                  "resized as a 128x128px image, with aspect ratio preserved. "\
194                  "Use this field in form views or some kanban views."),
195         'image_small': fields.function(_get_image, fnct_inv=_set_image,
196             string="Smal-sized photo", type="binary", multi="_get_image",
197             store = {
198                 'hr.employee': (lambda self, cr, uid, ids, c={}: ids, ['image'], 10),
199             },
200             help="Small-sized photo of the employee. It is automatically "\
201                  "resized as a 64x64px image, with aspect ratio preserved. "\
202                  "Use this field anywhere a small image is required."),
203         'passport_id':fields.char('Passport No', size=64),
204         'color': fields.integer('Color Index'),
205         'city': fields.related('address_id', 'city', type='char', string='City'),
206         'login': fields.related('user_id', 'login', type='char', string='Login', readonly=1),
207         'last_login': fields.related('user_id', 'date', type='datetime', string='Latest Connection', readonly=1),
208     }
209
210     def create(self, cr, uid, data, context=None):
211         employee_id = super(hr_employee, self).create(cr, uid, data, context=context)
212         try:
213             (model, mail_group_id) = self.pool.get('ir.model.data').get_object_reference(cr, uid, 'mail', 'group_all_employees')
214             employee = self.browse(cr, uid, employee_id, context=context)
215             self.pool.get('mail.group').message_post(cr, uid, [mail_group_id], body='Welcome to %s! Please help them take the first steps with OpenERP!' % (employee.name), context=context)
216         except:
217             pass # group deleted: do not push a message
218         return employee_id
219
220     def unlink(self, cr, uid, ids, context=None):
221         resource_obj = self.pool.get('resource.resource')
222         resource_ids = []
223         for employee in self.browse(cr, uid, ids, context=context):
224             resource = employee.resource_id
225             if resource:
226                 resource_ids.append(resource.id)
227         if resource_ids:
228             resource_obj.unlink(cr, uid, resource_ids, context=context)
229         return super(hr_employee, self).unlink(cr, uid, ids, context=context)
230
231     def onchange_address_id(self, cr, uid, ids, address, context=None):
232         if address:
233             address = self.pool.get('res.partner').browse(cr, uid, address, context=context)
234             return {'value': {'work_phone': address.phone, 'mobile_phone': address.mobile}}
235         return {'value': {}}
236
237     def onchange_company(self, cr, uid, ids, company, context=None):
238         address_id = False
239         if company:
240             company_id = self.pool.get('res.company').browse(cr, uid, company, context=context)
241             address = self.pool.get('res.partner').address_get(cr, uid, [company_id.partner_id.id], ['default'])
242             address_id = address and address['default'] or False
243         return {'value': {'address_id' : address_id}}
244
245     def onchange_department_id(self, cr, uid, ids, department_id, context=None):
246         value = {'parent_id': False}
247         if department_id:
248             department = self.pool.get('hr.department').browse(cr, uid, department_id)
249             value['parent_id'] = department.manager_id.id
250         return {'value': value}
251
252     def onchange_user(self, cr, uid, ids, user_id, context=None):
253         work_email = False
254         if user_id:
255             work_email = self.pool.get('res.users').browse(cr, uid, user_id, context=context).email
256         return {'value': {'work_email' : work_email}}
257
258     def _get_default_image(self, cr, uid, context=None):
259         image_path = addons.get_module_resource('hr', 'static/src/img', 'default_image.png')
260         return tools.image_resize_image_big(open(image_path, 'rb').read().encode('base64'))
261
262     _defaults = {
263         'active': 1,
264         'image': _get_default_image,
265         'color': 0,
266     }
267
268     def _check_recursion(self, cr, uid, ids, context=None):
269         level = 100
270         while len(ids):
271             cr.execute('SELECT DISTINCT parent_id FROM hr_employee WHERE id IN %s AND parent_id!=id',(tuple(ids),))
272             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
273             if not level:
274                 return False
275             level -= 1
276         return True
277
278     _constraints = [
279         (_check_recursion, 'Error! You cannot create recursive hierarchy of Employee(s).', ['parent_id']),
280     ]
281
282 hr_employee()
283
284 class hr_department(osv.osv):
285     _description = "Department"
286     _inherit = 'hr.department'
287     _columns = {
288         'manager_id': fields.many2one('hr.employee', 'Manager'),
289         'member_ids': fields.one2many('hr.employee', 'department_id', 'Members', readonly=True),
290     }
291
292     def copy(self, cr, uid, ids, default=None, context=None):
293         if default is None:
294             default = {}
295         default = default.copy()
296         default['member_ids'] = []
297         return super(hr_department, self).copy(cr, uid, ids, default, context=context)
298
299 class res_users(osv.osv):
300     _name = 'res.users'
301     _inherit = 'res.users'
302
303     def create(self, cr, uid, data, context=None):
304         user_id = super(res_users, self).create(cr, uid, data, context=context)
305
306         # add shortcut unless 'noshortcut' is True in context
307         if not(context and context.get('noshortcut', False)):
308             data_obj = self.pool.get('ir.model.data')
309             try:
310                 data_id = data_obj._get_id(cr, uid, 'hr', 'ir_ui_view_sc_employee')
311                 view_id  = data_obj.browse(cr, uid, data_id, context=context).res_id
312                 self.pool.get('ir.ui.view_sc').copy(cr, uid, view_id, default = {
313                                             'user_id': user_id}, context=context)
314             except:
315                 # Tolerate a missing shortcut. See product/product.py for similar code.
316                 _logger.debug('Skipped meetings shortcut for user "%s".', data.get('name','<new'))
317
318         return user_id
319
320     _columns = {
321         'employee_ids': fields.one2many('hr.employee', 'user_id', 'Related employees'),
322         }
323
324 res_users()
325
326
327 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: