Plone 工作流程:如何检查对象的多个属性?
在我们的项目中,我们希望有一个工作流程,在继续下一个状态之前检查所有三个签名(通过布尔值实现)是否已添加到“Project”类型的对象中。
不幸的是,在通过网络编辑工作流程时这似乎是不可能的,而且我们也无法在文档中找到它。
我们该怎么做呢?
非常感谢您的帮助。
In our project we would like to have a workflow which checks whether all three signatures (implemented through booleans) have been added to an object of type "Project" before it continues to the next state.
Unfortunately this doesn't seem to be possible while editing the workflow through the web and we haven't been able to find it in the documentation either.
How would we do it?
Thank you very much for any assistance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用转换守卫表达式来检查这一点:
这可以通过 ZMI 访问:
如果您想让它更容易并完成所有TTW,您也可以将登录放入自定义文件夹中的脚本中
Use the transition Guard expression to check for this:
This can be access through the ZMI:
You could put the login into a Script in the custom folder also if you wanted to make it easier and do it all TTW.