[FIX] I have improve the error message in procurement
[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='Expected Employees', help='Required number of employees in total for that job.',
97             store = {
98                 'hr.job': (lambda self,cr,uid,ids,c=None: ids, ['no_of_recruitment'], 10),
99                 'hr.employee': (_get_job_position, ['job_id'], 10),
100             },
101             multi='no_of_employee'),
102         'no_of_employee': fields.function(_no_of_employee, string="Number of Employees", help='Number of employees with that job.',
103             store = {
104                 'hr.employee': (_get_job_position, ['job_id'], 10),
105             },
106             multi='no_of_employee'),
107         'no_of_recruitment': fields.float('Expected in Recruitment'),
108         'employee_ids': fields.one2many('hr.employee', 'job_id', 'Employees'),
109         'description': fields.text('Job Description'),
110         'requirements': fields.text('Requirements'),
111         'department_id': fields.many2one('hr.department', 'Department'),
112         'company_id': fields.many2one('res.company', 'Company'),
113         'state': fields.selection([('open', 'In Position'),('recruit', 'In Recruitement'),('old', 'Old')], 'Status', readonly=True, required=True),
114     }
115     _defaults = {
116         'expected_employees': 1,
117         'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'hr.job', context=c),
118         'state': 'open',
119     }
120
121     _sql_constraints = [
122         ('name_company_uniq', 'unique(name, company_id)', 'The name of the job position must be unique per company!'),
123     ]
124
125
126     def on_change_expected_employee(self, cr, uid, ids, no_of_recruitment, no_of_employee, context=None):
127         if context is None:
128             context = {}
129         return {'value': {'expected_employees': no_of_recruitment + no_of_employee}}
130
131     def job_old(self, cr, uid, ids, *args):
132         self.write(cr, uid, ids, {'state': 'old', 'no_of_recruitment': 0})
133         return True
134
135     def job_recruitement(self, cr, uid, ids, *args):
136         for job in self.browse(cr, uid, ids):
137             no_of_recruitment = job.no_of_recruitment == 0 and 1 or job.no_of_recruitment
138             self.write(cr, uid, [job.id], {'state': 'recruit', 'no_of_recruitment': no_of_recruitment})
139         return True
140
141     def job_open(self, cr, uid, ids, *args):
142         self.write(cr, uid, ids, {'state': 'open', 'no_of_recruitment': 0})
143         return True
144
145 hr_job()
146
147 class hr_employee(osv.osv):
148     _name = "hr.employee"
149     _description = "Employee"
150     _inherits = {'resource.resource': "resource_id"}
151
152     def onchange_photo(self, cr, uid, ids, value, context=None):
153         if not value:
154             return {'value': {'photo_big': value, 'photo': value} }
155         return {'value': {'photo_big': self._photo_resize(cr, uid, value, 540, 450, context=context), 'photo': self._photo_resize(cr, uid, value, context=context)} }
156     
157     def _set_photo(self, cr, uid, id, name, value, args, context=None):
158         if not value:
159             vals = {'photo_big': value}
160         else:
161             vals = {'photo_big': self._photo_resize(cr, uid, value, 540, 450, context=context)}
162         return self.write(cr, uid, [id], vals, context=context)
163     
164     def _photo_resize(self, cr, uid, photo, heigth=180, width=150, context=None):
165         image_stream = io.BytesIO(photo.decode('base64'))
166         img = Image.open(image_stream)
167         img.thumbnail((heigth, width), Image.ANTIALIAS)
168         img_stream = StringIO.StringIO()
169         img.save(img_stream, "JPEG")
170         return img_stream.getvalue().encode('base64')
171     
172     def _get_photo(self, cr, uid, ids, name, args, context=None):
173         result = dict.fromkeys(ids, False)
174         for hr_empl in self.browse(cr, uid, ids, context=context):
175             if hr_empl.photo_big:
176                 result[hr_empl.id] = self._photo_resize(cr, uid, hr_empl.photo_big, context=context)
177         return result
178     
179     _columns = {
180         'country_id': fields.many2one('res.country', 'Nationality'),
181         'birthday': fields.date("Date of Birth"),
182         'ssnid': fields.char('SSN No', size=32, help='Social Security Number'),
183         'sinid': fields.char('SIN No', size=32, help="Social Insurance Number"),
184         'identification_id': fields.char('Identification No', size=32),
185         'otherid': fields.char('Other Id', size=64),
186         'gender': fields.selection([('male', 'Male'),('female', 'Female')], 'Gender'),
187         'marital': fields.selection([('single', 'Single'), ('married', 'Married'), ('widower', 'Widower'), ('divorced', 'Divorced')], 'Marital Status'),
188         'department_id':fields.many2one('hr.department', 'Department'),
189         'address_id': fields.many2one('res.partner', 'Working Address'),
190         'address_home_id': fields.many2one('res.partner', 'Home Address'),
191         'bank_account_id':fields.many2one('res.partner.bank', 'Bank Account Number', domain="[('partner_id','=',address_home_id)]", help="Employee bank salary account"),
192         'work_phone': fields.char('Work Phone', size=32, readonly=False),
193         'mobile_phone': fields.char('Work Mobile', size=32, readonly=False),
194         'work_email': fields.char('Work E-mail', size=240),
195         'work_location': fields.char('Office Location', size=32),
196         'notes': fields.text('Notes'),
197         'parent_id': fields.many2one('hr.employee', 'Manager'),
198         'category_ids': fields.many2many('hr.employee.category', 'employee_category_rel', 'emp_id', 'category_id', 'Categories'),
199         'child_ids': fields.one2many('hr.employee', 'parent_id', 'Subordinates'),
200         'resource_id': fields.many2one('resource.resource', 'Resource', ondelete='cascade', required=True),
201         'coach_id': fields.many2one('hr.employee', 'Coach'),
202         'job_id': fields.many2one('hr.job', 'Job'),
203         '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."),
204         'photo': fields.function(_get_photo, fnct_inv=_set_photo, string='Employee photo', type="binary",
205             store = {
206                 'hr.employee': (lambda self, cr, uid, ids, c={}: ids, ['photo_big'], 10),
207             }, 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."),
208         'passport_id':fields.char('Passport No', size=64),
209         'color': fields.integer('Color Index'),
210         'city': fields.related('address_id', 'city', type='char', string='City'),
211         'login': fields.related('user_id', 'login', type='char', string='Login', readonly=1),
212     }
213
214     def unlink(self, cr, uid, ids, context=None):
215         resource_obj = self.pool.get('resource.resource')
216         resource_ids = []
217         for employee in self.browse(cr, uid, ids, context=context):
218             resource = employee.resource_id
219             if resource:
220                 resource_ids.append(resource.id)
221         if resource_ids:
222             resource_obj.unlink(cr, uid, resource_ids, context=context)
223         return super(hr_employee, self).unlink(cr, uid, ids, context=context)
224
225     def onchange_address_id(self, cr, uid, ids, address, context=None):
226         if address:
227             address = self.pool.get('res.partner').browse(cr, uid, address, context=context)
228             return {'value': {'work_email': address.email, 'work_phone': address.phone, 'mobile_phone': address.mobile}}
229         return {'value': {}}
230
231     def onchange_company(self, cr, uid, ids, company, context=None):
232         address_id = False
233         if company:
234             company_id = self.pool.get('res.company').browse(cr, uid, company, context=context)
235             address = self.pool.get('res.partner').address_get(cr, uid, [company_id.partner_id.id], ['default'])
236             address_id = address and address['default'] or False
237         return {'value': {'address_id' : address_id}}
238
239     def onchange_department_id(self, cr, uid, ids, department_id, context=None):
240         value = {'parent_id': False}
241         if department_id:
242             department = self.pool.get('hr.department').browse(cr, uid, department_id)
243             value['parent_id'] = department.manager_id.id
244         return {'value': value}
245
246     def onchange_user(self, cr, uid, ids, user_id, context=None):
247         work_email = False
248         if user_id:
249             work_email = self.pool.get('res.users').browse(cr, uid, user_id, context=context).user_email
250         return {'value': {'work_email' : work_email}}
251
252     def _get_photo(self, cr, uid, context=None):
253         photo_path = addons.get_module_resource('hr','images','photo.png')
254         return self._photo_resize(cr, uid, open(photo_path, 'rb').read().encode('base64'), context=context)
255
256     _defaults = {
257         'active': 1,
258         'photo': _get_photo,
259         'marital': 'single',
260         'color': 0,
261     }
262
263     def _check_recursion(self, cr, uid, ids, context=None):
264         level = 100
265         while len(ids):
266             cr.execute('SELECT DISTINCT parent_id FROM hr_employee WHERE id IN %s AND parent_id!=id',(tuple(ids),))
267             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
268             if not level:
269                 return False
270             level -= 1
271         return True
272
273     _constraints = [
274         (_check_recursion, 'Error ! You cannot create recursive Hierarchy of Employees.', ['parent_id']),
275     ]
276
277 hr_employee()
278
279 class hr_department(osv.osv):
280     _description = "Department"
281     _inherit = 'hr.department'
282     _columns = {
283         'manager_id': fields.many2one('hr.employee', 'Manager'),
284         'member_ids': fields.one2many('hr.employee', 'department_id', 'Members', readonly=True),
285     }
286
287 hr_department()
288
289
290 class res_users(osv.osv):
291     _name = 'res.users'
292     _inherit = 'res.users'
293
294     def create(self, cr, uid, data, context=None):
295         user_id = super(res_users, self).create(cr, uid, data, context=context)
296
297         # add shortcut unless 'noshortcut' is True in context
298         if not(context and context.get('noshortcut', False)):
299             data_obj = self.pool.get('ir.model.data')
300             try:
301                 data_id = data_obj._get_id(cr, uid, 'hr', 'ir_ui_view_sc_employee')
302                 view_id  = data_obj.browse(cr, uid, data_id, context=context).res_id
303                 self.pool.get('ir.ui.view_sc').copy(cr, uid, view_id, default = {
304                                             'user_id': user_id}, context=context)
305             except:
306                 # Tolerate a missing shortcut. See product/product.py for similar code.
307                 logging.getLogger('orm').debug('Skipped meetings shortcut for user "%s"', data.get('name','<new'))
308
309         return user_id
310
311 res_users()
312
313
314 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: