1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.documentoperation.web; |
18 | |
|
19 | |
import org.apache.commons.lang.StringUtils; |
20 | |
import org.apache.struts.action.ActionForm; |
21 | |
import org.apache.struts.action.ActionForward; |
22 | |
import org.apache.struts.action.ActionMapping; |
23 | |
import org.apache.struts.action.ActionMessage; |
24 | |
import org.apache.struts.action.ActionMessages; |
25 | |
import org.kuali.rice.core.api.util.RiceConstants; |
26 | |
import org.kuali.rice.core.api.util.RiceKeyConstants; |
27 | |
import org.kuali.rice.kew.actionitem.ActionItem; |
28 | |
import org.kuali.rice.kew.actionlist.service.ActionListService; |
29 | |
import org.kuali.rice.kew.actionrequest.ActionRequestValue; |
30 | |
import org.kuali.rice.kew.actionrequest.service.ActionRequestService; |
31 | |
import org.kuali.rice.kew.actionrequest.service.DocumentRequeuerService; |
32 | |
import org.kuali.rice.kew.actions.asyncservices.ActionInvocation; |
33 | |
import org.kuali.rice.kew.actions.asyncservices.ActionInvocationService; |
34 | |
import org.kuali.rice.kew.actions.asyncservices.BlanketApproveProcessorService; |
35 | |
import org.kuali.rice.kew.actions.asyncservices.MoveDocumentService; |
36 | |
import org.kuali.rice.kew.actiontaken.ActionTakenValue; |
37 | |
import org.kuali.rice.kew.actiontaken.service.ActionTakenService; |
38 | |
import org.kuali.rice.kew.api.KewApiServiceLocator; |
39 | |
import org.kuali.rice.kew.api.WorkflowDocument; |
40 | |
import org.kuali.rice.kew.api.WorkflowDocumentFactory; |
41 | |
import org.kuali.rice.kew.api.WorkflowRuntimeException; |
42 | |
import org.kuali.rice.kew.api.document.attribute.DocumentAttributeIndexingQueue; |
43 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
44 | |
import org.kuali.rice.kew.doctype.service.DocumentTypeService; |
45 | |
import org.kuali.rice.kew.engine.node.Branch; |
46 | |
import org.kuali.rice.kew.engine.node.BranchState; |
47 | |
import org.kuali.rice.kew.engine.node.NodeState; |
48 | |
import org.kuali.rice.kew.engine.node.RouteNodeInstance; |
49 | |
import org.kuali.rice.kew.engine.node.service.BranchService; |
50 | |
import org.kuali.rice.kew.engine.node.service.RouteNodeService; |
51 | |
import org.kuali.rice.kew.exception.WorkflowServiceErrorException; |
52 | |
import org.kuali.rice.kew.exception.WorkflowServiceErrorImpl; |
53 | |
import org.kuali.rice.kew.messaging.MessageServiceNames; |
54 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
55 | |
import org.kuali.rice.kew.routeheader.service.RouteHeaderService; |
56 | |
import org.kuali.rice.kew.rule.bo.RuleTemplate; |
57 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
58 | |
import org.kuali.rice.kew.util.KEWConstants; |
59 | |
import org.kuali.rice.kew.web.KewKualiAction; |
60 | |
import org.kuali.rice.kim.api.identity.principal.Principal; |
61 | |
import org.kuali.rice.kim.api.services.KimApiServiceLocator; |
62 | |
import org.kuali.rice.krad.util.GlobalVariables; |
63 | |
import org.kuali.rice.ksb.messaging.service.KSBXMLService; |
64 | |
|
65 | |
import javax.servlet.ServletException; |
66 | |
import javax.servlet.http.HttpServletRequest; |
67 | |
import javax.servlet.http.HttpServletResponse; |
68 | |
import java.io.IOException; |
69 | |
import java.sql.Timestamp; |
70 | |
import java.text.ParseException; |
71 | |
import java.util.ArrayList; |
72 | |
import java.util.HashMap; |
73 | |
import java.util.HashSet; |
74 | |
import java.util.Iterator; |
75 | |
import java.util.List; |
76 | |
import java.util.Map; |
77 | |
import java.util.Set; |
78 | |
import java.util.StringTokenizer; |
79 | |
|
80 | |
|
81 | |
|
82 | |
|
83 | |
|
84 | |
|
85 | |
|
86 | 0 | public class DocumentOperationAction extends KewKualiAction { |
87 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(DocumentOperationAction.class); |
88 | |
private static final String DEFAULT_LOG_MSG = "Admin change via document operation"; |
89 | |
|
90 | |
public ActionForward start(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
91 | 0 | return mapping.findForward("basic"); |
92 | |
} |
93 | |
|
94 | |
public ActionForward getDocument(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
95 | 0 | DocumentOperationForm docForm = (DocumentOperationForm) form; |
96 | 0 | String docId = null; |
97 | |
|
98 | |
|
99 | 0 | if (StringUtils.isEmpty(docForm.getDocumentId())) { |
100 | 0 | GlobalVariables.getMessageMap().putError("documentId", RiceKeyConstants.ERROR_REQUIRED, "Document ID"); |
101 | |
} else { |
102 | |
try { |
103 | 0 | docId = docForm.getDocumentId().trim(); |
104 | 0 | } catch (NumberFormatException nfe) { |
105 | 0 | GlobalVariables.getMessageMap().putError("documentId", RiceKeyConstants.ERROR_NUMERIC, "Document ID"); |
106 | 0 | } |
107 | |
} |
108 | |
|
109 | 0 | if (docId != null) { |
110 | |
|
111 | 0 | docForm.resetOps(); |
112 | 0 | DocumentRouteHeaderValue routeHeader = getRouteHeaderService().getRouteHeader(docId); |
113 | 0 | List routeNodeInstances=getRouteNodeService().findRouteNodeInstances(docId); |
114 | 0 | Map branches1=new HashMap(); |
115 | 0 | List branches=new ArrayList(); |
116 | |
|
117 | 0 | if (routeHeader == null) { |
118 | 0 | GlobalVariables.getMessageMap().putError("documentId", RiceKeyConstants.ERROR_EXISTENCE, "document"); |
119 | |
} else { |
120 | 0 | materializeDocument(routeHeader); |
121 | 0 | docForm.setRouteHeader(routeHeader); |
122 | 0 | setRouteHeaderTimestampsToString(docForm); |
123 | 0 | docForm.setRouteHeaderOp(KEWConstants.NOOP); |
124 | 0 | docForm.setDocumentId(docForm.getDocumentId().trim()); |
125 | 0 | String initials=""; |
126 | 0 | for(Iterator lInitials=routeHeader.getInitialRouteNodeInstances().iterator();lInitials.hasNext();){ |
127 | 0 | String initial=((RouteNodeInstance)lInitials.next()).getRouteNodeInstanceId(); |
128 | 0 | LOG.debug(initial); |
129 | 0 | initials=initials+initial+", "; |
130 | 0 | } |
131 | 0 | if(initials.trim().length()>1){ |
132 | 0 | initials=initials.substring(0,initials.lastIndexOf(",")); |
133 | |
} |
134 | 0 | docForm.setInitialNodeInstances(initials); |
135 | 0 | request.getSession().setAttribute("routeNodeInstances",routeNodeInstances); |
136 | 0 | docForm.setRouteNodeInstances(routeNodeInstances); |
137 | 0 | if(routeNodeInstances!=null){ |
138 | 0 | Iterator routeNodeInstanceIter=routeNodeInstances.iterator(); |
139 | 0 | while(routeNodeInstanceIter.hasNext()){ |
140 | 0 | RouteNodeInstance routeNodeInstance=(RouteNodeInstance) routeNodeInstanceIter.next(); |
141 | 0 | Branch branch=routeNodeInstance.getBranch(); |
142 | 0 | if (! branches1.containsKey(branch.getName())){ |
143 | 0 | branches1.put(branch.getName(),branch); |
144 | 0 | branches.add(branch); |
145 | 0 | LOG.debug(branch.getName()+"; "+branch.getBranchState()); |
146 | |
} |
147 | 0 | } |
148 | 0 | if(branches.size()<1){ |
149 | 0 | branches=null; |
150 | |
} |
151 | |
} |
152 | 0 | branches1.clear(); |
153 | 0 | request.getSession().setAttribute("branches",branches); |
154 | 0 | docForm.setBranches(branches); |
155 | |
} |
156 | |
} |
157 | |
|
158 | 0 | return mapping.findForward("basic"); |
159 | |
} |
160 | |
|
161 | |
|
162 | |
|
163 | |
|
164 | |
|
165 | |
|
166 | |
|
167 | |
private void materializeDocument(DocumentRouteHeaderValue document) { |
168 | 0 | for (Iterator iterator = document.getActionRequests().iterator(); iterator.hasNext();) { |
169 | 0 | ActionRequestValue request = (ActionRequestValue) iterator.next(); |
170 | 0 | if (request.getNodeInstance() == null) { |
171 | 0 | request.setNodeInstance(new RouteNodeInstance()); |
172 | |
} |
173 | 0 | } |
174 | 0 | } |
175 | |
|
176 | |
public ActionForward clear(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
177 | 0 | DocumentOperationForm docForm = (DocumentOperationForm) form; |
178 | 0 | docForm.setRouteHeader(new DocumentRouteHeaderValue()); |
179 | 0 | docForm.setDocumentId(null); |
180 | 0 | return mapping.findForward("basic"); |
181 | |
} |
182 | |
|
183 | |
public ActionMessages establishRequiredState(HttpServletRequest request, ActionForm form) throws Exception { |
184 | 0 | return null; |
185 | |
} |
186 | |
|
187 | |
public ActionForward flushRuleCache(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
188 | 0 | KEWServiceLocator.getRuleService().flushRuleCache(); |
189 | 0 | return mapping.findForward("basic"); |
190 | |
} |
191 | |
|
192 | |
public ActionForward save(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
193 | 0 | DocumentOperationForm docForm = (DocumentOperationForm) form; |
194 | 0 | boolean change = false; |
195 | |
|
196 | 0 | String routeHeaderOp = docForm.getRouteHeaderOp(); |
197 | 0 | if (!KEWConstants.UPDATE.equals(routeHeaderOp) && !KEWConstants.NOOP.equals(routeHeaderOp)) { |
198 | 0 | throw new WorkflowServiceErrorException("Document operation not defined", new WorkflowServiceErrorImpl("Document operation not defined", "docoperation.operation.invalid")); |
199 | |
} |
200 | 0 | if (KEWConstants.UPDATE.equals(routeHeaderOp)) { |
201 | 0 | setRouteHeaderTimestamps(docForm); |
202 | 0 | DocumentRouteHeaderValue dHeader = docForm.getRouteHeader(); |
203 | 0 | String initials=docForm.getInitialNodeInstances(); |
204 | 0 | List<RouteNodeInstance> lInitials = new ArrayList<RouteNodeInstance>(); |
205 | 0 | if (StringUtils.isNotEmpty(initials)){ |
206 | 0 | StringTokenizer tokenInitials=new StringTokenizer(initials,","); |
207 | 0 | while (tokenInitials.hasMoreTokens()) { |
208 | 0 | String instanceId = tokenInitials.nextToken().trim(); |
209 | 0 | LOG.debug(instanceId); |
210 | 0 | RouteNodeInstance instance = getRouteNodeService().findRouteNodeInstanceById(instanceId); |
211 | 0 | lInitials.add(instance); |
212 | 0 | } |
213 | |
} |
214 | 0 | dHeader.setInitialRouteNodeInstances(lInitials); |
215 | 0 | getRouteHeaderService().validateRouteHeader(docForm.getRouteHeader()); |
216 | 0 | getRouteHeaderService().saveRouteHeader(docForm.getRouteHeader()); |
217 | 0 | change = true; |
218 | |
} |
219 | |
|
220 | 0 | for (Iterator actionRequestIter = docForm.getActionRequestOps().iterator(); actionRequestIter.hasNext();) { |
221 | 0 | DocOperationIndexedParameter actionRequestOp = (DocOperationIndexedParameter) actionRequestIter.next(); |
222 | 0 | int index = actionRequestOp.getIndex().intValue(); |
223 | 0 | String opValue = actionRequestOp.getValue(); |
224 | 0 | ActionRequestValue actionRequest = docForm.getRouteHeader().getDocActionRequest(index); |
225 | 0 | String createDateParamName = "actionRequestCreateDate" + index; |
226 | |
|
227 | 0 | if (!KEWConstants.UPDATE.equals(opValue) && !KEWConstants.DELETE.equals(opValue) && !KEWConstants.NOOP.equals(opValue)) { |
228 | 0 | throw new WorkflowServiceErrorException("Action request operation not defined", new WorkflowServiceErrorImpl("Action request operation not defined", "docoperation.actionrequest.operation.invalid")); |
229 | |
} |
230 | 0 | if (KEWConstants.UPDATE.equals(opValue)) { |
231 | |
try { |
232 | 0 | actionRequest.setCreateDate(new Timestamp(RiceConstants.getDefaultDateFormat().parse(request.getParameter(createDateParamName)).getTime())); |
233 | 0 | actionRequest.setCreateDateString(RiceConstants.getDefaultDateFormat().format(actionRequest.getCreateDate())); |
234 | 0 | actionRequest.setDocumentId(docForm.getRouteHeader().getDocumentId()); |
235 | 0 | actionRequest.setParentActionRequest(getActionRequestService().findByActionRequestId(actionRequest.getParentActionRequestId())); |
236 | 0 | actionRequest.setActionTaken(getActionTakenService().findByActionTakenId(actionRequest.getActionTakenId())); |
237 | 0 | if (actionRequest.getNodeInstance() != null && actionRequest.getNodeInstance().getRouteNodeInstanceId() == null) { |
238 | 0 | actionRequest.setNodeInstance(null); |
239 | 0 | } else if (actionRequest.getNodeInstance() != null && actionRequest.getNodeInstance().getRouteNodeInstanceId() != null) { |
240 | 0 | actionRequest.setNodeInstance(KEWServiceLocator.getRouteNodeService().findRouteNodeInstanceById(actionRequest.getNodeInstance().getRouteNodeInstanceId())); |
241 | |
} |
242 | |
|
243 | 0 | getActionRequestService().saveActionRequest(actionRequest); |
244 | 0 | change = true; |
245 | 0 | } catch (ParseException pe) { |
246 | 0 | throw new WorkflowServiceErrorException("Action request create date parsing error", new WorkflowServiceErrorImpl("Action request create date parsing error", "docoperation.actionrequests.dateparsing.error", actionRequest.getActionRequestId().toString())); |
247 | 0 | } |
248 | |
|
249 | |
} |
250 | 0 | if (KEWConstants.DELETE.equals(opValue)) { |
251 | 0 | getActionRequestService().deleteActionRequestGraph(actionRequest); |
252 | 0 | change = true; |
253 | |
} |
254 | 0 | } |
255 | |
|
256 | 0 | for (Iterator actionTakenIter = docForm.getActionTakenOps().iterator(); actionTakenIter.hasNext();) { |
257 | 0 | DocOperationIndexedParameter actionTakenOp = (DocOperationIndexedParameter) actionTakenIter.next(); |
258 | 0 | int index = actionTakenOp.getIndex().intValue(); |
259 | 0 | String opValue = actionTakenOp.getValue(); |
260 | |
|
261 | 0 | String actionDateParamName = "actionTakenActionDate" + index; |
262 | 0 | ActionTakenValue actionTaken = docForm.getRouteHeader().getDocActionTaken(index); |
263 | 0 | if (!KEWConstants.UPDATE.equals(opValue) && !KEWConstants.DELETE.equals(opValue) && !KEWConstants.NOOP.equals(opValue)) { |
264 | 0 | throw new WorkflowServiceErrorException("Action taken operation not defined", new WorkflowServiceErrorImpl("Action taken operation not defined", "docoperation.actiontaken.operation.invalid")); |
265 | |
} |
266 | 0 | if (KEWConstants.UPDATE.equals(opValue)) { |
267 | |
try { |
268 | 0 | actionTaken.setActionDate(new Timestamp(RiceConstants.getDefaultDateFormat().parse(request.getParameter(actionDateParamName)).getTime())); |
269 | 0 | actionTaken.setActionDateString(RiceConstants.getDefaultDateFormat().format(actionTaken.getActionDate())); |
270 | |
|
271 | 0 | getActionTakenService().saveActionTaken(actionTaken); |
272 | 0 | change = true; |
273 | 0 | } catch (ParseException pe) { |
274 | 0 | throw new WorkflowServiceErrorException("Action taken action date parsing error", new WorkflowServiceErrorImpl("Action taken action date parse error", "docoperation.actionstaken.dateparsing.error", actionTaken.getActionTakenId().toString())); |
275 | 0 | } |
276 | |
} |
277 | 0 | if (KEWConstants.DELETE.equals(opValue)) { |
278 | 0 | getActionTakenService().delete(actionTaken); |
279 | 0 | change = true; |
280 | |
} |
281 | 0 | } |
282 | |
|
283 | 0 | for (Iterator actionItemIter = docForm.getActionItemOps().iterator(); actionItemIter.hasNext();) { |
284 | 0 | DocOperationIndexedParameter actionItemOp = (DocOperationIndexedParameter) actionItemIter.next(); |
285 | 0 | int index = actionItemOp.getIndex().intValue(); |
286 | 0 | String opValue = actionItemOp.getValue(); |
287 | |
|
288 | 0 | String dateAssignedParamName = "actionItemDateAssigned" + index; |
289 | 0 | ActionItem actionItem = docForm.getRouteHeader().getDocActionItem(index); |
290 | 0 | if (!KEWConstants.UPDATE.equals(opValue) && !KEWConstants.DELETE.equals(opValue) && !KEWConstants.NOOP.equals(opValue)) { |
291 | 0 | throw new WorkflowServiceErrorException("Action Item operation not defined", new WorkflowServiceErrorImpl("Action Item operation not defined", "docoperation.operation.invalid")); |
292 | |
} |
293 | 0 | if (KEWConstants.UPDATE.equals(opValue)) { |
294 | |
try { |
295 | 0 | actionItem.setDateAssigned(new Timestamp(RiceConstants.getDefaultDateFormat().parse(request.getParameter(dateAssignedParamName)).getTime())); |
296 | 0 | actionItem.setDateAssignedString(RiceConstants.getDefaultDateFormat().format(actionItem.getDateAssigned())); |
297 | 0 | actionItem.setDocumentId(docForm.getRouteHeader().getDocumentId()); |
298 | |
|
299 | 0 | getActionListService().saveActionItem(actionItem); |
300 | 0 | change = true; |
301 | 0 | } catch (ParseException pe) { |
302 | 0 | throw new WorkflowServiceErrorException("Action item date assigned parsing error", new WorkflowServiceErrorImpl("Action item date assigned parse error", "docoperation.actionitem.dateassignedparsing.error", actionItem.getActionItemId().toString())); |
303 | 0 | } |
304 | |
} |
305 | 0 | if (KEWConstants.DELETE.equals(opValue)) { |
306 | 0 | getActionListService().deleteActionItem(actionItem); |
307 | 0 | change = true; |
308 | |
} |
309 | 0 | } |
310 | |
|
311 | 0 | List routeNodeInstances=(List)(request.getSession().getAttribute("routeNodeInstances")); |
312 | 0 | String ids = (docForm.getNodeStatesDelete() != null) ? docForm.getNodeStatesDelete().trim() : null; |
313 | 0 | List statesToBeDeleted=new ArrayList(); |
314 | 0 | if(ids!=null && !ids.equals("")){ |
315 | 0 | StringTokenizer idSets=new StringTokenizer(ids); |
316 | 0 | while (idSets.hasMoreTokens()) { |
317 | 0 | String id=idSets.nextToken().trim(); |
318 | 0 | statesToBeDeleted.add(Long.valueOf(id)); |
319 | 0 | } |
320 | |
} |
321 | |
|
322 | 0 | for (Iterator routeNodeInstanceIter = docForm.getRouteNodeInstanceOps().iterator(); routeNodeInstanceIter.hasNext();) { |
323 | 0 | DocOperationIndexedParameter routeNodeInstanceOp = (DocOperationIndexedParameter) routeNodeInstanceIter.next(); |
324 | 0 | int index = routeNodeInstanceOp.getIndex().intValue(); |
325 | 0 | String opValue = routeNodeInstanceOp.getValue(); |
326 | 0 | LOG.debug(opValue); |
327 | 0 | RouteNodeInstance routeNodeInstance = (RouteNodeInstance)(routeNodeInstances.get(index)); |
328 | 0 | RouteNodeInstance routeNodeInstanceNew = (RouteNodeInstance)(docForm.getRouteNodeInstance(index)); |
329 | 0 | if (!KEWConstants.UPDATE.equals(opValue) && !KEWConstants.DELETE.equals(opValue) && !KEWConstants.NOOP.equals(opValue)) { |
330 | 0 | throw new WorkflowServiceErrorException("Route Node Instance Operation not defined", new WorkflowServiceErrorImpl("Route Node Instance Operation not defined", "docoperation.routenodeinstance.operation.invalid")); |
331 | |
} |
332 | 0 | if (KEWConstants.UPDATE.equals(opValue)) { |
333 | |
|
334 | |
|
335 | 0 | routeNodeInstance.setActive(routeNodeInstanceNew.isActive()); |
336 | 0 | LOG.debug(Boolean.toString(routeNodeInstanceNew.isActive())); |
337 | 0 | routeNodeInstance.setComplete(routeNodeInstanceNew.isComplete()); |
338 | 0 | routeNodeInstance.setInitial(routeNodeInstanceNew.isInitial()); |
339 | 0 | List nodeStates=routeNodeInstance.getState(); |
340 | 0 | List nodeStatesNew=routeNodeInstanceNew.getState(); |
341 | |
|
342 | 0 | if(nodeStates!=null){ |
343 | 0 | for(int i=0;i<nodeStates.size();i++){ |
344 | 0 | NodeState nodeState=(NodeState)nodeStates.get(i); |
345 | 0 | NodeState nodeStateNew=(NodeState)nodeStatesNew.get(i); |
346 | 0 | if(nodeStateNew.getKey()!=null && ! nodeStateNew.getKey().trim().equals("")){ |
347 | 0 | nodeState.setKey(nodeStateNew.getKey()); |
348 | 0 | LOG.debug(nodeState.getKey()); |
349 | 0 | nodeState.setValue(nodeStateNew.getValue()); |
350 | 0 | LOG.debug(nodeState.getValue()); |
351 | |
} |
352 | |
} |
353 | |
} |
354 | 0 | getRouteNodeService().save(routeNodeInstance); |
355 | 0 | LOG.debug("saved"); |
356 | 0 | change = true; |
357 | |
} |
358 | |
|
359 | |
|
360 | 0 | if (KEWConstants.DELETE.equals(opValue)) { |
361 | 0 | List nodeStates=routeNodeInstance.getState(); |
362 | 0 | List nodeStatesNew=routeNodeInstanceNew.getState(); |
363 | |
|
364 | 0 | if(nodeStates!=null){ |
365 | 0 | for(int i=0;i<nodeStates.size();i++){ |
366 | 0 | NodeState nodeState=(NodeState)nodeStates.get(i); |
367 | 0 | NodeState nodeStateNew=(NodeState)nodeStatesNew.get(i); |
368 | 0 | if(nodeStateNew.getKey()==null || nodeStateNew.getKey().trim().equals("")){ |
369 | 0 | statesToBeDeleted.remove(nodeState.getNodeStateId()); |
370 | |
} |
371 | |
} |
372 | |
} |
373 | 0 | getRouteNodeService().deleteByRouteNodeInstance(routeNodeInstance); |
374 | 0 | LOG.debug(routeNodeInstance.getRouteNodeInstanceId()+" is deleted"); |
375 | 0 | change = true; |
376 | 0 | break; |
377 | |
} |
378 | |
|
379 | 0 | if (KEWConstants.NOOP.equals(opValue)){ |
380 | 0 | routeNodeInstanceNew.setActive(routeNodeInstance.isActive()); |
381 | 0 | routeNodeInstanceNew.setComplete(routeNodeInstance.isComplete()); |
382 | 0 | routeNodeInstanceNew.setInitial(routeNodeInstance.isInitial()); |
383 | 0 | List nodeStates=routeNodeInstance.getState(); |
384 | 0 | List nodeStatesNew=routeNodeInstanceNew.getState(); |
385 | 0 | if(nodeStates!=null){ |
386 | 0 | for(int i=0;i<nodeStates.size();i++){ |
387 | 0 | NodeState nodeState=(NodeState)nodeStates.get(i); |
388 | 0 | NodeState nodeStateNew=(NodeState)nodeStatesNew.get(i); |
389 | 0 | if(nodeStateNew.getKey()==null || nodeStateNew.getKey().trim().equals("")){ |
390 | 0 | statesToBeDeleted.remove(nodeState.getNodeStateId()); |
391 | |
} |
392 | 0 | nodeStateNew.setKey(nodeState.getKey()); |
393 | 0 | nodeStateNew.setValue(nodeState.getValue()); |
394 | |
} |
395 | |
} |
396 | |
} |
397 | |
|
398 | |
|
399 | 0 | } |
400 | |
|
401 | 0 | if(statesToBeDeleted!=null && statesToBeDeleted.size()>0){ |
402 | 0 | getRouteNodeService().deleteNodeStates(statesToBeDeleted); |
403 | |
} |
404 | |
|
405 | |
|
406 | 0 | List branches=(List)(request.getSession().getAttribute("branches")); |
407 | 0 | String branchStateIds = (docForm.getBranchStatesDelete() != null) ? docForm.getBranchStatesDelete().trim() : null; |
408 | 0 | List branchStatesToBeDeleted=new ArrayList(); |
409 | 0 | if(branchStateIds!=null && !branchStateIds.equals("")){ |
410 | 0 | StringTokenizer idSets=new StringTokenizer(branchStateIds); |
411 | 0 | while (idSets.hasMoreTokens()) { |
412 | 0 | String id=idSets.nextToken().trim(); |
413 | 0 | branchStatesToBeDeleted.add(Long.valueOf(id)); |
414 | 0 | } |
415 | |
} |
416 | |
|
417 | 0 | for (Iterator branchesOpIter = docForm.getBranchOps().iterator(); branchesOpIter.hasNext();) { |
418 | 0 | DocOperationIndexedParameter branchesOp = (DocOperationIndexedParameter) branchesOpIter.next(); |
419 | 0 | int index = branchesOp.getIndex().intValue(); |
420 | 0 | String opValue = branchesOp.getValue(); |
421 | 0 | LOG.debug(opValue); |
422 | 0 | Branch branch = (Branch)(branches.get(index)); |
423 | 0 | Branch branchNew = (Branch)(docForm.getBranche(index)); |
424 | 0 | if (!KEWConstants.UPDATE.equals(opValue) && !KEWConstants.NOOP.equals(opValue)) { |
425 | 0 | throw new WorkflowServiceErrorException("Route Node Instance Operation not defined", new WorkflowServiceErrorImpl("Route Node Instance Operation not defined", "docoperation.routenodeinstance.operation.invalid")); |
426 | |
} |
427 | 0 | if (KEWConstants.UPDATE.equals(opValue)) { |
428 | |
|
429 | |
|
430 | 0 | branch.setName(branchNew.getName()); |
431 | 0 | List branchStates=branch.getBranchState(); |
432 | 0 | List branchStatesNew=branchNew.getBranchState(); |
433 | 0 | if(branchStates!=null){ |
434 | 0 | for(int i=0;i<branchStates.size();i++){ |
435 | 0 | BranchState branchState=(BranchState)branchStates.get(i); |
436 | 0 | BranchState branchStateNew=(BranchState)branchStatesNew.get(i); |
437 | 0 | if(branchStateNew.getKey()!=null && ! branchStateNew.getKey().trim().equals("")){ |
438 | 0 | branchState.setKey(branchStateNew.getKey()); |
439 | 0 | LOG.debug(branchState.getKey()); |
440 | 0 | branchState.setValue(branchStateNew.getValue()); |
441 | 0 | LOG.debug(branchState.getValue()); |
442 | |
} |
443 | |
} |
444 | |
} |
445 | 0 | getBranchService().save(branch); |
446 | 0 | LOG.debug("branch saved"); |
447 | 0 | change = true; |
448 | |
|
449 | |
} |
450 | |
|
451 | |
|
452 | 0 | if (KEWConstants.NOOP.equals(opValue)){ |
453 | 0 | branchNew.setName(branch.getName()); |
454 | 0 | List branchStates=branch.getBranchState(); |
455 | 0 | List branchStatesNew=branchNew.getBranchState(); |
456 | 0 | if(branchStates!=null){ |
457 | 0 | for(int i=0;i<branchStates.size();i++){ |
458 | 0 | BranchState branchState=(BranchState)branchStates.get(i); |
459 | 0 | BranchState branchStateNew=(BranchState)branchStatesNew.get(i); |
460 | 0 | if(branchStateNew.getKey()==null || branchStateNew.getKey().trim().equals("")){ |
461 | 0 | branchStatesToBeDeleted.remove(branchState.getBranchStateId()); |
462 | |
} |
463 | 0 | branchStateNew.setKey(branchState.getKey()); |
464 | 0 | LOG.debug(branchState.getKey()); |
465 | 0 | branchStateNew.setValue(branchState.getValue()); |
466 | 0 | LOG.debug(branchState.getValue()); |
467 | |
} |
468 | |
} |
469 | |
} |
470 | |
|
471 | 0 | } |
472 | |
|
473 | 0 | if(branchStatesToBeDeleted!=null && branchStatesToBeDeleted.size()>0){ |
474 | 0 | getBranchService().deleteBranchStates(branchStatesToBeDeleted); |
475 | |
} |
476 | |
|
477 | 0 | WorkflowDocument workflowDocument = WorkflowDocumentFactory.loadDocument(GlobalVariables.getUserSession().getPrincipalId(), docForm.getDocumentId()); |
478 | |
|
479 | 0 | String annotation = docForm.getAnnotation(); |
480 | 0 | if (StringUtils.isEmpty(annotation)) { |
481 | 0 | annotation = DEFAULT_LOG_MSG; |
482 | |
} |
483 | 0 | workflowDocument.logAnnotation(annotation); |
484 | |
|
485 | 0 | ActionMessages messages = new ActionMessages(); |
486 | 0 | String forward = null; |
487 | 0 | if (change) { |
488 | 0 | messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("docoperation.operation.saved")); |
489 | 0 | docForm.setRouteHeader(getRouteHeaderService().getRouteHeader(docForm.getRouteHeader().getDocumentId())); |
490 | 0 | forward = "summary"; |
491 | |
} else { |
492 | 0 | messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("docoperation.operation.noop")); |
493 | 0 | forward = "basic"; |
494 | |
} |
495 | 0 | saveMessages(request, messages); |
496 | 0 | return mapping.findForward(forward); |
497 | |
|
498 | |
} |
499 | |
|
500 | |
private RouteHeaderService getRouteHeaderService() { |
501 | 0 | return (RouteHeaderService) KEWServiceLocator.getService(KEWServiceLocator.DOC_ROUTE_HEADER_SRV); |
502 | |
} |
503 | |
|
504 | |
private RouteNodeService getRouteNodeService(){ |
505 | 0 | return (RouteNodeService) KEWServiceLocator.getService(KEWServiceLocator.ROUTE_NODE_SERVICE); |
506 | |
} |
507 | |
|
508 | |
private ActionRequestService getActionRequestService() { |
509 | 0 | return (ActionRequestService) KEWServiceLocator.getService(KEWServiceLocator.ACTION_REQUEST_SRV); |
510 | |
} |
511 | |
|
512 | |
private ActionTakenService getActionTakenService() { |
513 | 0 | return (ActionTakenService) KEWServiceLocator.getService(KEWServiceLocator.ACTION_TAKEN_SRV); |
514 | |
} |
515 | |
|
516 | |
private ActionListService getActionListService() { |
517 | 0 | return (ActionListService) KEWServiceLocator.getActionListService(); |
518 | |
} |
519 | |
|
520 | |
private void setRouteHeaderTimestamps(DocumentOperationForm docForm) { |
521 | 0 | if (docForm.getCreateDate() == null || docForm.getCreateDate().trim().equals("")) { |
522 | 0 | throw new WorkflowServiceErrorException("Document create date empty", new WorkflowServiceErrorImpl("Document create date empty", "docoperation.routeheader.createdate.empty")); |
523 | |
} else { |
524 | |
try { |
525 | |
|
526 | |
|
527 | |
|
528 | |
|
529 | |
|
530 | |
|
531 | |
|
532 | |
|
533 | |
|
534 | |
|
535 | |
|
536 | |
|
537 | 0 | docForm.getRouteHeader().setCreateDate(new Timestamp(RiceConstants.getDefaultDateAndTimeFormat().parse(docForm.getCreateDate()).getTime())); |
538 | 0 | } catch (ParseException pe) { |
539 | 0 | throw new WorkflowServiceErrorException("RouteHeader create date parsing error", new WorkflowServiceErrorImpl("Date parsing error", "docoperation.routeheader.createdate.invalid")); |
540 | 0 | } |
541 | |
} |
542 | |
|
543 | 0 | if (docForm.getStatusModDate() == null || docForm.getStatusModDate().trim().equals("")) { |
544 | 0 | throw new WorkflowServiceErrorException("Document doc status mod date empty", new WorkflowServiceErrorImpl("Document doc status mod date empty", "docoperation.routeheader.statusmoddate.empty")); |
545 | |
} else { |
546 | |
try { |
547 | 0 | docForm.getRouteHeader().setStatusModDate(new Timestamp(RiceConstants.getDefaultDateAndTimeFormat().parse(docForm.getStatusModDate()).getTime())); |
548 | 0 | } catch (ParseException pe) { |
549 | 0 | throw new WorkflowServiceErrorException("Document doc status date parsing error", new WorkflowServiceErrorImpl("Document doc status mod date parsing error", "docoperation.routeheader.statusmoddate.invalid")); |
550 | 0 | } |
551 | |
} |
552 | |
|
553 | 0 | if (docForm.getApprovedDate() != null && !docForm.getApprovedDate().trim().equals("")) { |
554 | |
try { |
555 | 0 | docForm.getRouteHeader().setApprovedDate(new Timestamp(RiceConstants.getDefaultDateAndTimeFormat().parse(docForm.getApprovedDate()).getTime())); |
556 | 0 | } catch (ParseException pe) { |
557 | 0 | throw new WorkflowServiceErrorException("Document approved date parsing error", new WorkflowServiceErrorImpl("Document approved date parsing error", "docoperation.routeheader.approveddate.invalid")); |
558 | 0 | } |
559 | |
|
560 | |
} |
561 | |
|
562 | 0 | if (docForm.getFinalizedDate() != null && !docForm.getFinalizedDate().trim().equals("")) { |
563 | |
try { |
564 | 0 | docForm.getRouteHeader().setFinalizedDate(new Timestamp(RiceConstants.getDefaultDateAndTimeFormat().parse(docForm.getFinalizedDate()).getTime())); |
565 | 0 | } catch (ParseException pe) { |
566 | 0 | throw new WorkflowServiceErrorException("Document finalized date parsing error", new WorkflowServiceErrorImpl("Document finalized date parsing error", "docoperation.routeheader.finalizeddate.invalid")); |
567 | 0 | } |
568 | |
} |
569 | |
|
570 | 0 | if (docForm.getRouteStatusDate() != null && !docForm.getRouteStatusDate().trim().equals("")) { |
571 | |
try { |
572 | 0 | docForm.getRouteHeader().setRouteStatusDate(new Timestamp(RiceConstants.getDefaultDateAndTimeFormat().parse(docForm.getRouteStatusDate()).getTime())); |
573 | 0 | } catch (ParseException pe) { |
574 | 0 | throw new WorkflowServiceErrorException("Document route status date parsing error", new WorkflowServiceErrorImpl("Document route status date parsing error", "docoperation.routeheader.routestatusdate.invalid")); |
575 | 0 | } |
576 | |
|
577 | |
} |
578 | |
|
579 | 0 | if (docForm.getRouteLevelDate() != null && !docForm.getRouteLevelDate().trim().equals("")) { |
580 | |
try { |
581 | 0 | docForm.getRouteHeader().setRouteLevelDate(new Timestamp(RiceConstants.getDefaultDateAndTimeFormat().parse(docForm.getRouteLevelDate()).getTime())); |
582 | 0 | } catch (ParseException pe) { |
583 | 0 | throw new WorkflowServiceErrorException("Document route level date parsing error", new WorkflowServiceErrorImpl("Document route level date parsing error", "docoperation.routeheader.routeleveldate.invalid")); |
584 | 0 | } |
585 | |
} |
586 | 0 | } |
587 | |
|
588 | |
private void setRouteHeaderTimestampsToString(DocumentOperationForm docForm) { |
589 | |
try { |
590 | 0 | docForm.setCreateDate(RiceConstants.getDefaultDateAndTimeFormat().format(docForm.getRouteHeader().getCreateDate())); |
591 | 0 | docForm.setStatusModDate(RiceConstants.getDefaultDateAndTimeFormat().format(docForm.getRouteHeader().getStatusModDate())); |
592 | 0 | docForm.setApprovedDate(RiceConstants.getDefaultDateAndTimeFormat().format(docForm.getRouteHeader().getApprovedDate())); |
593 | 0 | docForm.setFinalizedDate(RiceConstants.getDefaultDateAndTimeFormat().format(docForm.getRouteHeader().getFinalizedDate())); |
594 | 0 | docForm.setRouteStatusDate(RiceConstants.getDefaultDateAndTimeFormat().format(docForm.getRouteHeader().getRouteStatusDate())); |
595 | 0 | docForm.setRouteLevelDate(RiceConstants.getDefaultDateAndTimeFormat().format(docForm.getRouteHeader().getRouteLevelDate())); |
596 | |
|
597 | 0 | } catch (Exception e) { |
598 | 0 | LOG.info("One or more of the dates in routeHeader may be null"); |
599 | 0 | } |
600 | 0 | } |
601 | |
|
602 | |
public ActionForward refresh(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
603 | 0 | DocumentOperationForm docForm = (DocumentOperationForm) form; |
604 | 0 | String lookupInvocationModule = docForm.getLookupInvocationModule(); |
605 | 0 | docForm.getRouteHeader().setDocumentId(docForm.getDocumentId()); |
606 | |
|
607 | 0 | if (lookupInvocationModule != null && !lookupInvocationModule.trim().equals("")) { |
608 | 0 | String lookupField = docForm.getLookupInvocationField(); |
609 | 0 | int lookupIndex = new Integer(docForm.getLookupInvocationIndex()).intValue(); |
610 | 0 | String networkId = request.getParameter("networkId"); |
611 | 0 | String principalId = KEWServiceLocator.getIdentityHelperService().getIdForPrincipalName(networkId); |
612 | |
|
613 | 0 | if (lookupInvocationModule.equals("RouteHeader")) { |
614 | 0 | DocumentRouteHeaderValue routeHeader = docForm.getRouteHeader(); |
615 | 0 | if ("initiatorWorkflowId".equals(lookupField)) { |
616 | 0 | routeHeader.setInitiatorWorkflowId(principalId); |
617 | |
} |
618 | 0 | if ("documentTypeId".equals(lookupField)) { |
619 | 0 | DocumentType docType = getDocumentTypeService().findByName(request.getParameter("docTypeFullName")); |
620 | 0 | routeHeader.setDocumentTypeId(docType.getDocumentTypeId()); |
621 | |
} |
622 | |
} |
623 | |
|
624 | 0 | if (lookupInvocationModule.equals("ActionRequest")) { |
625 | 0 | ActionRequestValue actionRequest = docForm.getRouteHeader().getDocActionRequest(lookupIndex); |
626 | 0 | if ("routeMethodName".equals(lookupField)) { |
627 | |
|
628 | 0 | String id = request.getParameter("ruleTemplate.ruleTemplateId"); |
629 | 0 | if (id != null && !"".equals(id.trim())) { |
630 | 0 | RuleTemplate ruleTemplate = KEWServiceLocator.getRuleTemplateService().findByRuleTemplateId(id); |
631 | |
|
632 | |
|
633 | |
|
634 | |
} |
635 | |
} |
636 | 0 | if ("workflowId".equals(lookupField)) { |
637 | 0 | actionRequest.setPrincipalId(principalId); |
638 | |
} |
639 | 0 | if ("workgroupId".equals(lookupField)) { |
640 | 0 | if (request.getParameter("workgroupId") != null && !"".equals(request.getParameter("workgroupId").trim())) { |
641 | 0 | actionRequest.setGroupId(request.getParameter("workgroupId")); |
642 | |
} else { |
643 | 0 | actionRequest.setGroupId(null); |
644 | |
} |
645 | |
} |
646 | 0 | if ("roleName".equals(lookupField)) { |
647 | 0 | actionRequest.setRoleName(request.getParameter("roleName")); |
648 | |
} |
649 | |
} |
650 | 0 | if (lookupInvocationModule.equals("ActionTaken")) { |
651 | 0 | ActionTakenValue actionTaken = docForm.getRouteHeader().getDocActionTaken(lookupIndex); |
652 | 0 | if ("workflowId".equals(lookupField)) { |
653 | 0 | Principal principal = KimApiServiceLocator.getIdentityService().getPrincipalByPrincipalName(networkId); |
654 | 0 | if (principal != null) { |
655 | 0 | actionTaken.setPrincipalId(principal.getPrincipalId()); |
656 | |
} else { |
657 | 0 | LOG.info("action taken user not found"); |
658 | 0 | actionTaken.setPrincipalId(null); |
659 | |
} |
660 | |
} |
661 | 0 | if ("delegatorWorkflowId".equals(lookupField)) { |
662 | 0 | Principal principal = KimApiServiceLocator.getIdentityService().getPrincipalByPrincipalName(networkId); |
663 | 0 | if (principal != null) { |
664 | 0 | actionTaken.setDelegatorPrincipalId(principal.getPrincipalId()); |
665 | |
} else { |
666 | 0 | LOG.info("action taken delegator user not found"); |
667 | 0 | actionTaken.setDelegatorPrincipalId(null); |
668 | |
} |
669 | |
} |
670 | 0 | if ("delegatorGroupId".equals(lookupField)) { |
671 | 0 | if (request.getParameter("workgroupId") != null && !"".equals(request.getParameter("workgroupId").trim())) { |
672 | 0 | actionTaken.setDelegatorGroupId(request.getParameter("workgroupId")); |
673 | |
} else { |
674 | 0 | actionTaken.setDelegatorGroupId(null); |
675 | |
} |
676 | |
} |
677 | |
} |
678 | |
|
679 | 0 | if (lookupInvocationModule.equals("ActionItem")) { |
680 | 0 | ActionItem actionItem = docForm.getRouteHeader().getDocActionItem(lookupIndex); |
681 | 0 | if ("workflowId".equals(lookupField)) { |
682 | 0 | Principal principal = KimApiServiceLocator.getIdentityService().getPrincipalByPrincipalName(networkId); |
683 | 0 | if (principal != null) { |
684 | 0 | actionItem.setPrincipalId(principal.getPrincipalId()); |
685 | |
} else { |
686 | 0 | LOG.info("action item user not found"); |
687 | 0 | actionItem.setPrincipalId(null); |
688 | |
} |
689 | |
} |
690 | |
|
691 | 0 | if ("workgroupId".equals(lookupField)) { |
692 | 0 | if (request.getParameter("workgroupId") != null && !"".equals(request.getParameter("workgroupId").trim())) { |
693 | 0 | actionItem.setGroupId(request.getParameter("workgroupId")); |
694 | |
} else { |
695 | 0 | actionItem.setGroupId(null); |
696 | |
} |
697 | |
} |
698 | 0 | if ("roleName".equals(lookupField)) { |
699 | 0 | actionItem.setRoleName(request.getParameter("roleName")); |
700 | |
} |
701 | 0 | if ("delegatorWorkflowId".equals(lookupField)) { |
702 | 0 | Principal principal = KimApiServiceLocator.getIdentityService().getPrincipalByPrincipalName(networkId); |
703 | 0 | if (principal != null) { |
704 | 0 | actionItem.setDelegatorWorkflowId(principal.getPrincipalId()); |
705 | |
} else { |
706 | 0 | LOG.info("action item delegator user not found"); |
707 | 0 | actionItem.setDelegatorWorkflowId(null); |
708 | |
} |
709 | |
} |
710 | 0 | if ("delegatorGroupId".equals(lookupField)) { |
711 | 0 | if (request.getParameter("workgroupId") != null && !"".equals(request.getParameter("workgroupId").trim())) { |
712 | 0 | actionItem.setDelegatorGroupId(request.getParameter("workgroupId")); |
713 | |
} else { |
714 | 0 | actionItem.setDelegatorGroupId(null); |
715 | |
} |
716 | |
} |
717 | 0 | if ("docName".equals(lookupField)) { |
718 | 0 | DocumentType docType = getDocumentTypeService().findByName(request.getParameter("docTypeFullName")); |
719 | 0 | actionItem.setDocName(docType.getName()); |
720 | 0 | actionItem.setDocLabel(docType.getLabel()); |
721 | 0 | actionItem.setDocHandlerURL(docType.getDocHandlerUrl()); |
722 | |
} |
723 | |
} |
724 | |
} |
725 | |
|
726 | 0 | return mapping.findForward("basic"); |
727 | |
} |
728 | |
|
729 | |
public ActionForward queueDocument(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
730 | |
try { |
731 | 0 | DocumentOperationForm docForm = (DocumentOperationForm) form; |
732 | 0 | KSBXMLService routeDoc = MessageServiceNames.getRouteDocumentMessageService(docForm.getRouteHeader()); |
733 | 0 | routeDoc.invoke(docForm.getDocumentId()); |
734 | 0 | ActionMessages messages = new ActionMessages(); |
735 | 0 | messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("general.message", "Document was successfully queued")); |
736 | 0 | saveMessages(request, messages); |
737 | 0 | return mapping.findForward("basic"); |
738 | 0 | } catch (Exception e) { |
739 | 0 | throw new WorkflowRuntimeException(e); |
740 | |
} |
741 | |
} |
742 | |
|
743 | |
public ActionForward indexSearchableAttributes(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
744 | 0 | DocumentOperationForm docForm = (DocumentOperationForm) form; |
745 | 0 | DocumentAttributeIndexingQueue queue = KewApiServiceLocator.getDocumentAttributeIndexingQueue(docForm.getRouteHeader().getDocumentType().getApplicationId()); |
746 | 0 | queue.indexDocument(docForm.getRouteHeader().getDocumentId()); |
747 | 0 | ActionMessages messages = new ActionMessages(); |
748 | 0 | messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("general.message", "Searchable Attribute Indexing was successfully scheduled")); |
749 | 0 | saveMessages(request, messages); |
750 | 0 | return mapping.findForward("basic"); |
751 | |
} |
752 | |
|
753 | |
public ActionForward queueDocumentRequeuer(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
754 | 0 | DocumentOperationForm docForm = (DocumentOperationForm) form; |
755 | 0 | DocumentRequeuerService docRequeue = MessageServiceNames.getDocumentRequeuerService(docForm.getRouteHeader().getDocumentType().getApplicationId(), docForm.getRouteHeader().getDocumentId(), 0); |
756 | 0 | docRequeue.requeueDocument(docForm.getRouteHeader().getDocumentId()); |
757 | 0 | ActionMessages messages = new ActionMessages(); |
758 | 0 | messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("general.message", "Document Requeuer was successfully scheduled")); |
759 | 0 | saveMessages(request, messages); |
760 | 0 | return mapping.findForward("basic"); |
761 | |
} |
762 | |
|
763 | |
public ActionForward blanketApproveDocument(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
764 | |
try { |
765 | 0 | DocumentOperationForm docForm = (DocumentOperationForm) form; |
766 | 0 | String principalId = KimApiServiceLocator.getPersonService().getPersonByPrincipalName(docForm.getBlanketApproveUser()).getPrincipalId(); |
767 | 0 | Set<String> nodeNames = new HashSet<String>(); |
768 | 0 | if (!StringUtils.isBlank(docForm.getBlanketApproveNodes())) { |
769 | 0 | String[] nodeNameArray = docForm.getBlanketApproveNodes().split(","); |
770 | 0 | for (String nodeName : nodeNameArray) { |
771 | 0 | nodeNames.add(nodeName.trim()); |
772 | |
} |
773 | |
} |
774 | 0 | BlanketApproveProcessorService blanketApprove = MessageServiceNames.getBlanketApproveProcessorService(docForm.getRouteHeader()); |
775 | 0 | blanketApprove.doBlanketApproveWork(docForm.getRouteHeader().getDocumentId(), principalId, docForm.getBlanketApproveActionTakenId(), nodeNames, true); |
776 | 0 | ActionMessages messages = new ActionMessages(); |
777 | 0 | messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("general.message", "Blanket Approve Processor was successfully scheduled")); |
778 | 0 | saveMessages(request, messages); |
779 | 0 | return mapping.findForward("basic"); |
780 | 0 | } catch (Exception e) { |
781 | 0 | throw new WorkflowRuntimeException(e); |
782 | |
} |
783 | |
} |
784 | |
|
785 | |
public ActionForward moveDocument(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
786 | |
try { |
787 | 0 | DocumentOperationForm docForm = (DocumentOperationForm) form; |
788 | 0 | String principalId = KEWServiceLocator.getIdentityHelperService().getIdForPrincipalName(docForm.getBlanketApproveUser()); |
789 | 0 | Set<String> nodeNames = new HashSet<String>(); |
790 | 0 | if (!StringUtils.isBlank(docForm.getBlanketApproveNodes())) { |
791 | 0 | String[] nodeNameArray = docForm.getBlanketApproveNodes().split(","); |
792 | 0 | for (String nodeName : nodeNameArray) { |
793 | 0 | nodeNames.add(nodeName.trim()); |
794 | |
} |
795 | |
} |
796 | 0 | ActionTakenValue actionTaken = KEWServiceLocator.getActionTakenService().findByActionTakenId(docForm.getBlanketApproveActionTakenId()); |
797 | 0 | MoveDocumentService moveService = MessageServiceNames.getMoveDocumentProcessorService(docForm.getRouteHeader()); |
798 | 0 | moveService.moveDocument(principalId, docForm.getRouteHeader(), actionTaken, nodeNames); |
799 | 0 | ActionMessages messages = new ActionMessages(); |
800 | 0 | messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("general.message", "Move Document Processor was successfully scheduled")); |
801 | 0 | saveMessages(request, messages); |
802 | 0 | return mapping.findForward("basic"); |
803 | 0 | } catch (Exception e) { |
804 | 0 | throw new WorkflowRuntimeException(e); |
805 | |
} |
806 | |
} |
807 | |
|
808 | |
public ActionForward queueActionInvocation(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
809 | |
try { |
810 | 0 | DocumentOperationForm docForm = (DocumentOperationForm) form; |
811 | 0 | String principalId = KEWServiceLocator.getIdentityHelperService().getIdForPrincipalName(docForm.getActionInvocationUser()); |
812 | 0 | ActionInvocation invocation = new ActionInvocation(docForm.getActionInvocationActionItemId(), docForm.getActionInvocationActionCode()); |
813 | 0 | ActionInvocationService actionInvocationService = MessageServiceNames.getActionInvocationProcessorService(docForm.getRouteHeader()); |
814 | 0 | actionInvocationService.invokeAction(principalId, docForm.getRouteHeader().getDocumentId(), invocation); |
815 | 0 | ActionMessages messages = new ActionMessages(); |
816 | 0 | messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("general.message", "Action Invocation Processor was successfully scheduled")); |
817 | 0 | saveMessages(request, messages); |
818 | 0 | return mapping.findForward("basic"); |
819 | 0 | } catch (Exception e) { |
820 | 0 | throw new WorkflowRuntimeException(e); |
821 | |
} |
822 | |
} |
823 | |
|
824 | |
private DocumentTypeService getDocumentTypeService() { |
825 | 0 | return (DocumentTypeService) KEWServiceLocator.getService(KEWServiceLocator.DOCUMENT_TYPE_SERVICE); |
826 | |
} |
827 | |
|
828 | |
private BranchService getBranchService(){ |
829 | 0 | return (BranchService) KEWServiceLocator.getService(KEWServiceLocator.BRANCH_SERVICE); |
830 | |
} |
831 | |
} |