Launchpad automatic translations update.
[odoo/odoo.git] / addons / hr_contract / hr_contract.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 import time
22
23 from osv import fields, osv
24
25 class hr_employee(osv.osv):
26     _name = "hr.employee"
27     _description = "Employee"
28     _inherit = "hr.employee"
29
30     def _get_latest_contract(self, cr, uid, ids, field_name, args, context=None):
31         res = {}
32         obj_contract = self.pool.get('hr.contract')
33         for emp in self.browse(cr, uid, ids, context=context):
34             contract_ids = obj_contract.search(cr, uid, [('employee_id','=',emp.id),], order='date_start', context=context)
35             if contract_ids:
36                 res[emp.id] = contract_ids[-1:][0]
37             else:
38                 res[emp.id] = False
39         return res
40
41     _columns = {
42         'manager': fields.boolean('Is a Manager'),
43         'medic_exam': fields.date('Medical Examination Date'),
44         'place_of_birth': fields.char('Place of Birth', size=30),
45         'children': fields.integer('Number of Children'),
46         'vehicle': fields.char('Company Vehicle', size=64),
47         'vehicle_distance': fields.integer('Home-Work Distance', help="In kilometers"),
48         'contract_ids': fields.one2many('hr.contract', 'employee_id', 'Contracts'),
49         'contract_id':fields.function(_get_latest_contract, method=True, string='Contract', type='many2one', relation="hr.contract", help='Latest contract of the employee'),
50     }
51
52 hr_employee()
53
54 #Contract wage type period name
55 class hr_contract_wage_type_period(osv.osv):
56     _name='hr.contract.wage.type.period'
57     _description='Wage Period'
58     _columns = {
59         'name': fields.char('Period Name', size=50, required=True, select=True),
60         'factor_days': fields.float('Hours in the period', digits=(12,4), required=True, help='This field is used by the timesheet system to compute the price of an hour of work wased on the contract of the employee')
61     }
62     _defaults = {
63         'factor_days': 168.0
64     }
65 hr_contract_wage_type_period()
66
67 #Contract wage type (hourly, daily, monthly, ...)
68 class hr_contract_wage_type(osv.osv):
69     _name = 'hr.contract.wage.type'
70     _description = 'Wage Type'
71     _columns = {
72         'name': fields.char('Wage Type Name', size=50, required=True, select=True),
73         'period_id': fields.many2one('hr.contract.wage.type.period', 'Wage Period', required=True),
74         'type': fields.selection([('gross','Gross'), ('net','Net')], 'Type', required=True),
75         'factor_type': fields.float('Factor for hour cost', digits=(12,4), required=True, help='This field is used by the timesheet system to compute the price of an hour of work wased on the contract of the employee')
76     }
77     _defaults = {
78         'type': 'gross',
79         'factor_type': 1.8
80     }
81 hr_contract_wage_type()
82
83
84 class hr_contract_type(osv.osv):
85     _name = 'hr.contract.type'
86     _description = 'Contract Type'
87     _columns = {
88         'name': fields.char('Contract Type', size=32, required=True),
89     }
90 hr_contract_type()
91
92 class hr_contract(osv.osv):
93     _name = 'hr.contract'
94     _description = 'Contract'
95     _columns = {
96         'name': fields.char('Contract Reference', size=32, required=True),
97         'employee_id': fields.many2one('hr.employee', "Employee", required=True),
98         'department_id': fields.related('employee_id','department_id', type='many2one', relation='hr.department', string="Department", readonly=True),
99         'type_id': fields.many2one('hr.contract.type', "Contract Type", required=True),
100         'job_id': fields.many2one('hr.job', 'Job Title'),
101         'date_start': fields.date('Start Date', required=True),
102         'date_end': fields.date('End Date'),
103         'trial_date_start': fields.date('Trial Start Date'),
104         'trial_date_end': fields.date('Trial End Date'),
105         'working_hours': fields.many2one('resource.calendar','Working Schedule'),
106         'wage_type_id': fields.many2one('hr.contract.wage.type', 'Wage Type', required=True),
107         'wage': fields.float('Wage', digits=(16,2), required=True),
108         'advantages': fields.text('Advantages'),
109         'advantages_net': fields.float('Net Advantages Value', digits=(16,2)),
110         'advantages_gross': fields.float('Gross Advantages Value', digits=(16,2)),
111         'notes': fields.text('Notes'),
112     }
113     _defaults = {
114         'date_start': lambda *a: time.strftime("%Y-%m-%d"),
115     }
116
117     def _check_dates(self, cr, uid, ids, context=None):
118         for contract in self.read(cr, uid, ids, ['date_start', 'date_end'], context=context):
119              if contract['date_start'] and contract['date_end'] and contract['date_start'] > contract['date_end']:
120                  return False
121         return True
122
123     _constraints = [
124         (_check_dates, 'Error! contract start-date must be lower then contract end-date.', ['date_start', 'date_end'])
125     ]
126
127
128
129 hr_contract()
130
131 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: