~credativ/openobject-addons/c2c-extra

« back to all changes in this revision

Viewing changes to project_task_delegate_state/project.py

  • Committer: Viktor Nagy
  • Date: 2011-12-27 08:31:16 UTC
  • mto: (5183.12.356 extra-6.0)
  • mto: This revision was merged to the branch mainline in revision 5194.
  • Revision ID: viktor.nagy@toolpart.hu-20111227083116-zbt5lp68fx5xi1bj
Added project_task_delegate_state.

The delegate method of project.task immediately opens the new task.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- encoding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2009-2011 ToolPart Team LLC (<http://toolpart.hu>).
 
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 osv
 
23
 
 
24
class task(osv.osv):
 
25
    _inherit = 'project.task'
 
26
 
 
27
    def do_delegate(self, cr, uid, task_id, delegate_data={}, context=None):
 
28
        task_id = super(task, self).do_delegate(cr, uid, task_id, delegate_data, context)
 
29
        self.do_open(cr, uid, [task_id], context)
 
30
        return task_id
 
31
 
 
32
task()
 
33