[FIX] default_get corrected
[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 osv.orm import except_orm
27 from tools.translate import _
28
29 class hr_employee(osv.osv):
30     _name = "hr.employee"
31     _inherit = "hr.employee"
32     _columns = {
33         'product_id': fields.many2one('product.product', 'Product', help="Specifies employee's designation as a product with type 'service'."),
34         'journal_id': fields.many2one('account.analytic.journal', 'Analytic Journal')
35     }
36 hr_employee()
37
38
39 class hr_analytic_timesheet(osv.osv):
40     _name = "hr.analytic.timesheet"
41     _table = 'hr_analytic_timesheet'
42     _description = "Timesheet line"
43     _inherits = {'account.analytic.line': 'line_id'}
44     _order = "id desc"
45     _columns = {
46         'line_id' : fields.many2one('account.analytic.line', 'Analytic line', ondelete='cascade'), 
47         'partner_id': fields.related('account_id', 'partner_id', type='many2one', string='Partner Id',relation='account.analytic.account',store=True),
48     }
49
50     def unlink(self, cr, uid, ids, context={}):
51         toremove = {}
52         for obj in self.browse(cr, uid, ids, context):
53             toremove[obj.line_id.id] = True
54         self.pool.get('account.analytic.line').unlink(cr, uid, toremove.keys(), context)
55         return super(hr_analytic_timesheet, self).unlink(cr, uid, ids, context)
56
57
58     def on_change_unit_amount(self, cr, uid, id, prod_id, unit_amount, unit, context={}):
59         res = {}
60 #        if prod_id and unit_amount:
61         if prod_id:
62             # find company
63             company_id=self.pool.get('res.company')._company_default_get(cr, uid, 'account.analytic.line', context=context)
64             res = self.pool.get('account.analytic.line').on_change_unit_amount(cr, uid, id, prod_id, unit_amount,company_id,unit, context)
65         return res
66
67     def _getEmployeeProduct(self, cr, uid, context):
68         emp_obj = self.pool.get('hr.employee')
69         emp_id = emp_obj.search(cr, uid, [('user_id', '=', context.get('user_id', uid))])
70         if emp_id:
71             emp=emp_obj.browse(cr, uid, emp_id[0], context)
72             if emp.product_id:
73                 return emp.product_id.id
74         return False
75
76     def _getEmployeeUnit(self, cr, uid, context):
77         emp_obj = self.pool.get('hr.employee')
78         emp_id = emp_obj.search(cr, uid, [('user_id', '=', context.get('user_id', uid))])
79         if emp_id:
80             emp=emp_obj.browse(cr, uid, emp_id[0], context)
81             if emp.product_id:
82                 return emp.product_id.uom_id.id
83         return False
84
85     def _getGeneralAccount(self, cr, uid, context):
86         emp_obj = self.pool.get('hr.employee')
87         emp_id = emp_obj.search(cr, uid, [('user_id', '=', context.get('user_id', uid))])
88         if emp_id:
89             emp = emp_obj.browse(cr, uid, emp_id[0], context=context)
90             if bool(emp.product_id):
91                 a =  emp.product_id.product_tmpl_id.property_account_expense.id
92                 if not a:
93                     a = emp.product_id.categ_id.property_account_expense_categ.id
94                 if a:
95                     return a
96         return False
97
98     def _getAnalyticJournal(self, cr, uid, context):
99         emp_obj = self.pool.get('hr.employee')
100         emp_id = emp_obj.search(cr, uid, [('user_id', '=', context.get('user_id', uid))])
101         if emp_id:
102             emp = emp_obj.browse(cr, uid, emp_id[0], context=context)
103             if emp.journal_id:
104                 return emp.journal_id.id
105         return False
106
107
108     _defaults = {
109         'product_uom_id' : _getEmployeeUnit,
110         'product_id' : _getEmployeeProduct,
111         'general_account_id' : _getGeneralAccount,
112         'journal_id' : _getAnalyticJournal,
113         'date' : lambda self,cr,uid,ctx: ctx.get('date', time.strftime('%Y-%m-%d')),
114         'user_id' : lambda obj, cr, uid, ctx : ctx.get('user_id', uid),
115     }
116     def on_change_account_id(self, cr, uid, ids, account_id):
117         return {'value':{}}
118
119     def on_change_date(self, cr, uid, ids, date):
120         if ids:
121             new_date = self.read(cr,uid,ids[0],['date'])['date']
122             if date != new_date:
123                 warning = {'title':'User Alert!','message':'Changing the date will let this entry appear in the timesheet of the new date.'}
124                 return {'value':{},'warning':warning}
125         return {'value':{}}
126
127     def create(self, cr, uid, vals, context={}):
128         emp_obj = self.pool.get('hr.employee')
129         emp_id = emp_obj.search(cr, uid, [('user_id', '=', context.get('user_id', uid))], context=context)
130         ename = ''
131         if emp_id:
132             ename = emp_obj.browse(cr, uid, emp_id[0], context=context).name
133         if not vals.get('journal_id',False):
134            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,))
135         if not vals.get('account_id',False):
136            raise osv.except_osv(_('Warning !'), _('No analytic account defined on the project.\nPlease set one or we can not automatically fill the timesheet.'))
137         return super(hr_analytic_timesheet, self).create(cr, uid, vals, context=context)
138
139     def on_change_user_id(self, cr, uid, ids, user_id):
140         if not user_id:
141             return {}
142         return {'value' : {
143             'product_id' : self._getEmployeeProduct(cr,user_id, context= {}),
144             'product_uom_id' : self._getEmployeeUnit(cr, user_id, context= {}),
145             'general_account_id' :self. _getGeneralAccount(cr, user_id, context= {}),
146             'journal_id' : self._getAnalyticJournal(cr, user_id, context= {}),
147         }}
148 hr_analytic_timesheet()
149
150 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
151