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
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
iv
erp5
Commits
50dd666d
Commit
50dd666d
authored
Jul 18, 2016
by
iv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ERP5Workflow: don't crash if worklist has not action_box_url set
parent
b5902e8c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
product/ERP5Workflow/Tool/WorkflowTool.py
product/ERP5Workflow/Tool/WorkflowTool.py
+4
-2
No files found.
product/ERP5Workflow/Tool/WorkflowTool.py
View file @
50dd666d
...
...
@@ -1286,9 +1286,11 @@ def generateActionList(worklist_metadata, worklist_result, portal_url):
if
document_count
:
format_data
=
metadata
[
'format_data'
]
format_data
.
_push
({
'count'
:
document_count
})
append
({
'name'
:
metadata
[
'worklist_title'
]
%
format_data
,
'url'
:
'%s/%s'
%
(
portal_url
,
metadata
[
'action_box_url'
]
%
\
format_data
),
'url'
:
portal_url
if
not
metadata
[
'action_box_url'
]
else
\
'%s/%s'
%
(
portal_url
,
metadata
[
'action_box_url'
]
%
format_data
),
'worklist_id'
:
metadata
[
'worklist_id'
],
'workflow_title'
:
metadata
[
'workflow_title'
],
'workflow_id'
:
metadata
[
'workflow_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