mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-24 17:32:48 +00:00
6455: OpenOffice transformer and extractor register regardless of the initial connection state. 6456: Fix for WCM-636 (Clicking OK twice while deleting web project results in exception) 6457: Updated installers and associated config 6458: AR-1669 Add getQnamePath to Javascript 6459: Fix for AWC-1456 - Word and Excel documents were being stored as octet streams rather than their correct mimetype 6460: Reverse order of reject & approve transitions, so that approve appears first in list of ui actions. 6461: Removed Process.exe (often detected as a virus) and updated config wizard. 6462: Switch to synchronous indexing for AVM by default 6463: Better support to query the state of AVM indexes 6464: Added Office 2007 document mimetypes and icons 6465: Added Office 2007 icons without the typo this time git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6736 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
43 lines
1.4 KiB
XML
43 lines
1.4 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<process-definition xmlns="urn:jbpm.org:jpdl-3.1" name="wf:review">
|
|
|
|
<swimlane name="initiator" />
|
|
|
|
<start-state name="start">
|
|
<task name="wf:submitReviewTask" swimlane="initiator" />
|
|
<transition name="" to="review" />
|
|
</start-state>
|
|
|
|
<swimlane name="reviewer">
|
|
<assignment class="org.alfresco.repo.workflow.jbpm.AlfrescoAssignment">
|
|
<actor>#{bpm_assignee}</actor>
|
|
</assignment>
|
|
</swimlane>
|
|
|
|
<task-node name="review">
|
|
<task name="wf:reviewTask" swimlane="reviewer">
|
|
<event type="task-create">
|
|
<script>
|
|
if (bpm_workflowDueDate != void) taskInstance.dueDate = bpm_workflowDueDate;
|
|
if (bpm_workflowPriority != void) taskInstance.priority = bpm_workflowPriority;
|
|
</script>
|
|
</event>
|
|
</task>
|
|
<transition name="approve" to="approved" />
|
|
<transition name="reject" to="rejected" />
|
|
</task-node>
|
|
|
|
<task-node name="rejected">
|
|
<task name="wf:rejectedTask" swimlane="initiator" />
|
|
<transition name="" to="end" />
|
|
</task-node>
|
|
|
|
<task-node name="approved">
|
|
<task name="wf:approvedTask" swimlane="initiator" />
|
|
<transition name="" to="end" />
|
|
</task-node>
|
|
|
|
<end-state name="end" />
|
|
|
|
</process-definition> |