~vauxoo/addons-vauxoo/7.0_test_hr_expense_dev_jorge

« back to all changes in this revision

Viewing changes to issue_view/model/project_issue.py

  • Committer: Jose Antonio
  • Date: 2012-06-29 20:58:53 UTC
  • Revision ID: jose@vauxoo.com-20120629205853-05t24x72477tm3yw

[ADD] Added filter in the view projects_issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
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 crm import crm
 
23
from datetime import datetime
 
24
from osv import fields,osv
 
25
from tools.translate import _
 
26
import binascii
 
27
import time
 
28
import tools
 
29
 
 
30
 
 
31
 
 
32
 
 
33
class project_issue(osv.osv):
 
34
 
 
35
    _inherit = 'project.issue'
 
36
 
 
37
    
 
38
    _columns = {
 
39
        'task_id': fields.many2one('project.task', 'Task', domain="[('project_id','=',project_id)]"),
 
40
        'product_backlog_id': fields.related('task_id', 'product_backlog_id',relation='project.scrum.product.backlog', type='many2one', string='Backlog',store=True),
 
41
        'sprint_id': fields.related('task_id', 'sprint_id',relation='project.scrum.sprint', type='many2one', string='Sprint',store=True),
 
42
    }
 
43
    
 
44
project_issue()