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
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Roque
erp5
Commits
d4fc3821
Commit
d4fc3821
authored
Oct 05, 2016
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5Form: use decorator syntax to apply lazyMethod on Listbox/PlanningBox methods
parent
1622517c
Changes
2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
73 additions
and
145 deletions
+73
-145
product/ERP5Form/ListBox.py
product/ERP5Form/ListBox.py
+70
-139
product/ERP5Form/PlanningBox.py
product/ERP5Form/PlanningBox.py
+3
-6
No files found.
product/ERP5Form/ListBox.py
View file @
d4fc3821
This diff is collapsed.
Click to expand it.
product/ERP5Form/PlanningBox.py
View file @
d4fc3821
...
...
@@ -1222,20 +1222,19 @@ class BasicStructure:
return
object_list
@
lazyMethod
def
getPortalObject
(
self
):
"""Return the portal object.
"""
return
self
.
context
.
getPortalObject
()
getPortalObject
=
lazyMethod
(
getPortalObject
)
@
lazyMethod
def
getSelectionTool
(
self
):
"""Return the Selection Tool.
"""
return
self
.
getPortalObject
().
portal_selections
getSelectionTool
=
lazyMethod
(
getSelectionTool
)
@
lazyMethod
def
getPortalTypeList
(
self
):
"""
Return the list of portal types for filtering. Return None when empty.
...
...
@@ -1243,8 +1242,6 @@ class BasicStructure:
portal_types
=
[
c
[
0
]
for
c
in
self
.
field
.
get_value
(
'portal_types'
)]
return
portal_types
or
None
getPortalTypeList
=
lazyMethod
(
getPortalTypeList
)
def
getReportGroupList
(
self
,
report_tree_list
=
[],
\
sec_layer_method_name
=
None
,
show_stat
=
0
):
"""
...
...
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