关于纵向配置/横向配置/动态审批人等动态节点中设置处理对象插件的方法,记载如下。
例如,使用脚本开发模式的示例来进行说明。
插件的追加设置,编写在以下目录下的plugin.xml中。
%ServerManager%\plugin\jp.co.intra_mart.workflow.plugin.authority.
node.dynamic/plugin.xml
【编写内容】
・在<configPage>~</configPage>中,编写以下程序路径:
在[路径定义]页面中,从节点中设置的处理对象列表页面中选择处理对象插件时会被调用的程序路径。
・在extend>~</extend>中编写决定处理对象的程序路径。
【plugin.xml】
--------------------------------------------------------------------------
<authority name="sample"
id="jp.co.intra_mart.sample.workflow.purchase.plugin.authority.
node.approve.item_total.script"
version="7.2.0"
rank="910"
enable="true">
<configPage>
<script pagePath="sample/workflow/purchase/plugin/authority/
item_total/itemTotalConfig">
<parameter key="pluginName" value="SAMPLE.IMW.CAP.030" />
</script>
</configPage>
<extend>
<script file="sample/workflow/purchase/plugin/authority/
item_total/WorkflowAuthorityExecEventListener" />
</extend>
</authority>
--------------------------------------------------------------------------
设置plugin.xml文件之后,重启服务器,路径定义/动态审批节点(1-c时)的处理对象将会被追加。
在作为例子记载的示例中,“合计金额[Script]”会被追加。
-- 适用对象 ----------------------------------------------------------------
iAP/Accel Platform/全部版本
iWP/Web系统构建基础/IM-Workflow
--------------------------------------------------------------------------------
FAQID:172
在纵向配置/横向配置/动态审批人等动态节点中设置处理对象插件的方法