Launchpad automatic translations update.
[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         'partner_id' : fields.related('company_id', 'partner_id', type='many2one', relation='res.partner', readonly=True),
78
79         'address_id': fields.many2one('res.partner.address', 'Working Address'),
80         'address_home_id': fields.many2one('res.partner.address', 'Home Address'),
81         'work_phone': fields.related('address_id', 'phone', type='char', string='Work Phone'),
82         'work_email': fields.related('address_id', 'email', type='char', size=240, string='Work E-mail'),
83         'work_location': fields.char('Office Location', size=32),
84
85         'notes': fields.text('Notes'),
86         'parent_id': fields.many2one('hr.employee', 'Manager', select=True),
87         'category_id' : fields.many2one('hr.employee.category', 'Category'),
88         'child_ids': fields.one2many('hr.employee', 'parent_id','Subordinates'),
89         'resource_id': fields.many2one('resource.resource','Resource',ondelete='cascade'),
90     }
91     _defaults = {
92         'active' : lambda *a: True,
93     }
94
95     def _check_recursion(self, cr, uid, ids):
96         level = 100
97         while len(ids):
98             cr.execute('select distinct parent_id from hr_employee where id =ANY(%s)',(ids,))
99             ids = filter(None, map(lambda x:x[0], cr.fetchall()))
100             if not level:
101                 return False
102             level -= 1
103         return True
104
105     _constraints = [
106         (_check_recursion, 'Error ! You cannot create recursive Hierarchy of Employees.', ['parent_id'])
107     ]
108
109 hr_employee()
110 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: