[MERGE] branch merged with lp:~openerp-dev/openobject-addons/trunk-payroll
[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, method=True, 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     }
52
53     def _check_recursion(self, cr, uid, ids, context=None):
54         level = 100
55         while len(ids):
56             cr.execute('select distinct parent_id from hr_employee_category where id IN %s', (tuple(ids), ))
57             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
58             if not level:
59                 return False
60             level -= 1
61         return True
62
63     _constraints = [
64         (_check_recursion, 'Error ! You cannot create recursive Categories.', ['parent_id'])
65     ]
66
67 hr_employee_category()
68
69 class hr_employee_marital_status(osv.osv):
70     _name = "hr.employee.marital.status"
71     _description = "Employee Marital Status"
72     _columns = {
73         'name': fields.char('Marital Status', size=32, required=True, translate=True),
74         'description': fields.text('Status Description'),
75     }
76
77 hr_employee_marital_status()
78
79 class hr_job(osv.osv):
80
81     def _no_of_employee(self, cr, uid, ids, name, args, context=None):
82         res = {}
83         for job in self.browse(cr, uid, ids, context=context):
84             nb_employees = len(job.employee_ids or [])
85             res[job.id] = {
86                 'no_of_employee': nb_employees,
87                 'expected_employees': nb_employees + job.no_of_recruitment,
88             }
89         return res
90
91     _name = "hr.job"
92     _description = "Job Description"
93     _columns = {
94         'name': fields.char('Job Name', size=128, required=True, select=True),
95         'expected_employees': fields.function(_no_of_employee, method=True, string='Expected Employees', help='Required number of Employees in total for that job.', multi="no_of_employee"),
96         'no_of_employee': fields.function(_no_of_employee, method=True, string="No of Employee", help='Number of employee with that job.', multi="no_of_employee"),
97         'no_of_recruitment': fields.float('Expected in Recruitment'),
98         'employee_ids': fields.one2many('hr.employee', 'job_id', 'Employees'),
99         'description': fields.text('Job Description'),
100         'requirements': fields.text('Requirements'),
101         'department_id': fields.many2one('hr.department', 'Department'),
102         'company_id': fields.many2one('res.company', 'Company'),
103         'state': fields.selection([('open', 'In Position'),('old', 'Old'),('recruit', 'In Recruitement')], 'State', readonly=True, required=True),
104     }
105     _defaults = {
106         'expected_employees': 1,
107         'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'hr.job', context=c),
108         'state': 'open',
109     }
110
111     def on_change_expected_employee(self, cr, uid, ids, no_of_recruitment, no_of_employee, context=None):
112         if context is None:
113             context = {}
114         return {'value': {'expected_employees': no_of_recruitment + no_of_employee}}
115
116     def job_old(self, cr, uid, ids, *args):
117         self.write(cr, uid, ids, {'state': 'old', 'no_of_recruitment': 0})
118         return True
119
120     def job_recruitement(self, cr, uid, ids, *args):
121         for job in self.browse(cr, uid, ids):
122             no_of_recruitment = job.no_of_recruitment == 0 and 1 or job.no_of_recruitment
123             self.write(cr, uid, [job.id], {'state': 'recruit', 'no_of_recruitment': no_of_recruitment})
124         return True
125
126     def job_open(self, cr, uid, ids, *args):
127         self.write(cr, uid, ids, {'state': 'open', 'no_of_recruitment': 0})
128         return True
129
130 hr_job()
131
132 class hr_employee(osv.osv):
133     _name = "hr.employee"
134     _description = "Employee"
135     _inherits = {'resource.resource': "resource_id"}
136     _columns = {
137         'country_id': fields.many2one('res.country', 'Nationality'),
138         'birthday': fields.date("Date of Birth"),
139         'ssnid': fields.char('SSN No', size=32, help='Social Security Number'),
140         'sinid': fields.char('SIN No', size=32, help="Social Insurance Number"),
141         'identification_id': fields.char('Identification No', size=32),
142         'otherid': fields.char('Other Id', size=64),
143         'gender': fields.selection([('male', 'Male'),('female', 'Female')], 'Gender'),
144         'marital': fields.many2one('hr.employee.marital.status', 'Marital Status'),
145         'department_id':fields.many2one('hr.department', 'Department'),
146         'address_id': fields.many2one('res.partner.address', 'Working Address'),
147         'address_home_id': fields.many2one('res.partner.address', 'Home Address'),
148         '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."),
149         'bank_account_id':fields.many2one('res.partner.bank', 'Bank Account Number', domain="[('partner_id','=',partner_id)]", help="Employee bank salary account"),
150         'work_phone': fields.char('Work Phone', size=32, readonly=False),
151         'mobile_phone': fields.char('Work Mobile', size=32, readonly=False),
152         'work_email': fields.char('Work E-mail', size=240),
153         'work_location': fields.char('Office Location', size=32),
154         'notes': fields.text('Notes'),
155         'parent_id': fields.many2one('hr.employee', 'Manager'), 
156         'category_ids': fields.many2many('hr.employee.category', 'employee_category_rel', 'emp_id', 'category_id', 'Category'),
157         'child_ids': fields.one2many('hr.employee', 'parent_id', 'Subordinates'),
158         'resource_id': fields.many2one('resource.resource', 'Resource', ondelete='cascade', required=True),
159         'coach_id': fields.many2one('hr.employee', 'Coach'),
160         'job_id': fields.many2one('hr.job', 'Job'),
161         'photo': fields.binary('Photo'),
162         'passport_id':fields.char('Passport No', size=64)
163     }
164
165     def onchange_address_id(self, cr, uid, ids, address, context=None):
166         if address:
167             address = self.pool.get('res.partner.address').browse(cr, uid, address, context=context)
168             return {'value': {'work_email': address.email, 'work_phone': address.phone, 'mobile_phone': address.mobile}}
169         return {'value': {}}
170
171     def onchange_company(self, cr, uid, ids, company, context=None):
172         address_id = False
173         if company:
174             company_id = self.pool.get('res.company').browse(cr, uid, company, context=context)
175             address = self.pool.get('res.partner').address_get(cr, uid, [company_id.partner_id.id], ['default'])
176             address_id = address and address['default'] or False
177         return {'value': {'address_id' : address_id}}
178
179     def onchange_department_id(self, cr, uid, ids, department_id, context=None):
180         value = {'parent_id': False}
181         if department_id:
182             department = self.pool.get('hr.department').browse(cr, uid, department_id)
183             value['parent_id'] = department.manager_id.id
184         return {'value': value}
185
186     def onchange_user(self, cr, uid, ids, user_id, context=None):
187         work_email = False
188         if user_id:
189             work_email = self.pool.get('res.users').browse(cr, uid, user_id, context=context).user_email
190         return {'value': {'work_email' : work_email}}
191
192     def _get_photo(self, cr, uid, context=None):
193         photo_path = addons.get_module_resource('hr','images','photo.png')
194         return open(photo_path, 'rb').read().encode('base64')
195
196     _defaults = {
197         'active': 1,
198         'photo': _get_photo,
199         'address_id': lambda self, cr, uid, c: self.pool.get('res.users').browse(cr, uid, uid, c).address_id.id
200     }
201
202     def _check_recursion(self, cr, uid, ids, context=None):
203         level = 100
204         while len(ids):
205             cr.execute('SELECT DISTINCT parent_id FROM hr_employee WHERE id IN %s AND parent_id!=id',(tuple(ids),))
206             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
207             if not level:
208                 return False
209             level -= 1
210         return True
211
212     _constraints = [
213         (_check_recursion, 'Error ! You cannot create recursive Hierarchy of Employees.', ['parent_id']),
214     ]
215
216 hr_employee()
217
218 class hr_department(osv.osv):
219     _description = "Department"
220     _inherit = 'hr.department'
221     _columns = {
222         'manager_id': fields.many2one('hr.employee', 'Manager'),
223         'member_ids': fields.one2many('hr.employee', 'department_id', 'Members', readonly=True),
224     }
225
226 hr_department()
227
228
229 class res_users(osv.osv):
230     _name = 'res.users'
231     _inherit = 'res.users'
232
233     def create(self, cr, uid, data, context=None):
234         user_id = super(res_users, self).create(cr, uid, data, context=context)
235         data_obj = self.pool.get('ir.model.data')
236         try:
237             data_id = data_obj._get_id(cr, uid, 'hr', 'ir_ui_view_sc_employee')
238             view_id  = data_obj.browse(cr, uid, data_id, context=context).res_id
239             self.pool.get('ir.ui.view_sc').copy(cr, uid, view_id, default = {
240                                         'user_id': user_id}, context=context)
241         except:
242             # Tolerate a missing shortcut. See product/product.py for similar code.
243             logging.getLogger('orm').debug('Skipped meetings shortcut for user "%s"', data.get('name','<new'))
244             
245         return user_id
246
247 res_users()
248
249
250 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: