[IMP] hr: improve English in tooltips, cleanup menus and form view of hr.job
[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 io
24 import logging
25 from osv import fields, osv
26 from PIL import Image
27 import StringIO
28
29 class hr_employee_category(osv.osv):
30
31     def name_get(self, cr, uid, ids, context=None):
32         if not ids:
33             return []
34         reads = self.read(cr, uid, ids, ['name','parent_id'], context=context)
35         res = []
36         for record in reads:
37             name = record['name']
38             if record['parent_id']:
39                 name = record['parent_id'][1]+' / '+name
40             res.append((record['id'], name))
41         return res
42
43     def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, context=None):
44         res = self.name_get(cr, uid, ids, context=context)
45         return dict(res)
46
47     _name = "hr.employee.category"
48     _description = "Employee Category"
49     _columns = {
50         'name': fields.char("Category", size=64, required=True),
51         'complete_name': fields.function(_name_get_fnc, type="char", string='Name'),
52         'parent_id': fields.many2one('hr.employee.category', 'Parent Category', select=True),
53         'child_ids': fields.one2many('hr.employee.category', 'parent_id', 'Child Categories'),
54         'employee_ids': fields.many2many('hr.employee', 'employee_category_rel', 'category_id', 'emp_id', 'Employees'),
55     }
56
57     def _check_recursion(self, cr, uid, ids, context=None):
58         level = 100
59         while len(ids):
60             cr.execute('select distinct parent_id from hr_employee_category where id IN %s', (tuple(ids), ))
61             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
62             if not level:
63                 return False
64             level -= 1
65         return True
66
67     _constraints = [
68         (_check_recursion, 'Error ! You cannot create recursive Categories.', ['parent_id'])
69     ]
70
71 hr_employee_category()
72
73 class hr_job(osv.osv):
74
75     def _no_of_employee(self, cr, uid, ids, name, args, context=None):
76         res = {}
77         for job in self.browse(cr, uid, ids, context=context):
78             nb_employees = len(job.employee_ids or [])
79             res[job.id] = {
80                 'no_of_employee': nb_employees,
81                 'expected_employees': nb_employees + job.no_of_recruitment,
82             }
83         return res
84
85     def _get_job_position(self, cr, uid, ids, context=None):
86         res = []
87         for employee in self.pool.get('hr.employee').browse(cr, uid, ids, context=context):
88             if employee.job_id:
89                 res.append(employee.job_id.id)
90         return res
91
92     _name = "hr.job"
93     _description = "Job Description"
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'),
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 onchange_photo(self, cr, uid, ids, value, context=None):
152         if not value:
153             return {'value': {'photo_big': value, 'photo': value} }
154         return {'value': {'photo_big': self._photo_resize(cr, uid, value, 540, 450, context=context), 'photo': self._photo_resize(cr, uid, value, context=context)} }
155     
156     def _set_photo(self, cr, uid, id, name, value, args, context=None):
157         if not value:
158             vals = {'photo_big': value}
159         else:
160             vals = {'photo_big': self._photo_resize(cr, uid, value, 540, 450, context=context)}
161         return self.write(cr, uid, [id], vals, context=context)
162     
163     def _photo_resize(self, cr, uid, photo, heigth=180, width=150, context=None):
164         image_stream = io.BytesIO(photo.decode('base64'))
165         img = Image.open(image_stream)
166         img.thumbnail((heigth, width), Image.ANTIALIAS)
167         img_stream = StringIO.StringIO()
168         img.save(img_stream, "JPEG")
169         return img_stream.getvalue().encode('base64')
170     
171     def _get_photo(self, cr, uid, ids, name, args, context=None):
172         result = dict.fromkeys(ids, False)
173         for hr_empl in self.browse(cr, uid, ids, context=context):
174             if hr_empl.photo_big:
175                 result[hr_empl.id] = self._photo_resize(cr, uid, hr_empl.photo_big, context=context)
176         return result
177     
178     _columns = {
179         'country_id': fields.many2one('res.country', 'Nationality'),
180         'birthday': fields.date("Date of Birth"),
181         'ssnid': fields.char('SSN No', size=32, help='Social Security Number'),
182         'sinid': fields.char('SIN No', size=32, help="Social Insurance Number"),
183         'identification_id': fields.char('Identification No', size=32),
184         'otherid': fields.char('Other Id', size=64),
185         'gender': fields.selection([('male', 'Male'),('female', 'Female')], 'Gender'),
186         'marital': fields.selection([('single', 'Single'), ('married', 'Married'), ('widower', 'Widower'), ('divorced', 'Divorced')], 'Marital Status'),
187         'department_id':fields.many2one('hr.department', 'Department'),
188         'address_id': fields.many2one('res.partner', 'Working Address'),
189         'address_home_id': fields.many2one('res.partner', 'Home Address'),
190         'bank_account_id':fields.many2one('res.partner.bank', 'Bank Account Number', domain="[('partner_id','=',address_home_id)]", help="Employee bank salary account"),
191         'work_phone': fields.char('Work Phone', size=32, readonly=False),
192         'mobile_phone': fields.char('Work Mobile', size=32, readonly=False),
193         'work_email': fields.char('Work E-mail', size=240),
194         'work_location': fields.char('Office Location', size=32),
195         'notes': fields.text('Notes'),
196         'parent_id': fields.many2one('hr.employee', 'Manager'),
197         'category_ids': fields.many2many('hr.employee.category', 'employee_category_rel', 'emp_id', 'category_id', 'Categories'),
198         'child_ids': fields.one2many('hr.employee', 'parent_id', 'Subordinates'),
199         'resource_id': fields.many2one('resource.resource', 'Resource', ondelete='cascade', required=True),
200         'coach_id': fields.many2one('hr.employee', 'Coach'),
201         'job_id': fields.many2one('hr.job', 'Job'),
202         'photo_big': fields.binary('Big-sized employee photo', help="This field holds the photo of the employee. The photo field is used as an interface to access this field. The image is base64 encoded, and PIL-supported. Full-sized photo are however resized to 540x450 px."),
203         'photo': fields.function(_get_photo, fnct_inv=_set_photo, string='Employee photo', type="binary",
204             store = {
205                 'hr.employee': (lambda self, cr, uid, ids, c={}: ids, ['photo_big'], 10),
206             }, help="Image used as photo for the employee. It is automatically resized as a 180x150 px image. A larger photo is stored inside the photo_big field."),
207         'passport_id':fields.char('Passport No', size=64),
208         'color': fields.integer('Color Index'),
209         'city': fields.related('address_id', 'city', type='char', string='City'),
210         'login': fields.related('user_id', 'login', type='char', string='Login', readonly=1),
211     }
212
213     def unlink(self, cr, uid, ids, context=None):
214         resource_obj = self.pool.get('resource.resource')
215         resource_ids = []
216         for employee in self.browse(cr, uid, ids, context=context):
217             resource = employee.resource_id
218             if resource:
219                 resource_ids.append(resource.id)
220         if resource_ids:
221             resource_obj.unlink(cr, uid, resource_ids, context=context)
222         return super(hr_employee, self).unlink(cr, uid, ids, context=context)
223
224     def onchange_address_id(self, cr, uid, ids, address, context=None):
225         if address:
226             address = self.pool.get('res.partner').browse(cr, uid, address, context=context)
227             return {'value': {'work_email': address.email, 'work_phone': address.phone, 'mobile_phone': address.mobile}}
228         return {'value': {}}
229
230     def onchange_company(self, cr, uid, ids, company, context=None):
231         address_id = False
232         if company:
233             company_id = self.pool.get('res.company').browse(cr, uid, company, context=context)
234             address = self.pool.get('res.partner').address_get(cr, uid, [company_id.partner_id.id], ['default'])
235             address_id = address and address['default'] or False
236         return {'value': {'address_id' : address_id}}
237
238     def onchange_department_id(self, cr, uid, ids, department_id, context=None):
239         value = {'parent_id': False}
240         if department_id:
241             department = self.pool.get('hr.department').browse(cr, uid, department_id)
242             value['parent_id'] = department.manager_id.id
243         return {'value': value}
244
245     def onchange_user(self, cr, uid, ids, user_id, context=None):
246         work_email = False
247         if user_id:
248             work_email = self.pool.get('res.users').browse(cr, uid, user_id, context=context).user_email
249         return {'value': {'work_email' : work_email}}
250
251     def _get_photo(self, cr, uid, context=None):
252         photo_path = addons.get_module_resource('hr','images','photo.png')
253         return self._photo_resize(cr, uid, open(photo_path, 'rb').read().encode('base64'), context=context)
254
255     _defaults = {
256         'active': 1,
257         'photo': _get_photo,
258         'marital': 'single',
259         'color': 0,
260     }
261
262     def _check_recursion(self, cr, uid, ids, context=None):
263         level = 100
264         while len(ids):
265             cr.execute('SELECT DISTINCT parent_id FROM hr_employee WHERE id IN %s AND parent_id!=id',(tuple(ids),))
266             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
267             if not level:
268                 return False
269             level -= 1
270         return True
271
272     _constraints = [
273         (_check_recursion, 'Error ! You cannot create recursive Hierarchy of Employees.', ['parent_id']),
274     ]
275
276 hr_employee()
277
278 class hr_department(osv.osv):
279     _description = "Department"
280     _inherit = 'hr.department'
281     _columns = {
282         'manager_id': fields.many2one('hr.employee', 'Manager'),
283         'member_ids': fields.one2many('hr.employee', 'department_id', 'Members', readonly=True),
284     }
285
286 hr_department()
287
288
289 class res_users(osv.osv):
290     _name = 'res.users'
291     _inherit = 'res.users'
292
293     def create(self, cr, uid, data, context=None):
294         user_id = super(res_users, self).create(cr, uid, data, context=context)
295
296         # add shortcut unless 'noshortcut' is True in context
297         if not(context and context.get('noshortcut', False)):
298             data_obj = self.pool.get('ir.model.data')
299             try:
300                 data_id = data_obj._get_id(cr, uid, 'hr', 'ir_ui_view_sc_employee')
301                 view_id  = data_obj.browse(cr, uid, data_id, context=context).res_id
302                 self.pool.get('ir.ui.view_sc').copy(cr, uid, view_id, default = {
303                                             'user_id': user_id}, context=context)
304             except:
305                 # Tolerate a missing shortcut. See product/product.py for similar code.
306                 logging.getLogger('orm').debug('Skipped meetings shortcut for user "%s"', data.get('name','<new'))
307
308         return user_id
309
310 res_users()
311
312
313 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: