示例#1
0
 def domain_get(self, record):
     screen_domain, attr_domain = self.domains_get(record)
     return localize_domain(inverse_leaf(screen_domain)) + attr_domain
示例#2
0
 def domain_get(self, record):
     screen_domain, attr_domain = self.domains_get(record)
     return [
         localize_domain(inverse_leaf(screen_domain), self.name),
         attr_domain
     ]
示例#3
0
文件: field.py 项目: tarun-kmr/tryton
 def domain_get(self, record):
     screen_domain, attr_domain = self.domains_get(record)
     return concat(localize_domain(inverse_leaf(screen_domain)),
                   attr_domain)
示例#4
0
文件: field.py 项目: coopengo/tryton
 def domain_get(self, record):
     screen_domain, attr_domain = self.domains_get(record)
     return concat(localize_domain(inverse_leaf(screen_domain), self.name),
         attr_domain)