forked from tryton/party
-
Notifications
You must be signed in to change notification settings - Fork 0
/
category.py
73 lines (62 loc) · 2.31 KB
/
category.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
from trytond.model import ModelView, ModelSQL, fields, Unique
from trytond.pyson import Eval
__all__ = ['Category']
STATES = {
'readonly': ~Eval('active'),
}
DEPENDS = ['active']
SEPARATOR = ' / '
class Category(ModelSQL, ModelView):
"Category"
__name__ = 'party.category'
name = fields.Char('Name', required=True, states=STATES, translate=True,
depends=DEPENDS)
parent = fields.Many2One('party.category', 'Parent',
select=True, states=STATES, depends=DEPENDS)
childs = fields.One2Many('party.category', 'parent',
'Children', states=STATES, depends=DEPENDS)
active = fields.Boolean('Active')
@classmethod
def __setup__(cls):
super(Category, cls).__setup__()
t = cls.__table__()
cls._sql_constraints = [
('name_parent_uniq', Unique(t, t.name, t.parent),
'The name of a party category must be unique by parent.'),
]
cls._error_messages.update({
'wrong_name': ('Invalid category name "%%s": You can not use '
'"%s" in name field.' % SEPARATOR),
})
cls._order.insert(0, ('name', 'ASC'))
@staticmethod
def default_active():
return True
@classmethod
def validate(cls, categories):
super(Category, cls).validate(categories)
cls.check_recursion(categories, rec_name='name')
for category in categories:
category.check_name()
def check_name(self):
if SEPARATOR in self.name:
self.raise_user_error('wrong_name', (self.name,))
def get_rec_name(self, name):
if self.parent:
return self.parent.get_rec_name(name) + SEPARATOR + self.name
return self.name
@classmethod
def search_rec_name(cls, name, clause):
if isinstance(clause[2], basestring):
values = clause[2].split(SEPARATOR)
values.reverse()
domain = []
field = 'name'
for name in values:
domain.append((field, clause[1], name))
field = 'parent.' + field
return domain
# TODO Handle list
return [('name',) + tuple(clause[1:])]