[REF] project_timesheet
[odoo/odoo.git] / addons / project_timesheet / project_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 import time
22 import datetime
23
24 from osv import fields, osv
25 import pooler
26 import tools
27 from tools.translate import _
28
29 class project_work(osv.osv):
30     _inherit = "project.task.work"
31
32     def get_user_related_details(self, cr, uid, user_id):
33         res = {}
34         emp_obj = self.pool.get('hr.employee')
35         emp_id = emp_obj.search(cr, uid, [('user_id', '=', user_id)])
36         if not emp_id:
37             user_name = self.pool.get('res.users').read(cr, uid, [user_id], ['name'])[0]['name']
38             raise osv.except_osv(_('Bad Configuration !'),
39                  _('No employee defined for user "%s". You must create one.')% (user_name,))
40         emp = self.pool.get('hr.employee').browse(cr, uid, emp_id[0])
41         if not emp.product_id:
42             raise osv.except_osv(_('Bad Configuration !'),
43                  _('No product defined on the related employee.\nFill in the timesheet tab of the employee form.'))
44
45         if not emp.journal_id:
46             raise osv.except_osv(_('Bad Configuration !'),
47                  _('No journal defined on the related employee.\nFill in the timesheet tab of the employee form.'))
48
49         a = emp.product_id.product_tmpl_id.property_account_expense.id
50         if not a:
51             a = emp.product_id.categ_id.property_account_expense_categ.id
52             if not a:
53                 raise osv.except_osv(_('Bad Configuration !'),
54                         _('No product and product category property account defined on the related employee.\nFill in the timesheet tab of the employee form.'))
55         res['product_id'] = emp.product_id.id
56         res['journal_id'] = emp.journal_id.id
57         res['general_account_id'] = a
58         res['product_uom_id'] = emp.product_id.uom_id.id
59         return res
60
61     def create(self, cr, uid, vals, *args, **kwargs):
62         obj_timesheet = self.pool.get('hr.analytic.timesheet')
63         project_obj = self.pool.get('project.project')
64         task_obj = self.pool.get('project.task')
65         uom_obj = self.pool.get('product.uom')
66         
67         vals_line = {}
68         context = kwargs.get('context', {})
69         #TOFIX: after loading project_timesheet module, it's fail yml of other project* modules. 
70         #Temporary: pass context['withoutemployee'] = True in all yml.
71         if 'withoutemployee' in context and context['withoutemployee']:
72             return super(project_work,self).create(cr, uid, vals, context=context)
73         obj_task = task_obj.browse(cr, uid, vals['task_id'])
74         result = self.get_user_related_details(cr, uid, vals.get('user_id', uid))
75         vals_line['name'] = '%s: %s' % (tools.ustr(obj_task.name), tools.ustr(vals['name']) or '/')
76         vals_line['user_id'] = vals['user_id']
77         vals_line['product_id'] = result['product_id']
78         vals_line['date'] = vals['date'][:10]
79         
80         #calculate quantity based on employee's product's uom 
81         vals_line['unit_amount'] = vals['hours']
82         user_uom, default_uom = project_obj._get_user_and_default_uom_ids(cr, uid)
83         if result['product_uom_id'] != default_uom:
84             vals_line['unit_amount'] = uom_obj._compute_qty(cr, uid, default_uom, vals['hours'], result['product_uom_id'])
85         acc_id = obj_task.project_id.analytic_account_id.id
86         vals_line['account_id'] = acc_id
87         res = obj_timesheet.on_change_account_id(cr, uid, False, acc_id)
88         if res.get('value'):
89             vals_line.update(res['value'])
90         vals_line['general_account_id'] = result['general_account_id']
91         vals_line['journal_id'] = result['journal_id']
92         vals_line['amount'] = 0.0
93         vals_line['product_uom_id'] = result['product_uom_id']
94         amount = vals_line['unit_amount']
95         prod_id = vals_line['product_id']
96         unit = False
97         timeline_id = obj_timesheet.create(cr, uid, vals=vals_line, context=context)
98
99         # Compute based on pricetype
100         amount_unit = obj_timesheet.on_change_unit_amount(cr, uid, timeline_id,
101             prod_id, amount, False, unit, context=context)
102         if amount_unit and 'amount' in amount_unit.get('value',{}):
103             updv = { 'amount': amount_unit['value']['amount'] }
104             obj_timesheet.write(cr, uid, [timeline_id], updv, context=context)
105         vals['hr_analytic_timesheet_id'] = timeline_id
106         return super(project_work,self).create(cr, uid, vals, *args, **kwargs)
107
108     def write(self, cr, uid, ids, vals, context=None):
109         if context is None:
110             context = {}
111         timesheet_obj = self.pool.get('hr.analytic.timesheet')
112         project_obj = self.pool.get('project.project')
113         uom_obj = self.pool.get('product.uom')
114         result = {}
115         
116         if isinstance(ids, (long, int)):
117             ids = [ids,]
118
119         for task in self.browse(cr, uid, ids, context=context):
120             line_id = task.hr_analytic_timesheet_id
121             if not line_id:
122                 # if a record is deleted from timesheet, the line_id will become
123                 # null because of the foreign key on-delete=set null
124                 continue
125             vals_line = {}
126             if 'name' in vals:
127                 vals_line['name'] = '%s: %s' % (tools.ustr(task.task_id.name), tools.ustr(vals['name']) or '/')
128             if 'user_id' in vals:
129                 vals_line['user_id'] = vals['user_id']
130                 result = self.get_user_related_details(cr, uid, vals['user_id'])
131                 for fld in ('product_id', 'general_account_id', 'journal_id', 'product_uom_id'):
132                     if result.get(fld, False):
133                         vals_line[fld] = result[fld]
134                         
135             if 'date' in vals:
136                 vals_line['date'] = vals['date'][:10]
137             if 'hours' in vals:
138                 user_uom, default_uom = project_obj._get_user_and_default_uom_ids(cr, uid)
139                 vals_line['unit_amount'] = vals['hours']
140                 prod_id = vals_line.get('product_id', line_id.product_id.id) # False may be set
141
142                 if result.get('product_uom_id',False) and (not result['product_uom_id'] == default_uom):
143                     vals_line['unit_amount'] = uom_obj._compute_qty(cr, uid, default_uom, vals['hours'], result['product_uom_id'])
144                     
145                 # Compute based on pricetype
146                 amount_unit = timesheet_obj.on_change_unit_amount(cr, uid, line_id.id,
147                     prod_id=prod_id,
148                     quantity=vals_line['unit_amount'], unit=False, context=context)
149
150                 if amount_unit and 'amount' in amount_unit.get('value',{}):
151                     vals_line['amount'] = amount_unit['value']['amount']
152
153             obj.write(cr, uid, [line_id.id], vals_line, context=context)
154             
155         return super(project_work,self).write(cr, uid, ids, vals, context)
156
157     def unlink(self, cr, uid, ids, *args, **kwargs):
158         hat_obj = self.pool.get('hr.analytic.timesheet')
159         hat_ids = []
160         for task in self.browse(cr, uid, ids):
161             if task.hr_analytic_timesheet_id:
162                 hat_ids.append(task.hr_analytic_timesheet_id.id)
163 #            delete entry from timesheet too while deleting entry to task.
164         if hat_ids:
165             hat_obj.unlink(cr, uid, hat_ids, *args, **kwargs)
166         return super(project_work,self).unlink(cr, uid, ids, *args, **kwargs)
167
168     _columns={
169         'hr_analytic_timesheet_id':fields.many2one('hr.analytic.timesheet','Related Timeline Id', ondelete='set null'),
170     }
171
172 project_work()
173
174 class task(osv.osv):
175     _inherit = "project.task"
176
177     def unlink(self, cr, uid, ids, *args, **kwargs):
178         for task_obj in self.browse(cr, uid, ids, *args, **kwargs):
179             if task_obj.work_ids:
180                 work_ids = [x.id for x in task_obj.work_ids]
181                 self.pool.get('project.task.work').unlink(cr, uid, work_ids, *args, **kwargs)
182
183         return super(task,self).unlink(cr, uid, ids, *args, **kwargs)
184
185     def write(self, cr, uid, ids,vals,context=None):
186         if context is None:
187             context = {}
188         if vals.get('project_id',False) or vals.get('name',False):
189             vals_line = {}
190             hr_anlytic_timesheet = self.pool.get('hr.analytic.timesheet')
191             task_obj_l = self.browse(cr, uid, ids, context)
192             if vals.get('project_id',False):
193                 project_obj = self.pool.get('project.project').browse(cr, uid, vals['project_id'])
194                 acc_id = project_obj.analytic_account_id.id
195
196             for task_obj in task_obj_l:
197                 if len(task_obj.work_ids):
198                     for task_work in task_obj.work_ids:
199                         line_id = task_work.hr_analytic_timesheet_id.id
200                         if vals.get('project_id',False):
201                             vals_line['account_id'] = acc_id
202                         if vals.get('name',False):
203                             vals_line['name'] = '%s: %s' % (tools.ustr(vals['name']), tools.ustr(task_work.name) or '/')
204                         hr_anlytic_timesheet.write(cr, uid, [line_id], vals_line, {})
205         return super(task,self).write(cr, uid, ids, vals, context)
206
207 task()
208 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: