modifs
[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         vals_line['general_account_id'] = a
58         vals_line['journal_id'] = emp.journal_id.id
59
60         vals_line['name'] = '%s: %s' % (tools.ustr(obj_task.name), tools.ustr(vals['name']) or '/')
61         vals_line['user_id'] = vals['user_id']
62         vals_line['date'] = vals['date'][:10]
63         vals_line['unit_amount'] = vals['hours']
64         vals_line['account_id'] = obj_task.project_id.category_id.id
65         vals_line['amount'] = 00.0
66         timeline_id = obj.create(cr, uid, vals_line, {})
67
68         vals_line['amount'] = (-1) * vals['hours'] * obj.browse(cr, uid, timeline_id).product_id.standard_price
69         obj.write(cr, uid,[timeline_id], vals_line, {})
70         vals['hr_analytic_timesheet_id'] = timeline_id
71         return super(project_work,self).create(cr, uid, vals, *args, **kwargs)
72
73     def write(self, cr, uid, ids, vals, context=None):
74         vals_line = {}
75
76         task = self.pool.get('project.task.work').browse(cr, uid, ids)[0]
77         line_id = task.hr_analytic_timesheet_id
78         # in case,if a record is deleted from timesheet,but we change it from tasks!
79         list_avail_ids = self.pool.get('hr.analytic.timesheet').search(cr, uid, [])
80         if line_id in list_avail_ids:
81             obj = self.pool.get('hr.analytic.timesheet')
82             if 'name' in vals:
83                 vals_line['name'] = '%s: %s' % (task.name, vals['name'] or '/')
84             if 'user_id' in vals:
85                 vals_line['user_id'] = vals['user_id']
86             if 'date' in vals:
87                 vals_line['date'] = vals['date'][:10]
88             if 'hours' in vals:
89                 vals_line['unit_amount'] = vals['hours']
90                 vals_line['amount'] = (-1) * vals['hours'] * obj.browse(cr, uid, line_id).product_id.standard_price
91             obj.write(cr, uid, [line_id], vals_line, {})
92
93         return super(project_work,self).write(cr, uid, ids, vals, context)
94
95     def unlink(self, cr, uid, ids, *args, **kwargs):
96         for timesheet_id in self.pool.get('project.task.work').browse(cr, uid, ids):
97             if timesheet_id.hr_analytic_timesheet_id:
98                 obj = self.pool.get('hr.analytic.timesheet').unlink(cr, uid, [timesheet_id.hr_analytic_timesheet_id.id], *args, **kwargs)
99         return super(project_work,self).unlink(cr, uid, ids, *args, **kwargs)
100
101     _columns={
102         'hr_analytic_timesheet_id':fields.integer('Related Timeline Id')
103     }
104
105
106 project_work()
107
108 class project_project(osv.osv):
109     _inherit = "project.project"
110     def name_get(self, cr, user, ids, context=None):
111         result = []
112         for project in self.browse(cr, user, ids, context):
113             name = "[%s] %s" % (project.category_id and project.category_id.code or '?', project.name)
114             result.append((project.id, name))
115         return result
116 project_project()
117
118 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
119