[REM] all: modules: removed all remaining references to res.roles, replaced by specif...
[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 os
23
24 from osv import fields, osv
25 import tools
26 from tools.translate import _
27
28 class hr_employee_category(osv.osv):
29
30     def name_get(self, cr, uid, ids, context=None):
31         if not len(ids):
32             return []
33         reads = self.read(cr, uid, ids, ['name','parent_id'], 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):
43         res = self.name_get(cr, uid, ids, 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, method=True, 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     }
54
55     def _check_recursion(self, cr, uid, ids, context=None):
56         level = 100
57         while len(ids):
58             cr.execute('select distinct parent_id from hr_employee_category where id IN %s', (tuple(ids), ))
59             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
60             if not level:
61                 return False
62             level -= 1
63         return True
64
65     _constraints = [
66         (_check_recursion, 'Error ! You cannot create recursive Categories.', ['parent_id'])
67     ]
68
69 hr_employee_category()
70
71 class hr_employee_marital_status(osv.osv):
72     _name = "hr.employee.marital.status"
73     _description = "Employee Marital Status"
74     _columns = {
75         'name': fields.char('Marital Status', size=32, required=True),
76         'description': fields.text('Status Description'),
77     }
78
79 hr_employee_marital_status()
80
81 class hr_job(osv.osv):
82
83     def _no_of_employee(self, cr, uid, ids, name, args, context=None):
84         res = {}
85         for emp in self.browse(cr, uid, ids):
86             res[emp.id] = len(emp.employee_ids or [])
87         return res
88
89     _name = "hr.job"
90     _description = "Job Description"
91     _columns = {
92         'name': fields.char('Job Name', size=128, required=True, select=True),
93         'expected_employees': fields.integer('Expected Employees', help='Required number of Employees'),
94         'no_of_employee': fields.function(_no_of_employee, method=True, string='No of Employees', type='integer', help='Number of Employees selected'),
95         'employee_ids': fields.one2many('hr.employee', 'job_id', 'Employees'),
96         'description': fields.text('Job Description'),
97         'requirements': fields.text('Requirements'),
98         'department_id': fields.many2one('hr.department', 'Department'),
99         'company_id': fields.many2one('res.company', 'Company'),
100         'state': fields.selection([('open', 'In Position'),('old', 'Old'),('recruit', 'In Recruitement')], 'State', readonly=True, required=True),
101     }
102     _defaults = {
103         'expected_employees': 1,
104         'company_id': lambda self,cr,uid,c: self.pool.get('res.company')._company_default_get(cr, uid, 'hr.job', context=c),
105         'state': 'open'
106     }
107
108     def job_old(self, cr, uid, ids, *args):
109         self.write(cr, uid, ids, {'state': 'old'})
110         return True
111
112     def job_recruitement(self, cr, uid, ids, *args):
113         self.write(cr, uid, ids, {'state': 'recruit'})
114         return True
115
116     def job_open(self, cr, uid, ids, *args):
117         self.write(cr, uid, ids, {'state': 'open'})
118         return True
119
120 hr_job()
121
122 class hr_employee(osv.osv):
123     _name = "hr.employee"
124     _description = "Employee"
125     _inherits = {'resource.resource': "resource_id"}
126     _columns = {
127         'country_id': fields.many2one('res.country', 'Nationality'),
128         'birthday': fields.date("Date of Birth"),
129         'ssnid': fields.char('SSN No', size=32, help='Social Security Number'),
130         'sinid': fields.char('SIN No', size=32, help="Social Insurance Number"),
131         'identification_id': fields.char('Identification No', size=32),
132         'gender': fields.selection([('male', 'Male'),('female', 'Female')], 'Gender'),
133         'marital': fields.many2one('hr.employee.marital.status', 'Marital Status'),
134         'department_id':fields.many2one('hr.department', 'Department'),
135         'address_id': fields.many2one('res.partner.address', 'Working Address'),
136         'address_home_id': fields.many2one('res.partner.address', 'Home Address'),
137         '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."),
138         'bank_account_id':fields.many2one('res.partner.bank', 'Bank Account', domain="[('partner_id','=',partner_id)]", help="Employee bank salary account"),
139         'work_phone': fields.related('address_id', 'phone', type='char', size=32, string='Work Phone', readonly=True),
140         'work_email': fields.related('address_id', 'email', type='char', size=240, string='Work E-mail'),
141         'work_location': fields.char('Office Location', size=32),
142         'notes': fields.text('Notes'),
143         'parent_id': fields.related('department_id', 'manager_id', relation='hr.employee', string='Manager', type='many2one', store=True, select=True, readonly=True, help="It is linked with manager of Department"),
144         'category_ids': fields.many2many('hr.employee.category', 'employee_category_rel','category_id','emp_id','Category'),
145         'child_ids': fields.one2many('hr.employee', 'parent_id', 'Subordinates'),
146         'resource_id': fields.many2one('resource.resource', 'Resource', ondelete='cascade', required=True),
147         'coach_id': fields.many2one('hr.employee', 'Coach'),
148         'job_id': fields.many2one('hr.job', 'Job'),
149         'photo': fields.binary('Photo'),
150         'passport_id':fields.char('Passport', size=64)
151     }
152
153     def onchange_company(self, cr, uid, ids, company, context=None):
154         company_id = self.pool.get('res.company').browse(cr,uid,company)
155         for address in company_id.partner_id.address:
156             return {'value': {'address_id': address.id}}
157         return {'value':{'address_id':False}}
158
159     def onchange_department(self, cr, uid, ids, department_id, context=None):
160         if not department_id:
161             return {'value':{'parent_id': False}}
162         manager = self.pool.get('hr.department').browse(cr, uid, department_id).manager_id
163         return {'value': {'parent_id':manager and manager.id or False}}
164
165     def onchange_user(self, cr, uid, ids, user_id, context=None):
166         if not user_id:
167             return {'value':{'work_email': False}}
168         mail = self.pool.get('res.users').browse(cr,uid,user_id)
169         return {'value': {'work_email':mail.user_email}}
170
171     def _get_photo(self, cr, uid, context=None):
172         return open(os.path.join(
173             tools.config['addons_path'], 'hr/image', 'photo.png'),
174                     'rb') .read().encode('base64')
175
176     _defaults = {
177         'active': 1,
178         'photo': _get_photo,
179         'address_id': lambda self,cr,uid,c: self.pool.get('res.partner.address').browse(cr, uid, uid, c).partner_id.id
180     }
181
182     def _check_recursion(self, cr, uid, ids, context=None):
183         level = 100
184         while len(ids):
185             cr.execute('SELECT DISTINCT parent_id FROM hr_employee WHERE id IN %s AND parent_id!=id',(tuple(ids),))
186             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
187             if not level:
188                 return False
189             level -= 1
190         return True
191
192     def _check_department_id(self, cr, uid, ids, context=None):
193         for emp in self.browse(cr, uid, ids, context=context):
194             if emp.department_id.manager_id and emp.id == emp.department_id.manager_id.id:
195                 return False
196         return True
197
198     _constraints = [
199         (_check_recursion, 'Error ! You cannot create recursive Hierarchy of Employees.', ['parent_id']),
200         (_check_department_id, 'Error ! You cannot select a department for which the employee is the manager.', ['department_id']),
201     ]
202
203 hr_employee()
204
205 class hr_department(osv.osv):
206     _description = "Department"
207     _inherit = 'hr.department'
208     _columns = {
209         'manager_id': fields.many2one('hr.employee', 'Manager'),
210         'member_ids': fields.one2many('hr.employee', 'department_id', 'Members'),
211     }
212
213 hr_department()
214
215 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: