Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_rtl_support
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
Romain Courteaud
erp5_rtl_support
Commits
aa8e9a60
Commit
aa8e9a60
authored
Dec 20, 2011
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix getId/getTitle of broken objects
parent
0c1cc495
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
product/ERP5Type/dynamic/lazy_class.py
product/ERP5Type/dynamic/lazy_class.py
+4
-0
No files found.
product/ERP5Type/dynamic/lazy_class.py
View file @
aa8e9a60
...
@@ -28,6 +28,10 @@ class ERP5BaseBroken(Broken, ERP5Base):
...
@@ -28,6 +28,10 @@ class ERP5BaseBroken(Broken, ERP5Base):
d
=
dict
(
PersistentBroken
.
__dict__
,
**
d
)
d
=
dict
(
PersistentBroken
.
__dict__
,
**
d
)
for
x
in
'__dict__'
,
'__metaclass__'
,
'__weakref__'
:
for
x
in
'__dict__'
,
'__metaclass__'
,
'__weakref__'
:
del
d
[
x
]
del
d
[
x
]
def
get
(
*
args
):
return
lambda
self
:
self
.
__dict__
[
'__Broken_state__'
].
get
(
*
args
)
for
x
in
'id'
,
'title'
:
d
[
x
]
=
property
(
get
(
x
,
getattr
(
ERP5Base
,
x
,
None
)))
return
type
(
name
,
base
,
d
)
return
type
(
name
,
base
,
d
)
def
__getattr__
(
self
,
name
):
def
__getattr__
(
self
,
name
):
...
...
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