[FIX] Change the year of the copyright
[odoo/odoo.git] / addons / analytic_user_function / analytic_user_function.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
22 from osv import fields,osv
23 from osv import orm
24 from tools.translate import _
25
26 class analytic_user_funct_grid(osv.osv):
27
28     _name="analytic_user_funct_grid"
29     _description= "Relation table between users and products on a analytic account"
30     _columns={
31         'user_id': fields.many2one("res.users","User",required=True,),
32         'product_id': fields.many2one("product.product","Product",required=True,),
33         'account_id': fields.many2one("account.analytic.account", "Analytic Account",required=True,),
34         }
35
36 analytic_user_funct_grid()
37
38
39 class account_analytic_account(osv.osv):
40
41     _inherit = "account.analytic.account"
42     _columns = {
43         'user_product_ids' : fields.one2many('analytic_user_funct_grid', 'account_id', 'Users/Products Rel.'),
44     }
45
46 account_analytic_account()
47
48
49 class hr_analytic_timesheet(osv.osv):
50
51     _inherit = "hr.analytic.timesheet"
52
53
54     # Look in account, if no value for the user => look in parent until there is no more parent to look
55     # Take the first found... if nothing found => return False
56     def _get_related_user_account_recursiv(self,cr,uid,user_id,account_id):
57         
58         temp=self.pool.get('analytic_user_funct_grid').search(cr, uid, [('user_id', '=', user_id),('account_id', '=', account_id) ])
59         account=self.pool.get('account.analytic.account').browse(cr,uid,account_id)
60         if temp:
61             return temp
62         else:
63             if account.parent_id:
64                 return self._get_related_user_account_recursiv(cr,uid,user_id,account.parent_id.id)
65             else:
66                 return False
67                 
68                 
69     def on_change_account_id(self, cr, uid, ids, account_id, user_id=False, unit_amount=0):
70         #{'value': {'to_invoice': False, 'amount': (-162.0,), 'product_id': 7, 'general_account_id': (5,)}}
71         res = {}
72         if not (account_id):
73             #avoid a useless call to super
74             return res 
75
76         if not (user_id):
77             return super(hr_analytic_timesheet, self).on_change_account_id(cr, uid, ids,account_id)
78
79         #get the browse record related to user_id and account_id
80         temp = self._get_related_user_account_recursiv(cr,uid,user_id,account_id)
81         # temp = self.pool.get('analytic_user_funct_grid').search(cr, uid, [('user_id', '=', user_id),('account_id', '=', account_id) ])
82         if not temp:
83             #if there isn't any record for this user_id and account_id
84             return super(hr_analytic_timesheet, self).on_change_account_id(cr, uid, ids,account_id)
85         else:
86             #get the old values from super and add the value from the new relation analytic_user_funct_grid
87             r = self.pool.get('analytic_user_funct_grid').browse(cr, uid, temp)[0]
88             res.setdefault('value',{})
89             res['value']= super(hr_analytic_timesheet, self).on_change_account_id(cr, uid, ids,account_id)['value']
90             res['value']['product_id'] = r.product_id.id
91             res['value']['product_uom_id'] = r.product_id.product_tmpl_id.uom_id.id
92
93             #the change of product has to impact the amount, uom and general_account_id
94             a = r.product_id.product_tmpl_id.property_account_expense.id
95             if not a:
96                 a = r.product_id.categ_id.property_account_expense_categ.id
97             if not a:
98                 raise osv.except_osv(_('Error !'),
99                         _('There is no expense account define ' \
100                                 'for this product: "%s" (id:%d)') % \
101                                 (r.product_id.name, r.product_id.id,))
102             amount = unit_amount *  self.pool.get('product.uom')._compute_price(cr, uid,
103                     r.product_id.uom_id.id, r.product_id.standard_price, False)
104             res ['value']['amount']= - round(amount, 2)
105             res ['value']['general_account_id']= a
106         return res
107
108     def on_change_user_id(self, cr, uid, ids,user_id, account_id, unit_amount=0):
109         res = {}
110         if not (user_id):
111             #avoid a useless call to super
112             return res 
113
114         #get the old values from super
115         res = super(hr_analytic_timesheet, self).on_change_user_id(cr, uid, ids,user_id)
116
117         if account_id:
118             #get the browse record related to user_id and account_id
119             # temp = self.pool.get('analytic_user_funct_grid').search(cr, uid, [('user_id', '=', user_id),('account_id', '=', account_id) ])
120             temp = self._get_related_user_account_recursiv(cr,uid,user_id,account_id)
121             if temp:
122                 #add the value from the new relation analytic_user_funct_grid
123                 r = self.pool.get('analytic_user_funct_grid').browse(cr, uid, temp)[0]
124                 res['value']['product_id'] = r.product_id.id    
125
126                 #the change of product has to impact the amount, uom and general_account_id
127                 a = r.product_id.product_tmpl_id.property_account_expense.id
128                 if not a:
129                     a = r.product_id.categ_id.property_account_expense_categ.id
130                 if not a:
131                     raise osv.except_osv(_('Error !'),
132                             _('There is no expense account define ' \
133                                     'for this product: "%s" (id:%d)') % \
134                                     (r.product_id.name, r.product_id.id,))
135                 amount = unit_amount * r.product_id.uom_id._compute_price(cr, uid,
136                         r.product_id.uom_id.id, r.product_id.standard_price, False)
137                 res ['value']['amount']= - round(amount, 2)
138                 res ['value']['general_account_id']= a
139         return res
140
141 hr_analytic_timesheet()
142