bugfix_350775
[odoo/odoo.git] / addons / project_timesheet / project_timesheet.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution    
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22 from osv import fields, osv
23 import time
24 import datetime
25 import pooler
26 import tools
27 from tools.translate import _
28
29
30 class project_work(osv.osv):
31     _inherit = "project.task.work"
32     _description = "Task Work"
33     def create(self, cr, uid, vals, *args, **kwargs):
34
35         obj = self.pool.get('hr.analytic.timesheet')
36         vals_line = {}
37         obj_task = self.pool.get('project.task').browse(cr, uid, vals['task_id'])
38
39         emp_obj = self.pool.get('hr.employee')
40         emp_id = emp_obj.search(cr, uid, [('user_id', '=', vals.get('user_id', uid))])
41
42         if not emp_id:
43             raise osv.except_osv(_('Bad Configuration !'),
44                  _('No employee defined for this user. You must create one.'))
45         emp = self.pool.get('hr.employee').browse(cr, uid, emp_id[0])
46         if not emp.product_id:
47             raise osv.except_osv(_('Bad Configuration !'),
48                  _('No product defined on the related employee.\nFill in the timesheet tab of the employee form.'))
49
50         if not emp.journal_id:
51             raise osv.except_osv(_('Bad Configuration !'),
52                  _('No journal defined on the related employee.\nFill in the timesheet tab of the employee form.'))
53
54         a =  emp.product_id.product_tmpl_id.property_account_expense.id
55         if not a:
56             a = emp.product_id.categ_id.property_account_expense_categ.id
57
58         vals_line['name'] = '%s: %s' % (tools.ustr(obj_task.name), tools.ustr(vals['name']) or '/')
59         vals_line['user_id'] = vals['user_id']
60         vals_line['date'] = vals['date'][:10]
61         vals_line['unit_amount'] = vals['hours']
62         vals_line['account_id'] = obj_task.project_id.category_id.id
63         res = obj.on_change_account_id(cr, uid, False, obj_task.project_id.category_id.id)
64         print 'Got', res
65         if res.get('value'):
66             vals_line.update(res['value'])
67         vals_line['general_account_id'] = a
68         vals_line['journal_id'] = emp.journal_id.id
69         vals_line['amount'] = 00.0
70         timeline_id = obj.create(cr, uid, vals_line, {})
71
72         vals_line['amount'] = (-1) * vals['hours'] * obj.browse(cr, uid, timeline_id).product_id.standard_price
73         obj.write(cr, uid,[timeline_id], vals_line, {})
74         vals['hr_analytic_timesheet_id'] = timeline_id
75         return super(project_work,self).create(cr, uid, vals, *args, **kwargs)
76
77     def write(self, cr, uid, ids, vals, context=None):
78         vals_line = {}
79
80         for task in self.pool.get('project.task.work').browse(cr, uid, ids):
81             line_id = task.hr_analytic_timesheet_id
82             if line_id:
83                 obj = self.pool.get('hr.analytic.timesheet')
84                 if 'name' in vals:
85                     vals_line['name'] = '%s: %s' % (tools.ustr(task.name), tools.ustr(vals['name']) or '/')
86                 if 'user_id' in vals:
87                     vals_line['user_id'] = vals['user_id']
88                 if 'date' in vals:
89                     vals_line['date'] = vals['date'][:10]
90                 if 'hours' in vals:
91                     vals_line['unit_amount'] = vals['hours']
92                     vals_line['amount'] = (-1) * vals['hours'] * obj.browse(cr, uid, line_id).product_id.standard_price
93                 obj.write(cr, uid, [line_id], vals_line, {})
94
95         return super(project_work,self).write(cr, uid, ids, vals, context)
96
97     def unlink(self, cr, uid, ids, *args, **kwargs):
98         for timesheet_id in self.pool.get('project.task.work').browse(cr, uid, ids):
99             if timesheet_id.hr_analytic_timesheet_id:
100                 obj = self.pool.get('hr.analytic.timesheet').unlink(cr, uid, [timesheet_id.hr_analytic_timesheet_id], *args, **kwargs)
101         return super(project_work,self).unlink(cr, uid, ids, *args, **kwargs)
102
103     _columns={
104         'hr_analytic_timesheet_id':fields.integer('Related Timeline Id')
105     }
106
107
108 project_work()
109
110 class project_project(osv.osv):
111     _inherit = "project.project"
112     def name_get(self, cr, user, ids, context=None):
113         result = []
114         for project in self.browse(cr, user, ids, context):
115             name = "[%s] %s" % (project.category_id and project.category_id.code or '?', project.name)
116             result.append((project.id, name))
117         return result
118 project_project()
119
120 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
121