[MERGE]: merging from same branch
[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 mx import DateTime
23 import time
24 import math
25
26 from osv import fields, osv
27 from tools.translate import _
28
29 class hr_employee_category(osv.osv):
30     _name = "hr.employee.category"
31     _description = "Employee Category"
32
33     _columns = {
34         'name' : fields.char("Category", size=64, required=True),
35         'parent_id': fields.many2one('hr.employee.category', 'Parent Category', select=True),
36         'child_ids': fields.one2many('hr.employee.category', 'parent_id', 'Child Categories')
37     }
38
39     def _check_recursion(self, cr, uid, ids):
40         level = 100
41         while len(ids):
42             cr.execute('select distinct parent_id from hr_employee_category where id=ANY(%s)',(ids,))
43             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
44             if not level:
45                 return False
46             level -= 1
47         return True
48
49     _constraints = [
50         (_check_recursion, 'Error ! You cannot create recursive Categories.', ['parent_id'])
51     ]
52
53 hr_employee_category()
54
55 class hr_employee_marital_status(osv.osv):
56     _name = "hr.employee.marital.status"
57     _description = "Employee Marital Status"
58     _columns = {
59         'name' : fields.char('Marital Status', size=30, required=True),
60         'description' : fields.text('Status Description'),
61     }
62 hr_employee_marital_status()
63
64 class hr_employee(osv.osv):
65     _name = "hr.employee"
66     _description = "Employee"
67     _inherits = {'resource.resource':"resource_id"}
68     _columns = {
69         'country_id' : fields.many2one('res.country', 'Nationality'),
70         'birthday' : fields.date("Birthday"),
71         'ssnid': fields.char('SSN No', size=32, help='Social Security Number'),
72         'sinid': fields.char('SIN No', size=32),
73         'otherid': fields.char('Other ID', size=32),
74         'gender': fields.selection([('',''),('male','Male'),('female','Female')], 'Gender'),
75         'marital': fields.many2one('hr.employee.marital.status', 'Marital Status'),
76
77         'address_id': fields.many2one('res.partner.address', 'Working Address'),
78         'address_home_id': fields.many2one('res.partner.address', 'Home Address'),
79         'work_phone': fields.related('address_id', 'phone', type='char', string='Work Phone'),
80         'work_email': fields.related('address_id', 'email', type='char', string='Work E-mail'),
81         'work_location': fields.char('Office Location', size=32),
82
83         'notes': fields.text('Notes'),
84         'parent_id': fields.many2one('hr.employee', 'Manager', select=True),
85         'category_id' : fields.many2one('hr.employee.category', 'Category'),
86         'child_ids': fields.one2many('hr.employee', 'parent_id','Subordinates'),
87         'resource_id': fields.many2one('resource.resource','Resource',ondelete='cascade'),
88     }
89     _defaults = {
90         'active' : lambda *a: True,
91     }
92
93     def _check_recursion(self, cr, uid, ids):
94         level = 100
95         while len(ids):
96             cr.execute('select distinct parent_id from hr_employee where id =ANY(%s)',(ids,))
97             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
98             if not level:
99                 return False
100             level -= 1
101         return True
102
103     _constraints = [
104         (_check_recursion, 'Error ! You cannot create recursive Hierarchy of Employees.', ['parent_id'])
105     ]
106
107 hr_employee()
108 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: