Commit 7ec5eaff authored by Jérome Perrin's avatar Jérome Perrin

similar to 9610, but more elegant, we get __class__ _properties at initialization.



git-svn-id: https://svn.erp5.org/repos/public/erp5/trunk@9677 20353a03-c40f-0410-a6d1-a30d3c3de9de
parent 6252cbed
...@@ -171,7 +171,7 @@ def initializePortalTypeDynamicProperties(self, klass, ptype): ...@@ -171,7 +171,7 @@ def initializePortalTypeDynamicProperties(self, klass, ptype):
# Initiatise portal_type properties (XXX) # Initiatise portal_type properties (XXX)
ptype_object = getattr(aq_base(self.portal_types), ptype, None) ptype_object = getattr(aq_base(self.portal_types), ptype, None)
cat_list = [] cat_list = []
prop_list = [] prop_list = list(getattr(klass, '_properties', []))
constraint_list = [] constraint_list = []
if (ptype_object is not None) and \ if (ptype_object is not None) and \
(ptype_object.meta_type == 'ERP5 Type Information'): (ptype_object.meta_type == 'ERP5 Type Information'):
...@@ -399,8 +399,7 @@ class Base( CopyContainer, PortalContent, ActiveObject, ERP5PropertyManager ): ...@@ -399,8 +399,7 @@ class Base( CopyContainer, PortalContent, ActiveObject, ERP5PropertyManager ):
self._aq_dynamic('id') # Make sure aq_dynamic has been called once self._aq_dynamic('id') # Make sure aq_dynamic has been called once
if Base.aq_portal_type.has_key(ptype): if Base.aq_portal_type.has_key(ptype):
return tuple(list(getattr(Base.aq_portal_type[ptype], '_properties', ())) + return tuple(list(getattr(Base.aq_portal_type[ptype], '_properties', ())) +
list(getattr(self, '_local_properties', ())) + list(getattr(self, '_local_properties', ())))
list(ERP5PropertyManager._propertyMap(self)))
return ERP5PropertyManager._propertyMap(self) return ERP5PropertyManager._propertyMap(self)
def _aq_dynamic_pmethod(self, id): def _aq_dynamic_pmethod(self, id):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment