예제 #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)