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