我是Camunda的新手,没有找到任何解释如何实现以下内容的教程或参考资料:
启动流程时,我希望用户在发票中添加任意数量的商品。在下一个用户任务中,所有这些项目及其数量应打印给批准数据的人。
我还不明白如何在进程及其变量工作之间获得这种1:n关系。我是否需要为每个项目启动子流程?或者我必须使用自定义Java对象?如果是这样,我如何从任务列表中将表单元素映射到这样的对象?
答案 0 :(得分:5)
我在Thorben提供的链接帮助下工作。
诀窍是使用JSON流程变量来存储更复杂的数据结构。我在“Start Event”中初始化了这些列表。这可以在表单中完成,也可以在我的情况下在Listener中完成:
execution.setVariable("items", Variables.objectValue(Arrays.asList(dummyItem)).serializationDataFormat("application/json").create());
请注意,我添加了一个dummyItem,因为在序列化过程中,空列表会丢失其类型信息。
接下来,在我的自定义表单中,我加载此列表,可以添加/删除项目。使用camForm回调可以保留列表。
<form role="form" name="form">
<script cam-script type="text/form-script">
/*<![CDATA[*/
$scope.items = [];
$scope.addItem = function() {
$scope.items.push({name: '', count: 0, price: 0.0});
};
$scope.removeItem = function(index) {
$scope.items.splice(index, 1);
};
camForm.on('form-loaded', function() {
camForm.variableManager.fetchVariable('items');
});
// variables-fetched is not working with "saved" forms, so we need to use variables-restored, which gets called after variables-fetched
camForm.on('variables-restored', function() {
$scope.items = camForm.variableManager.variableValue('items');
});
camForm.on('store', function() {
camForm.variableManager.variableValue('items', $scope.items);
});
/*]]>*/
</script>
<table class="table">
<thead>
<tr><th>Name</th><th>Count</th><th>Price</th><th></th></tr>
</thead>
<tbody>
<tr ng-repeat="i in items">
<td><input type="text" ng-model="i.name"/></td>
<td><input type="number" ng-model="i.count"/></td>
<td><input type="number" ng-model="i.price"/></td>
<td>
<button class="btn btn-default" ng-click="removeItem($index)">
<span class="glyphicon glyphicon-minus"></span>
</button>
</td>
</tr>
</tbody>
<tfoot>
<tr>
<td colspan="4">
<button class="btn btn-default" ng-click="addItem()">
<span class="glyphicon glyphicon-plus"></span>
</button>
</td>
</tr>
</tfoot>
</table>
</form>
有两件事还没有成功: