Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
erp5_workflow
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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wenjie.zheng
erp5_workflow
Commits
21f5943c
Commit
21f5943c
authored
Sep 22, 2015
by
wenjie.zheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Worklist.py: fix worklist guard, keep it be as the same as transition/variable guard.
parent
66987968
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
16 deletions
+10
-16
product/ERP5Workflow/Document/Worklist.py
product/ERP5Workflow/Document/Worklist.py
+10
-16
No files found.
product/ERP5Workflow/Document/Worklist.py
View file @
21f5943c
...
...
@@ -30,16 +30,12 @@
import
re
from
AccessControl
import
ClassSecurityInfo
from
Acquisition
import
aq_inner
,
aq_parent
from
Persistence
import
PersistentMapping
from
Products.CMFCore.utils
import
getToolByName
from
Products.ERP5Type
import
Permissions
,
PropertySheet
from
Products.ERP5Type.id_as_reference
import
IdAsReferenceMixin
from
Products.DCWorkflow.Expression
import
createExprContext
from
Products.ERP5Type.XMLObject
import
XMLObject
from
Products.
DCWorkflow.Expression
import
Expression
,
StateChangeInfo
from
Products.
CMFCore.Expression
import
Expression
from
Products.DCWorkflow.Guard
import
Guard
from
Products.DCWorkflow.permissions
import
ManagePortal
from
zLOG
import
LOG
,
WARNING
...
...
@@ -90,21 +86,19 @@ class Worklist(IdAsReferenceMixin("worklist_", "prefix"), XMLObject):
return res
def generateGuard(self):
if self.getRoleList() != [] or self.getGroupList() != []:
if self.guard == None:
self.guard = Guard(permissions=self.getPermissionList(),
roles=self.getRoleList(),
groups=self.getGroupList(),
expr=self.getExpression())
else:
if self.guard.roles != self.getRoleList():
self.guard.roles = self.getRoleList()
if self.guard.permissions != self.getPermissionList():
self.guard.permissions = self.getPermissionList()
if self.guard.groups != self.getGroupList():
self.guard.groups = self.getGroupList()
if self.guard.expr != self.getExpression():
self.guard.expr = self.getExpression()
expr=Expression(self.getExpression()))
if self.getRoleList() is not None:
self.guard.roles = self.getRoleList()
if self.getPermissionList() is not None:
self.guard.permissions = self.getPermissionList()
if self.getGroupList() is not None:
self.guard.groups = self.getGroupList()
if self.getExpression() is not None:
self.guard.expr = Expression(self.getExpression())
def getAvailableCatalogVars(self):
res = []
...
...
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