Launchpad automatic translations update.
[odoo/odoo.git] / addons / hr_timesheet / hr_timesheet.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 time
23
24 from osv import fields
25 from osv import osv
26 from tools.translate import _
27
28 class hr_employee(osv.osv):
29     _name = "hr.employee"
30     _inherit = "hr.employee"
31     _columns = {
32         'product_id': fields.many2one('product.product', 'Product', help="Specifies employee's designation as a product with type 'service'."),
33         'journal_id': fields.many2one('account.analytic.journal', 'Analytic Journal')
34     }
35     
36     def _getAnalyticJournal(self, cr, uid, context=None):
37         md = self.pool.get('ir.model.data')
38         try:
39             result = md.get_object_reference(cr, uid, 'hr_timesheet', 'analytic_journal')
40             return result[1]
41         except ValueError:
42             pass
43         return False
44
45     def _getEmployeeProduct(self, cr, uid, context=None):
46         md = self.pool.get('ir.model.data')
47         try:
48             result = md.get_object_reference(cr, uid, 'hr_timesheet', 'product_consultant')
49             return result[1]
50         except ValueError:
51             pass
52         return False
53
54     _defaults = {
55         'journal_id' : _getAnalyticJournal,
56         'product_id' : _getEmployeeProduct    
57     }
58 hr_employee()
59
60
61 class hr_analytic_timesheet(osv.osv):
62     _name = "hr.analytic.timesheet"
63     _table = 'hr_analytic_timesheet'
64     _description = "Timesheet Line"
65     _inherits = {'account.analytic.line': 'line_id'}
66     _order = "id desc"
67     _columns = {
68         'line_id' : fields.many2one('account.analytic.line', 'Analytic line', ondelete='cascade', required=True),
69         'partner_id': fields.related('account_id', 'partner_id', type='many2one', string='Partner Id', relation='res.partner', store=True),
70     }
71
72     def unlink(self, cr, uid, ids, context=None):
73         if context is None:
74             context = {}
75         toremove = {}
76         for obj in self.browse(cr, uid, ids, context=context):
77             toremove[obj.line_id.id] = True
78         self.pool.get('account.analytic.line').unlink(cr, uid, toremove.keys(), context=context)
79         return super(hr_analytic_timesheet, self).unlink(cr, uid, ids, context=context)
80
81
82     def on_change_unit_amount(self, cr, uid, id, prod_id, unit_amount, company_id, unit=False, journal_id=False, context=None):
83         if context is None:
84             context = {}
85         res = {'value':{}}
86         if prod_id and unit_amount:
87             # find company
88             company_id = self.pool.get('res.company')._company_default_get(cr, uid, 'account.analytic.line', context=context)
89             r = self.pool.get('account.analytic.line').on_change_unit_amount(cr, uid, id, prod_id, unit_amount, company_id, unit, journal_id, context=context)
90             if r:
91                 res.update(r)
92         # update unit of measurement
93         if prod_id:
94             uom = self.pool.get('product.product').browse(cr, uid, prod_id, context=context)
95             if uom.uom_id:
96                 res['value'].update({'product_uom_id': uom.uom_id.id})
97         else:
98             res['value'].update({'product_uom_id': False})
99         return res
100
101     def _getEmployeeProduct(self, cr, uid, context=None):
102         if context is None:
103             context = {}
104         emp_obj = self.pool.get('hr.employee')
105         emp_id = emp_obj.search(cr, uid, [('user_id', '=', context.get('user_id', uid))], context=context)
106         if emp_id:
107             emp = emp_obj.browse(cr, uid, emp_id[0], context=context)
108             if emp.product_id:
109                 return emp.product_id.id
110         return False
111
112     def _getEmployeeUnit(self, cr, uid, context=None):
113         emp_obj = self.pool.get('hr.employee')
114         if context is None:
115             context = {}
116         emp_id = emp_obj.search(cr, uid, [('user_id', '=', context.get('user_id', uid))], context=context)
117         if emp_id:
118             emp = emp_obj.browse(cr, uid, emp_id[0], context=context)
119             if emp.product_id:
120                 return emp.product_id.uom_id.id
121         return False
122
123     def _getGeneralAccount(self, cr, uid, context=None):
124         emp_obj = self.pool.get('hr.employee')
125         if context is None:
126             context = {}
127         emp_id = emp_obj.search(cr, uid, [('user_id', '=', context.get('user_id', uid))], context=context)
128         if emp_id:
129             emp = emp_obj.browse(cr, uid, emp_id[0], context=context)
130             if bool(emp.product_id):
131                 a = emp.product_id.product_tmpl_id.property_account_expense.id
132                 if not a:
133                     a = emp.product_id.categ_id.property_account_expense_categ.id
134                 if a:
135                     return a
136         return False
137
138     def _getAnalyticJournal(self, cr, uid, context=None):
139         emp_obj = self.pool.get('hr.employee')
140         if context is None:
141             context = {}
142         emp_id = emp_obj.search(cr, uid, [('user_id', '=', context.get('user_id', uid))], context=context)
143         if emp_id:
144             emp = emp_obj.browse(cr, uid, emp_id[0], context=context)
145             if emp.journal_id:
146                 return emp.journal_id.id
147         return False
148
149
150     _defaults = {
151         'product_uom_id' : _getEmployeeUnit,
152         'product_id' : _getEmployeeProduct,
153         'general_account_id' : _getGeneralAccount,
154         'journal_id' : _getAnalyticJournal,
155         'date' : lambda self, cr, uid, ctx : ctx.get('date', time.strftime('%Y-%m-%d')),
156         'user_id' : lambda obj, cr, uid, ctx : ctx.get('user_id', uid),
157     }
158     def on_change_account_id(self, cr, uid, ids, account_id):
159         return {'value':{}}
160
161     def on_change_date(self, cr, uid, ids, date):
162         if ids:
163             new_date = self.read(cr, uid, ids[0], ['date'])['date']
164             if date != new_date:
165                 warning = {'title':'User Alert!','message':'Changing the date will let this entry appear in the timesheet of the new date.'}
166                 return {'value':{},'warning':warning}
167         return {'value':{}}
168
169     def create(self, cr, uid, vals, context=None):
170         if context is None:
171             context = {}
172         emp_obj = self.pool.get('hr.employee')
173         emp_id = emp_obj.search(cr, uid, [('user_id', '=', context.get('user_id', uid))], context=context)
174         ename = ''
175         if emp_id:
176             ename = emp_obj.browse(cr, uid, emp_id[0], context=context).name
177         if not vals.get('journal_id',False):
178            raise osv.except_osv(_('Warning !'), _('Analytic journal is not defined for employee %s \nDefine an employee for the selected user and assign an analytic journal!')%(ename,))
179         if not vals.get('account_id',False):
180            raise osv.except_osv(_('Warning !'), _('No analytic account defined on the project.\nPlease set one or we can not automatically fill the timesheet.'))
181         return super(hr_analytic_timesheet, self).create(cr, uid, vals, context=context)
182
183     def on_change_user_id(self, cr, uid, ids, user_id):
184         if not user_id:
185             return {}
186         context = {'user_id': user_id}
187         return {'value' : {
188             'product_id' : self._getEmployeeProduct(cr, uid, context),
189             'product_uom_id' : self._getEmployeeUnit(cr, uid, context),
190             'general_account_id' :self._getGeneralAccount(cr, uid, context),
191             'journal_id' : self._getAnalyticJournal(cr, uid, context),
192         }}
193         
194 hr_analytic_timesheet()
195
196 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: