6cbb4e8cf01bf410e560564982a4f7e50cc3a9ff
[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 openerp.osv import fields, osv
25 from openerp import pooler
26 from openerp import tools
27 from openerp.tools.translate import _
28
29 class project_project(osv.osv):
30     _inherit = 'project.project'
31
32     def onchange_partner_id(self, cr, uid, ids, part=False, context=None):
33         res = super(project_project, self).onchange_partner_id(cr, uid, ids, part, context)
34         if part and res and ('value' in res):
35             # set Invoice Task Work to 100%
36             data_obj = self.pool.get('ir.model.data')
37             data_id = data_obj._get_id(cr, uid, 'hr_timesheet_invoice', 'timesheet_invoice_factor1')
38             if data_id:
39                 factor_id = data_obj.browse(cr, uid, data_id).res_id
40                 res['value'].update({'to_invoice': factor_id})
41         return res
42
43     _defaults = {
44         'use_timesheets': True,
45     }
46
47     def open_timesheets(self, cr, uid, ids, context=None):
48         """ open Timesheets view """
49         mod_obj = self.pool.get('ir.model.data')
50         act_obj = self.pool.get('ir.actions.act_window')
51
52         project = self.browse(cr, uid, ids[0], context)
53         view_context = {
54             'search_default_account_id': [project.analytic_account_id.id],
55             'default_account_id': project.analytic_account_id.id,
56         }
57         help = _("""<p class="oe_view_nocontent_create">Record your timesheets for the project '%s'.</p>""") % (project.name,)
58         try:
59             if project.to_invoice and project.partner_id:
60                 help+= _("""<p>Timesheets on this project may be invoiced to %s, according to the terms defined in the contract.</p>""" ) % (project.partner_id.name,)
61         except:
62             # if the user do not have access rights on the partner
63             pass
64
65         res = mod_obj.get_object_reference(cr, uid, 'hr_timesheet', 'act_hr_timesheet_line_evry1_all_form')
66         id = res and res[1] or False
67         result = act_obj.read(cr, uid, [id], context=context)[0]
68         result['name'] = _('Timesheets')
69         result['context'] = view_context
70         result['help'] = help
71         return result
72
73 project_project()
74
75 class project_work(osv.osv):
76     _inherit = "project.task.work"
77
78     def get_user_related_details(self, cr, uid, user_id):
79         res = {}
80         emp_obj = self.pool.get('hr.employee')
81         emp_id = emp_obj.search(cr, uid, [('user_id', '=', user_id)])
82         if not emp_id:
83             user_name = self.pool.get('res.users').read(cr, uid, [user_id], ['name'])[0]['name']
84             raise osv.except_osv(_('Bad Configuration!'),
85                  _('Please define employee for user "%s". You must create one.')% (user_name,))
86         emp = emp_obj.browse(cr, uid, emp_id[0])
87         if not emp.product_id:
88             raise osv.except_osv(_('Bad Configuration!'),
89                  _('Please define product and product category property account on the related employee.\nFill in the HR Settings tab of the employee form.'))
90
91         if not emp.journal_id:
92             raise osv.except_osv(_('Bad Configuration!'),
93                  _('Please define journal on the related employee.\nFill in the timesheet tab of the employee form.'))
94
95         acc_id = emp.product_id.property_account_expense.id
96         if not acc_id:
97             acc_id = emp.product_id.categ_id.property_account_expense_categ.id
98             if not acc_id:
99                 raise osv.except_osv(_('Bad Configuration!'),
100                         _('Please define product and product category property account on the related employee.\nFill in the timesheet tab of the employee form.'))
101
102         res['product_id'] = emp.product_id.id
103         res['journal_id'] = emp.journal_id.id
104         res['general_account_id'] = acc_id
105         res['product_uom_id'] = emp.product_id.uom_id.id
106         return res
107
108     def _create_analytic_entries(self, cr, uid, vals, context):
109         """Create the hr analytic timesheet from project task work"""
110         timesheet_obj = self.pool['hr.analytic.timesheet']
111         task_obj = self.pool['project.task']
112
113         vals_line = {}
114         timeline_id = False
115         acc_id = False
116
117         task_obj = task_obj.browse(cr, uid, vals['task_id'], context=context)
118         result = self.get_user_related_details(cr, uid, vals.get('user_id', uid))
119         vals_line['name'] = '%s: %s' % (tools.ustr(task_obj.name), tools.ustr(vals['name'] or '/'))
120         vals_line['user_id'] = vals['user_id']
121         vals_line['product_id'] = result['product_id']
122         if vals.get('date'):
123             vals_line['date' ] = vals['date'][:10]
124
125         # Calculate quantity based on employee's product's uom
126         vals_line['unit_amount'] = vals['hours']
127
128         default_uom = self.pool['res.users'].browse(cr, uid, uid, context=context).company_id.project_time_mode_id.id
129         if result['product_uom_id'] != default_uom:
130             vals_line['unit_amount'] = self.pool['product.uom']._compute_qty(cr, uid, default_uom, vals['hours'], result['product_uom_id'])
131         acc_id = task_obj.project_id and task_obj.project_id.analytic_account_id.id or acc_id
132         if acc_id:
133             vals_line['account_id'] = acc_id
134             res = timesheet_obj.on_change_account_id(cr, uid, False, acc_id)
135             if res.get('value'):
136                 vals_line.update(res['value'])
137             vals_line['general_account_id'] = result['general_account_id']
138             vals_line['journal_id'] = result['journal_id']
139             vals_line['amount'] = 0.0
140             vals_line['product_uom_id'] = result['product_uom_id']
141             amount = vals_line['unit_amount']
142             prod_id = vals_line['product_id']
143             unit = False
144             timeline_id = timesheet_obj.create(cr, uid, vals=vals_line, context=context)
145
146             # Compute based on pricetype
147             amount_unit = timesheet_obj.on_change_unit_amount(cr, uid, timeline_id,
148                 prod_id, amount, False, unit, vals_line['journal_id'], context=context)
149             if amount_unit and 'amount' in amount_unit.get('value',{}):
150                 updv = { 'amount': amount_unit['value']['amount'] }
151                 timesheet_obj.write(cr, uid, [timeline_id], updv, context=context)
152
153         return timeline_id
154
155     def create(self, cr, uid, vals, *args, **kwargs):
156         context = kwargs.get('context', {})
157         if not context.get('no_analytic_entry',False):
158             vals['hr_analytic_timesheet_id'] = self._create_analytic_entries(cr, uid, vals, context=context)
159         return super(project_work,self).create(cr, uid, vals, *args, **kwargs)
160
161     def write(self, cr, uid, ids, vals, context=None):
162         """
163         When a project task work gets updated, handle its hr analytic timesheet.
164         """
165         if context is None:
166             context = {}
167         timesheet_obj = self.pool.get('hr.analytic.timesheet')
168         uom_obj = self.pool.get('product.uom')
169         result = {}
170
171         if isinstance(ids, (long, int)):
172             ids = [ids]
173
174         for task in self.browse(cr, uid, ids, context=context):
175             line_id = task.hr_analytic_timesheet_id
176             if not line_id:
177                 # if a record is deleted from timesheet, the line_id will become
178                 # null because of the foreign key on-delete=set null
179                 continue
180
181             vals_line = {}
182             if 'name' in vals:
183                 vals_line['name'] = '%s: %s' % (tools.ustr(task.task_id.name), tools.ustr(vals['name'] or '/'))
184             if 'user_id' in vals:
185                 vals_line['user_id'] = vals['user_id']
186             if 'date' in vals:
187                 vals_line['date'] = vals['date'][:10]
188             if 'hours' in vals:
189                 vals_line['unit_amount'] = vals['hours']
190                 prod_id = vals_line.get('product_id', line_id.product_id.id) # False may be set
191
192                 # Put user related details in analytic timesheet values
193                 details = self.get_user_related_details(cr, uid, vals.get('user_id', task.user_id.id))
194                 for field in ('product_id', 'general_account_id', 'journal_id', 'product_uom_id'):
195                     if details.get(field, False):
196                         vals_line[field] = details[field]
197
198                 # Check if user's default UOM differs from product's UOM
199                 user_default_uom_id = self.pool.get('res.users').browse(cr, uid, uid).company_id.project_time_mode_id.id
200                 if details.get('product_uom_id', False) and details['product_uom_id'] != user_default_uom_id:
201                     vals_line['unit_amount'] = uom_obj._compute_qty(cr, uid, user_default_uom_id, vals['hours'], details['product_uom_id'])
202
203                 # Compute based on pricetype
204                 amount_unit = timesheet_obj.on_change_unit_amount(cr, uid, line_id.id,
205                     prod_id=prod_id, company_id=False,
206                     unit_amount=vals_line['unit_amount'], unit=False, journal_id=vals_line['journal_id'], context=context)
207
208                 if amount_unit and 'amount' in amount_unit.get('value',{}):
209                     vals_line['amount'] = amount_unit['value']['amount']
210
211             if vals_line:
212                 self.pool.get('hr.analytic.timesheet').write(cr, uid, [line_id.id], vals_line, context=context)
213
214         return super(project_work,self).write(cr, uid, ids, vals, context)
215
216     def unlink(self, cr, uid, ids, *args, **kwargs):
217         hat_obj = self.pool.get('hr.analytic.timesheet')
218         hat_ids = []
219         for task in self.browse(cr, uid, ids):
220             if task.hr_analytic_timesheet_id:
221                 hat_ids.append(task.hr_analytic_timesheet_id.id)
222         # Delete entry from timesheet too while deleting entry to task.
223         if hat_ids:
224             hat_obj.unlink(cr, uid, hat_ids, *args, **kwargs)
225         return super(project_work,self).unlink(cr, uid, ids, *args, **kwargs)
226
227     _columns={
228         'hr_analytic_timesheet_id':fields.many2one('hr.analytic.timesheet','Related Timeline Id', ondelete='set null'),
229     }
230
231 project_work()
232
233 class task(osv.osv):
234     _inherit = "project.task"
235
236     def unlink(self, cr, uid, ids, *args, **kwargs):
237         for task_obj in self.browse(cr, uid, ids, *args, **kwargs):
238             if task_obj.work_ids:
239                 work_ids = [x.id for x in task_obj.work_ids]
240                 self.pool.get('project.task.work').unlink(cr, uid, work_ids, *args, **kwargs)
241
242         return super(task,self).unlink(cr, uid, ids, *args, **kwargs)
243
244     def write(self, cr, uid, ids, vals, context=None):
245         if context is None:
246             context = {}
247         task_work_obj = self.pool['project.task.work']
248         acc_id = False
249         missing_analytic_entries = {}
250
251         if vals.get('project_id',False) or vals.get('name',False):
252             vals_line = {}
253             hr_anlytic_timesheet = self.pool.get('hr.analytic.timesheet')
254             if vals.get('project_id',False):
255                 project_obj = self.pool.get('project.project').browse(cr, uid, vals['project_id'], context=context)
256                 acc_id = project_obj.analytic_account_id.id
257
258             for task_obj in self.browse(cr, uid, ids, context=context):
259                 if len(task_obj.work_ids):
260                     for task_work in task_obj.work_ids:
261                         if not task_work.hr_analytic_timesheet_id:
262                             if acc_id :
263                                 # missing timesheet activities to generate
264                                 missing_analytic_entries[task_work.id] = {
265                                     'name' : task_work.name,
266                                     'user_id' : task_work.user_id.id,
267                                     'date' : task_work.date and task_work.date[:10] or False,
268                                     'account_id': acc_id,
269                                     'hours' : task_work.hours,
270                                     'task_id' : task_obj.id
271                                 }
272                             continue
273                         line_id = task_work.hr_analytic_timesheet_id.id
274                         if vals.get('project_id',False):
275                             vals_line['account_id'] = acc_id
276                         if vals.get('name',False):
277                             vals_line['name'] = '%s: %s' % (tools.ustr(vals['name']), tools.ustr(task_work.name) or '/')
278                         hr_anlytic_timesheet.write(cr, uid, [line_id], vals_line, {})
279
280         res = super(task,self).write(cr, uid, ids, vals, context)
281
282         for task_work_id, analytic_entry in missing_analytic_entries.items():
283             timeline_id = task_work_obj._create_analytic_entries(cr, uid, analytic_entry, context=context)
284             task_work_obj.write(cr, uid, task_work_id, {'hr_analytic_timesheet_id' : timeline_id}, context=context)
285
286         return res
287
288 task()
289
290 class res_partner(osv.osv):
291     _inherit = 'res.partner'
292
293     def unlink(self, cursor, user, ids, context=None):
294         parnter_id=self.pool.get('project.project').search(cursor, user, [('partner_id', 'in', ids)])
295         if parnter_id:
296             raise osv.except_osv(_('Invalid Action!'), _('You cannot delete a partner which is assigned to project, but you can uncheck the active box.'))
297         return super(res_partner,self).unlink(cursor, user, ids,
298                 context=context)
299
300 res_partner()
301
302 class account_analytic_line(osv.osv):
303    _inherit = "account.analytic.line"
304
305    def get_product(self, cr, uid, context=None):
306         emp_obj = self.pool.get('hr.employee')
307         emp_ids = emp_obj.search(cr, uid, [('user_id', '=', uid)], context=context)
308         if emp_ids:
309             employee = emp_obj.browse(cr, uid, emp_ids, context=context)[0]
310             if employee.product_id:return employee.product_id.id
311         return False
312    
313    _defaults = {'product_id': get_product,}
314    
315    def on_change_account_id(self, cr, uid, ids, account_id):
316        res = {}
317        if not account_id:
318            return res
319        res.setdefault('value',{})
320        acc = self.pool.get('account.analytic.account').browse(cr, uid, account_id)
321        st = acc.to_invoice.id
322        res['value']['to_invoice'] = st or False
323        if acc.state == 'close' or acc.state == 'cancelled':
324            raise osv.except_osv(_('Invalid Analytic Account!'), _('You cannot select a Analytic Account which is in Close or Cancelled state.'))
325        return res
326
327 account_analytic_line()
328
329 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: