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
Hardik Juneja
erp5
Commits
a7bbfacb
Commit
a7bbfacb
authored
Apr 28, 2015
by
wenjie.zheng
Committed by
Sebastien Robin
Jul 16, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
id_as_reference.py: remove setRef, deploy suffix for workflow tool objects.
parent
68f23ad5
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
8 deletions
+1
-8
product/ERP5Type/id_as_reference.py
product/ERP5Type/id_as_reference.py
+1
-8
No files found.
product/ERP5Type/id_as_reference.py
View file @
a7bbfacb
...
@@ -78,17 +78,10 @@ def IdAsReferenceMixin(suffix):
...
@@ -78,17 +78,10 @@ def IdAsReferenceMixin(suffix):
return
getattr
(
aq_base
(
self
),
'default_reference'
,
(
args
or
[
None
])[
0
])
return
getattr
(
aq_base
(
self
),
'default_reference'
,
(
args
or
[
None
])[
0
])
def
_setReference
(
self
,
value
):
def
_setReference
(
self
,
value
):
self
.
__dict__
.
pop
(
'default_reference'
,
None
)
# BBB
self
.
__dict__
.
pop
(
'default_reference'
,
None
)
self
.
setId
(
value
+
suffix
)
self
.
setId
(
value
+
suffix
)
security
.
declareProtected
(
Permissions
.
ModifyPortalContent
,
'setReference'
)
security
.
declareProtected
(
Permissions
.
ModifyPortalContent
,
'setReference'
)
setReference
=
_setReference
setReference
=
_setReference
def
_setRef
(
self
,
value
):
self
.
__dict__
.
pop
(
'ref'
,
None
)
# BBB
self
.
setId
(
suffix
+
value
)
security
.
declareProtected
(
Permissions
.
ModifyPortalContent
,
'setRef'
)
setRef
=
_setRef
return
IdAsReferenceMixin
return
IdAsReferenceMixin
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