~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to project_btree/project.py

  • Committer: Julio Serna
  • Date: 2013-05-21 22:56:36 UTC
  • mto: (543.7.7 addons-vauxoo-7.0)
  • mto: This revision was merged to the branch mainline in revision 805.
  • Revision ID: julio@vauxoo.com-20130521225636-96vuahogonye7l6r
[ADD] added module that create view hierarchical add parent_id and child_ids in model project

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-today OpenERP SA (<http://www.openerp.com>)
 
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 datetime import datetime, date
 
23
from lxml import etree
 
24
import time
 
25
 
 
26
from openerp import SUPERUSER_ID
 
27
from openerp import tools
 
28
from openerp.osv import fields, osv
 
29
from openerp.tools.translate import _
 
30
 
 
31
 
 
32
class project_project(osv.Model):
 
33
 
 
34
    _inherit = 'project.project'
 
35
    
 
36
    def _get_projects(self, cr, uid, ids, context=None):
 
37
        project_project_obj = self.pool.get('project.project')
 
38
        return project_project_obj.search(cr, uid, [('analytic_account_id', '=', ids[0])])
 
39
    
 
40
    def action_projects(self, cr, uid, context=None):
 
41
        project_ids = self.search(cr, uid, [])
 
42
        for project in self.browse(cr, uid, project_ids, context=context):
 
43
            self.write(cr, uid, [project.id], {'name': project.name})
 
44
        return True
 
45
    
 
46
    def _get_parent_id(self, cr, uid, ids, name, args, context=None):
 
47
        res = {}
 
48
        for project in self.browse(cr, uid, ids, context=context):
 
49
            project_parent_id = self.search(cr, uid, [('analytic_account_id', '=', project.parent_id.id)])
 
50
            res[project.id] = project_parent_id and project_parent_id[0] or None
 
51
        return res
 
52
        
 
53
    _columns = {
 
54
        'parent_id2': fields.function(_get_parent_id, type='many2one',
 
55
            relation='project.project',
 
56
            string='Parent Project',
 
57
            store={
 
58
                'account.analytic.account': (_get_projects, ['parent_id','name'], 10)}
 
59
                ,select=2),
 
60
        'child_ids2': fields.one2many('project.project', 'parent_id2', 'Child Accounts'),
 
61
 
 
62
    }
 
 
b'\\ No newline at end of file'