~partner-contact-core-editors/partner-contact-management/6.1

« back to all changes in this revision

Viewing changes to base_address_category/base_address.py

  • Committer: Joël Grand-Guillaume
  • Date: 2011-08-12 12:53:16 UTC
  • Revision ID: joel.grandguillaume@camptocamp.com-20110812125316-8i0p4211i4wb8b8p
[ADD] Commit of the modules used by C2C to move in our new public branch
(lp:c2c-addons/6.1  rev 2)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
# Copyright (c) 2010 Camptocamp SA (http://www.camptocamp.com) 
 
5
# All Right Reserved
 
6
#
 
7
# Author : Nicolas Bessi (Camptocamp), Joel Grand-Guillaume
 
8
#
 
9
# WARNING: This program as such is intended to be used by professional
 
10
# programmers who take the whole responsability of assessing all potential
 
11
# consequences resulting from its eventual inadequacies and bugs
 
12
# End users who are looking for a ready-to-use solution with commercial
 
13
# garantees and support are strongly adviced to contract a Free Software
 
14
# Service Company
 
15
#
 
16
# This program is Free Software; you can redistribute it and/or
 
17
# modify it under the terms of the GNU General Public License
 
18
# as published by the Free Software Foundation; either version 2
 
19
# of the License, or (at your option) any later version.
 
20
#
 
21
# This program is distributed in the hope that it will be useful,
 
22
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
23
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
24
# GNU General Public License for more details.
 
25
#
 
26
# You should have received a copy of the GNU General Public License
 
27
# along with this program; if not, write to the Free Software
 
28
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
29
#
 
30
##############################################################################
 
31
 
 
32
 
 
33
from osv import osv, fields
 
34
import time
 
35
from mx import DateTime
 
36
import netsvc
 
37
import string
 
38
 
 
39
class ResPartnerAdressCategory(osv.osv):
 
40
    def name_get(self, cr, uid, ids, context={}):
 
41
        if not len(ids):
 
42
            return []
 
43
        reads = self.read(cr, uid, ids, ['name','parent_id'], context)
 
44
        res = []
 
45
        for record in reads:
 
46
            name = record['name']
 
47
            if record['parent_id']:
 
48
                name = record['parent_id'][1]+' / '+name
 
49
            res.append((record['id'], name))
 
50
        return res
 
51
 
 
52
    def _name_get_fnc(self, cr, uid, ids, prop, unknow_none, unknow_dict):
 
53
        res = self.name_get(cr, uid, ids)
 
54
        return dict(res)
 
55
    def _check_recursion(self, cr, uid, ids):
 
56
        level = 100
 
57
        while len(ids):
 
58
            cr.execute('select distinct parent_id from res_partner_address_category\
 
59
             where id in ('+','.join(map(unicode,ids))+')')
 
60
            ids = filter(None, map(lambda x:x[0], cr.fetchall()))
 
61
            if not level:
 
62
                return False
 
63
            level -= 1
 
64
        return True
 
65
        
 
66
    
 
67
 
 
68
    _description='Partner address Categories'
 
69
    _name = 'res.partner.address.category'
 
70
    _columns = {
 
71
        'name': fields.char('Category Name', required=True, size=64),
 
72
        'parent_id': fields.many2one('res.partner.address.category', 'Parent Category', select=True),
 
73
        'complete_name': fields.function(_name_get_fnc, method=True, type="char", string='Name'),
 
74
        'child_ids': fields.one2many('res.partner.address.category', 'parent_id', 'Childs Category'),
 
75
        'active' : fields.boolean('Active'),
 
76
    }
 
77
    _constraints = [
 
78
        (_check_recursion, 'Error ! You can not create recursive categories.', ['parent_id'])
 
79
    ]
 
80
    _defaults = {
 
81
        'active' : lambda *a: 1,
 
82
    }
 
83
    _order = 'parent_id,name'
 
84
    
 
85
ResPartnerAdressCategory()
 
86
 
 
87
 
 
88
class ResPartnerAddress(osv.osv):
 
89
    _inherit = "res.partner.address"
 
90
    
 
91
    _columns = {
 
92
        'category_id': fields.many2many('res.partner.address.category', 'res_partner_address_category_rel', 'adress_id', 'category_id', 'Adress categories'),
 
93
    }
 
94
 
 
95
ResPartnerAddress()
 
 
b'\\ No newline at end of file'