Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
erp5
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Sven Franck
erp5
Commits
f5aacbf9
Commit
f5aacbf9
authored
May 07, 2012
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert fix to getInstancePropertyAndBaseCategoryList
This reverts commit
51d40d1e
.
parent
bef3c525
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
14 deletions
+3
-14
product/ERP5Type/ERP5Type.py
product/ERP5Type/ERP5Type.py
+3
-14
No files found.
product/ERP5Type/ERP5Type.py
View file @
f5aacbf9
...
...
@@ -45,7 +45,6 @@ ERP5TYPE_SECURITY_GROUP_ID_GENERATION_SCRIPT = 'ERP5Type_asSecurityGroupId'
from
TranslationProviderBase
import
TranslationProviderBase
from
sys
import
exc_info
from
types
import
StringType
from
zLOG
import
LOG
,
ERROR
from
Products.CMFCore.exceptions
import
zExceptions_Unauthorized
...
...
@@ -522,20 +521,10 @@ class ERP5TypeInformation(XMLObject,
ob
=
self
.
constructTempInstance
(
self
,
self
.
getId
())
property_list
=
list
(
getattr
(
ob
.
__class__
,
'_properties'
,
[]))
self
.
updatePropertySheetDefinitionDict
({
'_properties'
:
property_list
})
return_set
=
set
()
class_property_list
=
list
(
getClassPropertyList
(
ob
.
__class__
))
for
property_sheet
in
ob
.
getTypePropertySheetList
():
if
property_sheet
not
in
class_property_list
:
class_property_list
.
append
(
property_sheet
)
for
property_sheet
in
iter
(
class_property_list
):
property_sheet_tool
=
self
.
getPortalObject
().
portal_property_sheets
if
type
(
property_sheet
)
==
StringType
:
property_sheet_obj
=
property_sheet_tool
[
property_sheet
]
for
property
in
property_sheet_obj
.
contentValues
():
return_set
.
add
(
property
.
getTitle
())
else
:
property_list
+=
getattr
(
property_sheet
,
'_properties'
,
()
)
for
property_sheet
in
getClassPropertyList
(
ob
.
__class__
):
property_list
+=
getattr
(
property_sheet
,
'_properties'
,
()
)
return_set
=
set
()
for
property
in
property_list
:
if
property
[
'type'
]
==
'content'
:
for
suffix
in
property
[
'acquired_property_id'
]:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment