Replicate workflow annotations to document's notes
# iterate over the documents attached to the current workflow #foreach( $doc in $documents ) # retrieve the last task completion event #set($lastEvent = $WorkflowTool.getLastHistory($processId,'task.end')) # apply the 'rejected' stamp and move the file to the Approved subfolder $StampTool.stamp($doc, 'approved', $lastEvent.user.username); $DocTool.move($doc, 'Approved', $lastEvent.user.username); # make a pdf conversion of the approved file an store it in a public area #set($docConverted = $DocTool.convert($doc, "pdf", $lastEvent.user.username)) $DocTool.move($docConverted, "/AreaTEST/TEST MERITOR/PUBLIC/Approved", $lastEvent.user.username); # get the collection of all annotation done by the participants in the current workflow #set($histories = $WorkflowTool.getHistories($processId, 'task.note')) $log.info("histories: $histories") $log.info("histories.size: $histories.size()") # iterate over the annotations and replicate them in the document #set($noteDAO = $ContextTool.getBean('DocumentNoteDAO')) #foreach( $hist in $histories ) # create the new note to be saved for the document #set($note = $ClassTool.newInstance('com.logicaldoc.core.document.DocumentNote')) # prepare all the metadata and save to database $note.setDocId($doc.id); $note.setUsername($hist.username); $note.setMessage($hist.comment); $note.setDate($doc.date); $note.setUserId($hist.userId); $note.setFileName($doc.fileName); $note.setFileVersion($doc.fileVersion); $noteDAO.store($note, null); #end #end
This procedure is designed to be executed inside a workflow, the current workflow's instance identifier is stored in the variable processId.
For each document attached, to the workflow the approved stamp is applied and a pdf conversion is stored in a public folder.
Once the workflow has been completed, the annotations left by the users stay in the history of the forkflow(inside the workflow dashboard), so in order to have them more easily accessible by the normal users, each annotation is replicated into the documents as notes.