~technofluid-team/openobject-addons/technofluid_multiple_installations

« back to all changes in this revision

Viewing changes to hr_timesheet/hr_timesheet.py

  • Committer: pinky
  • Date: 2006-12-07 13:41:40 UTC
  • Revision ID: pinky-dedd7f8a42bd4557112a0513082691b8590ad6cc
New trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2006 TINY SPRL. (http://tiny.be) All Rights Reserved.
 
4
#
 
5
# $Id$
 
6
#
 
7
# WARNING: This program as such is intended to be used by professional
 
8
# programmers who take the whole responsability of assessing all potential
 
9
# consequences resulting from its eventual inadequacies and bugs
 
10
# End users who are looking for a ready-to-use solution with commercial
 
11
# garantees and support are strongly adviced to contract a Free Software
 
12
# Service Company
 
13
#
 
14
# This program is Free Software; you can redistribute it and/or
 
15
# modify it under the terms of the GNU General Public License
 
16
# as published by the Free Software Foundation; either version 2
 
17
# of the License, or (at your option) any later version.
 
18
#
 
19
# This program is distributed in the hope that it will be useful,
 
20
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
21
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
22
# GNU General Public License for more details.
 
23
#
 
24
# You should have received a copy of the GNU General Public License
 
25
# along with this program; if not, write to the Free Software
 
26
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
27
#
 
28
##############################################################################
 
29
 
 
30
import time
 
31
from osv import fields
 
32
from osv import osv
 
33
 
 
34
 
 
35
class hr_employee(osv.osv):
 
36
        _name = "hr.employee"
 
37
        _inherit = "hr.employee"
 
38
        _columns = {
 
39
                'product_id': fields.many2one('product.product', 'Product'),
 
40
                'journal_id': fields.many2one('account.analytic.journal', 'Analytic Journal')
 
41
        }
 
42
hr_employee()
 
43
 
 
44
 
 
45
class hr_analytic_timesheet(osv.osv):
 
46
        _name = "hr.analytic.timesheet"
 
47
        _table = 'hr_analytic_timesheet'
 
48
        _inherits = {'account.analytic.line': 'line_id'}
 
49
        _columns = {
 
50
                'line_id' : fields.many2one('account.analytic.line', 'Analytic line', ondelete='cascade'),
 
51
        }
 
52
 
 
53
        def unlink(self, cr, uid, ids, context={}):
 
54
                toremove = {}
 
55
                for obj in self.browse(cr, uid, ids, context):
 
56
                        toremove[obj.line_id.id] = True
 
57
                self.pool.get('account.analytic.line').unlink(cr, uid, toremove.keys(), context)
 
58
                return super(hr_analytic_timesheet, self).unlink(cr, uid, ids, context)
 
59
 
 
60
        def on_change_unit_amount(self, cr, uid, id, prod_id, unit_amount, unit, context={}):
 
61
                return self.pool.get('account.analytic.line').on_change_unit_amount(cr, uid, id, prod_id, unit_amount,unit, context)
 
62
 
 
63
        def _getEmployeeProduct(self, cr, uid, context):
 
64
                emp_obj = self.pool.get('hr.employee')
 
65
                emp_id = emp_obj.search(cr, uid, [('user_id', '=', uid)])
 
66
                if emp_id:
 
67
                        return emp_obj.browse(cr, uid, emp_id[0], context).product_id.id
 
68
                return False
 
69
 
 
70
        def _getEmployeeUnit(self, cr, uid, context):
 
71
                emp_obj = self.pool.get('hr.employee')
 
72
                emp_id = emp_obj.search(cr, uid, [('user_id', '=', uid)])
 
73
                if emp_id:
 
74
                        return emp_obj.browse(cr, uid, emp_id[0], context).product_id.uom_id.id
 
75
                return False
 
76
 
 
77
        def _getGeneralAccount(self, cr, uid, context):
 
78
                emp_obj = self.pool.get('hr.employee')
 
79
                emp_id = emp_obj.search(cr, uid, [('user_id', '=', uid)])
 
80
                if emp_id:
 
81
                        emp = self.pool.get('hr.employee').browse(cr, uid, emp_id[0], context=context)
 
82
                        if bool(emp.product_id):
 
83
                                a =  emp.product_id.product_tmpl_id.property_account_income
 
84
                                if not a:
 
85
                                        a = emp.product_id.categ_id.property_account_income_categ
 
86
                                return a[0]
 
87
                return False
 
88
 
 
89
        def _getAnalyticJournal(self, cr, uid, context):
 
90
                emp_obj = self.pool.get('hr.employee')
 
91
                emp_id = emp_obj.search(cr, uid, [('user_id', '=', uid)])
 
92
                if emp_id:
 
93
                        emp = self.pool.get('hr.employee').browse(cr, uid, emp_id[0], context=context)
 
94
                        if emp.journal_id:
 
95
                                return emp.journal_id.id
 
96
                return False
 
97
 
 
98
 
 
99
        _defaults = {
 
100
                'product_uom_id' : _getEmployeeUnit,
 
101
                'product_id' : _getEmployeeProduct,
 
102
                'general_account_id' : _getGeneralAccount,
 
103
                'journal_id' : _getAnalyticJournal,
 
104
                'user_id' : lambda obj, cr, uid, ctx : uid,
 
105
        }
 
106
 
 
107
        def on_change_account_id(self, cr, uid, ids, account_id):
 
108
                return {}
 
109
                if not account_id:
 
110
                        return {}
 
111
                account = self.pool.get('account.analytic.account').read(cr, uid, [account_id], ['name'])[0]['name']
 
112
                user = self.pool.get('res.users').read(cr, uid, [uid], ['name'])[0]['name']
 
113
                return {'value' : {'name' : '%s (%s)' % (account, user)}}
 
114
hr_analytic_timesheet()