Skip to content

Commit

Permalink
impl
Browse files Browse the repository at this point in the history
Issue #191
  • Loading branch information
rsoika committed Aug 1, 2023
1 parent ea4cb8a commit f23de99
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,12 @@ public ItemCollection createWorkitem(ItemCollection source)
workitem.task(source.getItemValueInteger(DocumentImportService.SOURCE_ITEM_TASK));
workitem.event(source.getItemValueInteger(DocumentImportService.SOURCE_ITEM_EVENT));
workitem.setWorkflowGroup(source.getItemValueString("workflowgroup"));

// Add import Information
workitem.setItemValue("document.import.type", source.getItemValue("type"));
workitem.setItemValue("document.import.selector", source.getItemValue("selector"));
workitem.setItemValue("document.import.options", source.getItemValue("options"));

return workitem;
}

Expand Down

0 comments on commit f23de99

Please sign in to comment.