Alfresco Activiti工作流程:如何显示在按钮中确认的弹出对话框(消息框)?

问题描述 投票:0回答:1

我在与(文件:test-model.xml)相同的工作流模型中定义自己的结果约束:

                <constraints>
                    <constraint name="my:myOutcomeOptions" type="LIST">
                        <parameter name="allowedValues">
                            <list>
                                <value>Approve</value>
                                <value>Reject</value>
                            </list>
                        </parameter>
                    </constraint>
                </constraints>

以及自定义序列流到工作流定义(文件:test.bpmn20.xml):

<exclusiveGateway id="exclusiveGateway1"</exclusiveGateway>
<sequenceFlow id="flow3" name="Rejected" sourceRef="exclusiveGateway1" targetRef="Rejected">
    <conditionExpression xsi:type="tFormalExpression"> <![CDATA[${test_a1approvecount < test_a2approvecount}]]> </conditionExpression>
</sequenceFlow>

我想在单击“拒绝”按钮时显示弹出窗口确认,然后在弹出窗口中单击按钮确认(确定和取消)后,显示更改为仪表板。请帮助我!

谢谢你前进!

popup alfresco message activiti confirm
1个回答
0
投票

这在户外很难​​实现。另一件事是,您将自己与后端和前端混淆,也使其他人混淆。

© www.soinside.com 2019 - 2024. All rights reserved.