1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kew.rule.web; |
17 | |
|
18 | |
import org.apache.commons.lang.StringUtils; |
19 | |
import org.apache.struts.action.ActionForm; |
20 | |
import org.apache.struts.action.ActionForward; |
21 | |
import org.apache.struts.action.ActionMapping; |
22 | |
import org.apache.struts.action.ActionMessages; |
23 | |
import org.kuali.rice.kew.actionrequest.ActionRequestValue; |
24 | |
import org.kuali.rice.kew.api.KewApiConstants; |
25 | |
import org.kuali.rice.kew.api.action.ActionRequestStatus; |
26 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
27 | |
import org.kuali.rice.kew.doctype.service.DocumentTypeService; |
28 | |
import org.kuali.rice.kew.engine.ActivationContext; |
29 | |
import org.kuali.rice.kew.engine.RouteContext; |
30 | |
import org.kuali.rice.kew.engine.node.RouteNode; |
31 | |
import org.kuali.rice.kew.engine.node.RouteNodeInstance; |
32 | |
import org.kuali.rice.kew.routeheader.AttributeDocumentContent; |
33 | |
import org.kuali.rice.kew.routeheader.DocumentContent; |
34 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
35 | |
import org.kuali.rice.kew.routelog.web.RouteLogAction; |
36 | |
import org.kuali.rice.kew.routelog.web.RouteLogForm; |
37 | |
import org.kuali.rice.kew.rule.FlexRM; |
38 | |
import org.kuali.rice.kew.rule.WorkflowRuleAttribute; |
39 | |
import org.kuali.rice.kew.rule.bo.RuleAttribute; |
40 | |
import org.kuali.rice.kew.rule.bo.RuleTemplateAttributeBo; |
41 | |
import org.kuali.rice.kew.rule.bo.RuleTemplateBo; |
42 | |
import org.kuali.rice.kew.rule.service.RuleTemplateService; |
43 | |
import org.kuali.rice.kew.rule.xmlrouting.GenericXMLRuleAttribute; |
44 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
45 | |
import org.kuali.rice.kew.api.KewApiConstants; |
46 | |
import org.kuali.rice.kew.web.KewKualiAction; |
47 | |
import org.kuali.rice.kns.web.ui.Field; |
48 | |
import org.kuali.rice.kns.web.ui.Row; |
49 | |
import org.kuali.rice.krad.UserSession; |
50 | |
import org.kuali.rice.krad.exception.ValidationException; |
51 | |
import org.kuali.rice.krad.util.GlobalVariables; |
52 | |
|
53 | |
import javax.servlet.http.HttpServletRequest; |
54 | |
import javax.servlet.http.HttpServletResponse; |
55 | |
import java.sql.Timestamp; |
56 | |
import java.text.SimpleDateFormat; |
57 | |
import java.util.ArrayList; |
58 | |
import java.util.Calendar; |
59 | |
import java.util.Collections; |
60 | |
import java.util.Date; |
61 | |
import java.util.HashMap; |
62 | |
import java.util.HashSet; |
63 | |
import java.util.Iterator; |
64 | |
import java.util.List; |
65 | |
import java.util.Map; |
66 | |
import java.util.Set; |
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
|
72 | |
|
73 | |
|
74 | 0 | public class RoutingReportAction extends KewKualiAction { |
75 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(RoutingReportAction.class); |
76 | |
|
77 | |
public static final String DOC_TYPE_REPORTING = "documentType"; |
78 | |
public static final String TEMPLATE_REPORTING = "template"; |
79 | |
|
80 | |
@Override |
81 | |
public ActionForward execute(ActionMapping mapping, ActionForm form, |
82 | |
HttpServletRequest request, HttpServletResponse response) |
83 | |
throws Exception { |
84 | 0 | this.initiateForm(request, form); |
85 | 0 | RoutingReportForm routingForm = (RoutingReportForm)form; |
86 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(routingForm.getDateRef())) { |
87 | 0 | SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy"); |
88 | 0 | routingForm.setEffectiveHour("5"); |
89 | 0 | routingForm.setEffectiveMinute("0"); |
90 | 0 | routingForm.setAmPm("1"); |
91 | 0 | routingForm.setDateRef(sdf.format(new Date())); |
92 | 0 | routingForm.setReportType(TEMPLATE_REPORTING); |
93 | |
} |
94 | 0 | if (DOC_TYPE_REPORTING.equals(routingForm.getReportType())) { |
95 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(routingForm.getDocumentTypeParam())) { |
96 | 0 | throw new RuntimeException("No document type was given"); |
97 | |
} |
98 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(routingForm.getInitiatorPrincipalId())) { |
99 | 0 | throw new RuntimeException("No initiator principal id was given"); |
100 | |
} |
101 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(routingForm.getDocumentContent())) { |
102 | 0 | throw new RuntimeException("No document content was given"); |
103 | |
} |
104 | 0 | } else if (!(TEMPLATE_REPORTING.equals(routingForm.getReportType()))) { |
105 | |
|
106 | 0 | throw new RuntimeException("The Routing Report type is not set"); |
107 | |
} |
108 | 0 | return super.execute(mapping, form, request, response); |
109 | |
} |
110 | |
|
111 | |
public ActionForward calculateRoute(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
112 | 0 | RoutingReportForm routingForm = (RoutingReportForm) form; |
113 | |
|
114 | 0 | List errors = new ArrayList(); |
115 | |
|
116 | 0 | if (getDocumentTypeService().findByName(routingForm.getDocumentType()) == null) { |
117 | 0 | GlobalVariables.getMessageMap().putError("Document type is required.", "doctype.documenttypeservice.doctypename.required"); |
118 | |
} |
119 | 0 | Timestamp date = null; |
120 | 0 | if (!org.apache.commons.lang.StringUtils.isEmpty(routingForm.getDateRef())) { |
121 | 0 | SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy"); |
122 | |
try { |
123 | 0 | Calendar calendar = Calendar.getInstance(); |
124 | 0 | calendar.setTime(sdf.parse(routingForm.getDateRef())); |
125 | 0 | calendar.set(Calendar.HOUR, Integer.parseInt(routingForm.getEffectiveHour())); |
126 | 0 | calendar.set(Calendar.MINUTE, Integer.parseInt(routingForm.getEffectiveMinute())); |
127 | 0 | calendar.set(Calendar.AM_PM, Integer.parseInt(routingForm.getAmPm())); |
128 | 0 | date = new Timestamp(calendar.getTimeInMillis()); |
129 | 0 | } catch (Exception e) { |
130 | 0 | LOG.error("error parsing date", e); |
131 | 0 | GlobalVariables.getMessageMap().putError("Invalid date.", "routereport.effectiveDate.invalid"); |
132 | 0 | } |
133 | |
} |
134 | |
|
135 | 0 | if (!GlobalVariables.getMessageMap().hasNoErrors()) { |
136 | 0 | throw new ValidationException("Errors populating rule attributes."); |
137 | |
} |
138 | |
|
139 | 0 | DocumentTypeService documentTypeService = (DocumentTypeService) KEWServiceLocator.getService(KEWServiceLocator.DOCUMENT_TYPE_SERVICE); |
140 | 0 | DocumentType docType = documentTypeService.findByName(routingForm.getDocumentType()); |
141 | |
|
142 | 0 | DocumentRouteHeaderValue routeHeader = new DocumentRouteHeaderValue(); |
143 | 0 | routeHeader.setDocumentId(""); |
144 | 0 | routeHeader.setDocumentTypeId(docType.getDocumentTypeId()); |
145 | 0 | routeHeader.setDocRouteLevel(new Integer(0)); |
146 | 0 | routeHeader.setDocVersion(new Integer(KewApiConstants.DocumentContentVersions.CURRENT)); |
147 | |
|
148 | 0 | List<RouteReportRuleTemplateContainer> ruleTemplateContainers = new ArrayList<RouteReportRuleTemplateContainer>(); |
149 | 0 | if (routingForm.getReportType().equals(DOC_TYPE_REPORTING)) { |
150 | |
|
151 | 0 | List routeNodes = KEWServiceLocator.getRouteNodeService().getFlattenedNodes(docType, true); |
152 | 0 | for (Iterator iter = routeNodes.iterator(); iter.hasNext();) { |
153 | 0 | RouteNode routeNode = (RouteNode) iter.next(); |
154 | 0 | if (routeNode.isFlexRM()) { |
155 | 0 | RuleTemplateBo ruleTemplate = getRuleTemplateService().findByRuleTemplateName(routeNode.getRouteMethodName()); |
156 | 0 | if (ruleTemplate != null) { |
157 | 0 | ruleTemplateContainers.add(new RouteReportRuleTemplateContainer(ruleTemplate, routeNode)); |
158 | 0 | if (ruleTemplate.getDelegationTemplate() != null) { |
159 | 0 | ruleTemplateContainers.add(new RouteReportRuleTemplateContainer(ruleTemplate.getDelegationTemplate(), routeNode)); |
160 | |
} |
161 | |
} |
162 | |
} |
163 | 0 | } |
164 | 0 | } else { |
165 | 0 | RuleTemplateBo ruleTemplate = getRuleTemplateService().findByRuleTemplateId(routingForm.getRuleTemplateId()); |
166 | 0 | RouteNode routeNode = new RouteNode(); |
167 | 0 | routeNode.setRouteNodeName(ruleTemplate.getName()); |
168 | 0 | ruleTemplateContainers.add(new RouteReportRuleTemplateContainer(ruleTemplate, routeNode)); |
169 | 0 | if (ruleTemplate.getDelegationTemplate() != null) { |
170 | 0 | ruleTemplateContainers.add(new RouteReportRuleTemplateContainer(ruleTemplate.getDelegationTemplate(), routeNode)); |
171 | |
} |
172 | |
} |
173 | |
|
174 | 0 | String xmlDocumentContent = routingForm.getDocumentContent(); |
175 | 0 | if (routingForm.getReportType().equals(TEMPLATE_REPORTING)) { |
176 | 0 | List<WorkflowRuleAttribute> attributes = new ArrayList<WorkflowRuleAttribute>(); |
177 | 0 | for (RouteReportRuleTemplateContainer ruleTemplateContainer : ruleTemplateContainers) { |
178 | 0 | RuleTemplateBo ruleTemplate = ruleTemplateContainer.ruleTemplate; |
179 | 0 | for (RuleTemplateAttributeBo ruleTemplateAttribute : ruleTemplate.getActiveRuleTemplateAttributes()) { |
180 | 0 | if (!ruleTemplateAttribute.isWorkflowAttribute()) { |
181 | 0 | continue; |
182 | |
} |
183 | 0 | WorkflowRuleAttribute workflowAttribute = ruleTemplateAttribute.getWorkflowAttribute(); |
184 | |
|
185 | 0 | RuleAttribute ruleAttribute = ruleTemplateAttribute.getRuleAttribute(); |
186 | 0 | if (ruleAttribute.getType().equals(KewApiConstants.RULE_XML_ATTRIBUTE_TYPE)) { |
187 | 0 | ((GenericXMLRuleAttribute) workflowAttribute).setExtensionDefinition(RuleAttribute.to(ruleAttribute)); |
188 | |
} |
189 | 0 | List attValidationErrors = workflowAttribute.validateRoutingData(routingForm.getFields()); |
190 | 0 | if (attValidationErrors != null && !attValidationErrors.isEmpty()) { |
191 | 0 | errors.addAll(attValidationErrors); |
192 | |
} |
193 | 0 | attributes.add(workflowAttribute); |
194 | 0 | } |
195 | 0 | } |
196 | |
|
197 | 0 | if (!GlobalVariables.getMessageMap().hasNoErrors()) { |
198 | 0 | throw new ValidationException("errors in search criteria"); |
199 | |
} |
200 | |
|
201 | 0 | DocumentContent docContent = new AttributeDocumentContent(attributes); |
202 | 0 | xmlDocumentContent = docContent.getDocContent(); |
203 | |
} |
204 | |
|
205 | 0 | routeHeader.setDocContent(xmlDocumentContent); |
206 | 0 | routeHeader.setInitiatorWorkflowId(getUserSession(request).getPrincipalId()); |
207 | 0 | routeHeader.setDocRouteStatus(KewApiConstants.ROUTE_HEADER_INITIATED_CD); |
208 | 0 | routeHeader.setDocTitle("Routing Report"); |
209 | 0 | routeHeader.setRoutingReport(true); |
210 | 0 | long magicCounter = 0; |
211 | |
|
212 | 0 | FlexRM flexRM = new FlexRM(date); |
213 | |
|
214 | 0 | int numberOfRules = 0; |
215 | 0 | int numberOfActionRequests = 0; |
216 | 0 | Set<String> alreadyProcessedRuleTemplateNames = new HashSet<String>(); |
217 | 0 | for (Object element : ruleTemplateContainers) { |
218 | |
|
219 | 0 | RouteContext context = RouteContext.createNewRouteContext(); |
220 | 0 | context.setActivationContext(new ActivationContext(ActivationContext.CONTEXT_IS_SIMULATION)); |
221 | |
try { |
222 | 0 | RouteReportRuleTemplateContainer ruleTemplateContainer = (RouteReportRuleTemplateContainer) element; |
223 | 0 | RuleTemplateBo ruleTemplate = ruleTemplateContainer.ruleTemplate; |
224 | 0 | RouteNode routeLevel = ruleTemplateContainer.routeNode; |
225 | |
|
226 | 0 | if (!alreadyProcessedRuleTemplateNames.contains(ruleTemplate.getName())) { |
227 | 0 | alreadyProcessedRuleTemplateNames.add(ruleTemplate.getName()); |
228 | 0 | List<ActionRequestValue> actionRequests = flexRM.getActionRequests(routeHeader, routeLevel, null, ruleTemplate.getName()); |
229 | |
|
230 | 0 | numberOfActionRequests += actionRequests.size(); |
231 | 0 | numberOfRules += flexRM.getNumberOfMatchingRules(); |
232 | |
|
233 | 0 | magicCounter = populateActionRequestsWithRouteLevelInformationAndIterateMagicCounter(routeLevel, actionRequests, magicCounter); |
234 | |
|
235 | 0 | routeHeader.getSimulatedActionRequests().addAll(actionRequests); |
236 | |
} |
237 | |
} finally { |
238 | 0 | RouteContext.clearCurrentRouteContext(); |
239 | 0 | } |
240 | 0 | } |
241 | |
|
242 | 0 | if (numberOfActionRequests == 0) { |
243 | 0 | if (numberOfRules == 0) { |
244 | 0 | GlobalVariables.getMessageMap().putError("*", "routereport.noRules"); |
245 | |
} else { |
246 | 0 | GlobalVariables.getMessageMap().putError("*", "routereport.noMatchingRules"); |
247 | |
} |
248 | 0 | if (GlobalVariables.getMessageMap().hasErrors()) { |
249 | 0 | throw new ValidationException("errors in search criteria"); |
250 | |
} |
251 | |
} |
252 | |
|
253 | |
|
254 | |
|
255 | 0 | RouteLogForm routeLogForm = new RouteLogForm(); |
256 | 0 | routeLogForm.setShowFuture(true); |
257 | 0 | if (StringUtils.isNotBlank(routingForm.getBackUrl())) { |
258 | 0 | routeLogForm.setReturnUrlLocation(routingForm.getBackUrl()); |
259 | |
} |
260 | 0 | LOG.debug("Value of getDisplayCloseButton " + routingForm.getShowCloseButton()); |
261 | 0 | LOG.debug("Value of isDisplayCloseButton " + routingForm.isDisplayCloseButton()); |
262 | 0 | routeLogForm.setShowCloseButton(routingForm.isDisplayCloseButton()); |
263 | 0 | request.setAttribute("routeHeader", routeHeader); |
264 | 0 | new RouteLogAction().populateRouteLogFormActionRequests(routeLogForm, routeHeader); |
265 | 0 | request.setAttribute("KualiForm", routeLogForm); |
266 | |
|
267 | |
|
268 | |
|
269 | 0 | return mapping.findForward("routeLog"); |
270 | |
} |
271 | |
|
272 | 0 | private class RouteReportRuleTemplateContainer { |
273 | 0 | public RuleTemplateBo ruleTemplate = null; |
274 | 0 | public RouteNode routeNode = null; |
275 | 0 | public RouteReportRuleTemplateContainer(RuleTemplateBo template, RouteNode node) { |
276 | 0 | this.ruleTemplate = template; |
277 | 0 | this.routeNode = node; |
278 | 0 | } |
279 | |
} |
280 | |
|
281 | |
public long populateActionRequestsWithRouteLevelInformationAndIterateMagicCounter(RouteNode routeLevel, List<ActionRequestValue> actionRequests, long magicCounter) { |
282 | |
|
283 | 0 | for (ActionRequestValue actionRequest : actionRequests) { |
284 | 0 | populateActionRequestsWithRouteLevelInformationAndIterateMagicCounter(routeLevel, actionRequest.getChildrenRequests(), magicCounter); |
285 | 0 | actionRequest.setStatus(ActionRequestStatus.INITIALIZED.getCode()); |
286 | |
|
287 | 0 | RouteNodeInstance routeNode = new RouteNodeInstance(); |
288 | 0 | routeNode.setRouteNode(routeLevel); |
289 | 0 | actionRequest.setNodeInstance(routeNode); |
290 | 0 | actionRequest.setRouteLevel(new Integer(0)); |
291 | 0 | magicCounter++; |
292 | 0 | actionRequest.setActionRequestId(String.valueOf(magicCounter)); |
293 | 0 | } |
294 | 0 | return magicCounter; |
295 | |
} |
296 | |
|
297 | |
@Override |
298 | |
public ActionForward refresh(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
299 | 0 | return mapping.findForward("basic"); |
300 | |
} |
301 | |
|
302 | |
private ActionMessages initiateForm(HttpServletRequest request, ActionForm form) throws Exception { |
303 | 0 | RoutingReportForm routingReportForm = (RoutingReportForm) form; |
304 | 0 | if (routingReportForm.getReportType() == null) { |
305 | |
|
306 | 0 | if ( (!org.apache.commons.lang.StringUtils.isEmpty(routingReportForm.getDocumentTypeParam())) || |
307 | |
(!org.apache.commons.lang.StringUtils.isEmpty(routingReportForm.getInitiatorPrincipalId())) || |
308 | |
(!org.apache.commons.lang.StringUtils.isEmpty(routingReportForm.getDocumentContent())) ) { |
309 | |
|
310 | 0 | routingReportForm.setReportType(DOC_TYPE_REPORTING); |
311 | |
} else { |
312 | |
|
313 | 0 | routingReportForm.setReportType(TEMPLATE_REPORTING); |
314 | |
} |
315 | |
} |
316 | |
|
317 | 0 | if (routingReportForm.getReportType().equals(DOC_TYPE_REPORTING)) { |
318 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(routingReportForm.getDocumentTypeParam())) { |
319 | 0 | throw new RuntimeException("Document Type was not given"); |
320 | |
} else { |
321 | 0 | DocumentType docType = getDocumentTypeService().findByName(routingReportForm.getDocumentTypeParam()); |
322 | 0 | if (docType == null) { |
323 | 0 | throw new RuntimeException("Document Type is invalid"); |
324 | |
} |
325 | |
} |
326 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(routingReportForm.getInitiatorPrincipalId())) { |
327 | 0 | throw new RuntimeException("Initiator Principal ID was not given"); |
328 | |
} else { |
329 | 0 | KEWServiceLocator.getIdentityHelperService().getPrincipal(routingReportForm.getInitiatorPrincipalId()); |
330 | |
} |
331 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(routingReportForm.getDocumentContent())) { |
332 | 0 | throw new RuntimeException("Document Content was not given"); |
333 | |
} |
334 | |
|
335 | 0 | if (!org.apache.commons.lang.StringUtils.isEmpty(routingReportForm.getDocumentType())) { |
336 | 0 | DocumentType docType = getDocumentTypeService().findByName(routingReportForm.getDocumentType()); |
337 | 0 | if (docType == null) { |
338 | 0 | throw new RuntimeException("Document Type is missing or invalid"); |
339 | |
} |
340 | 0 | routingReportForm.getRuleTemplateAttributes().clear(); |
341 | 0 | List<RouteNode> routeNodes = KEWServiceLocator.getRouteNodeService().getFlattenedNodes(docType, true); |
342 | 0 | for (RouteNode routeNode : routeNodes) { |
343 | 0 | if (routeNode.isFlexRM()) { |
344 | 0 | RuleTemplateBo ruleTemplate = getRuleTemplateService().findByRuleTemplateName(routeNode.getRouteMethodName()); |
345 | 0 | if (ruleTemplate != null) { |
346 | 0 | loadRuleTemplateOnForm(ruleTemplate, routingReportForm, request, false); |
347 | 0 | if (ruleTemplate.getDelegationTemplate() != null) { |
348 | 0 | loadRuleTemplateOnForm(ruleTemplate.getDelegationTemplate(), routingReportForm, request, true); |
349 | |
} |
350 | |
} |
351 | 0 | } |
352 | |
} |
353 | 0 | } |
354 | |
|
355 | 0 | } else if (routingReportForm.getReportType().equals(TEMPLATE_REPORTING)) { |
356 | 0 | routingReportForm.setRuleTemplates(getRuleTemplateService().findAll()); |
357 | 0 | if (routingReportForm.getRuleTemplateId() != null) { |
358 | 0 | RuleTemplateBo ruleTemplate = getRuleTemplateService().findByRuleTemplateId(routingReportForm.getRuleTemplateId()); |
359 | 0 | routingReportForm.getRuleTemplateAttributes().clear(); |
360 | 0 | loadRuleTemplateOnForm(ruleTemplate, routingReportForm, request, false); |
361 | 0 | if (ruleTemplate.getDelegationTemplate() != null) { |
362 | 0 | loadRuleTemplateOnForm(ruleTemplate.getDelegationTemplate(), routingReportForm, request, true); |
363 | |
} |
364 | |
} |
365 | |
} |
366 | 0 | return null; |
367 | |
} |
368 | |
|
369 | |
private void loadRuleTemplateOnForm(RuleTemplateBo ruleTemplate, RoutingReportForm routingReportForm, HttpServletRequest request, boolean isDelegate) { |
370 | |
|
371 | 0 | Map<String, String> fieldValues = new HashMap<String, String>(); |
372 | |
|
373 | 0 | List<RuleTemplateAttributeBo> ruleTemplateAttributes = ruleTemplate.getActiveRuleTemplateAttributes(); |
374 | 0 | Collections.sort(ruleTemplateAttributes); |
375 | |
|
376 | 0 | List<Row> rows = new ArrayList<Row>(); |
377 | 0 | for (RuleTemplateAttributeBo ruleTemplateAttribute : ruleTemplateAttributes) { |
378 | 0 | if (!ruleTemplateAttribute.isWorkflowAttribute()) { |
379 | 0 | continue; |
380 | |
} |
381 | 0 | WorkflowRuleAttribute workflowAttribute = ruleTemplateAttribute.getWorkflowAttribute(); |
382 | |
|
383 | 0 | RuleAttribute ruleAttribute = ruleTemplateAttribute.getRuleAttribute(); |
384 | 0 | if (ruleAttribute.getType().equals(KewApiConstants.RULE_XML_ATTRIBUTE_TYPE)) { |
385 | 0 | ((GenericXMLRuleAttribute) workflowAttribute).setExtensionDefinition(RuleAttribute.to(ruleAttribute)); |
386 | |
} |
387 | 0 | for (Row row : workflowAttribute.getRoutingDataRows()) { |
388 | |
|
389 | 0 | List<Field> fields = new ArrayList<Field>(); |
390 | 0 | for (Object element2 : row.getFields()) { |
391 | 0 | Field field = (Field) element2; |
392 | 0 | if (request.getParameter(field.getPropertyName()) != null) { |
393 | 0 | field.setPropertyValue(request.getParameter(field.getPropertyName())); |
394 | 0 | } else if (routingReportForm.getFields() != null && !routingReportForm.getFields().isEmpty()) { |
395 | 0 | field.setPropertyValue((String) routingReportForm.getFields().get(field.getPropertyName())); |
396 | |
} |
397 | 0 | fields.add(field); |
398 | 0 | fieldValues.put(field.getPropertyName(), field.getPropertyValue()); |
399 | 0 | } |
400 | 0 | } |
401 | |
|
402 | 0 | workflowAttribute.validateRuleData(fieldValues); |
403 | 0 | List<Row> rdRows = workflowAttribute.getRoutingDataRows(); |
404 | 0 | for (Row row : rdRows) |
405 | |
{ |
406 | 0 | List<Field> fields = new ArrayList<Field>(); |
407 | 0 | List<Field> rowFields = row.getFields(); |
408 | 0 | for (Field field : rowFields ) |
409 | |
{ |
410 | 0 | if (request.getParameter(field.getPropertyName()) != null) { |
411 | 0 | field.setPropertyValue(request.getParameter(field.getPropertyName())); |
412 | 0 | } else if (routingReportForm.getFields() != null && !routingReportForm.getFields().isEmpty()) { |
413 | 0 | field.setPropertyValue((String) routingReportForm.getFields().get(field.getPropertyName())); |
414 | |
} |
415 | 0 | fields.add(field); |
416 | 0 | fieldValues.put(field.getPropertyName(), field.getPropertyValue()); |
417 | |
} |
418 | 0 | row.setFields(fields); |
419 | 0 | rows.add(row); |
420 | |
|
421 | 0 | } |
422 | 0 | } |
423 | |
|
424 | 0 | routingReportForm.getFields().putAll(fieldValues); |
425 | 0 | routingReportForm.getRuleTemplateAttributes().addAll(rows); |
426 | 0 | routingReportForm.setShowFields(true); |
427 | 0 | routingReportForm.setShowViewResults(true); |
428 | 0 | } |
429 | |
|
430 | |
public ActionForward loadTemplate(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
431 | 0 | RoutingReportForm routingReportForm = (RoutingReportForm) form; |
432 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(routingReportForm.getDateRef())) { |
433 | 0 | SimpleDateFormat sdf = new SimpleDateFormat("MM/dd/yyyy"); |
434 | 0 | routingReportForm.setEffectiveHour("5"); |
435 | 0 | routingReportForm.setEffectiveMinute("0"); |
436 | 0 | routingReportForm.setAmPm("1"); |
437 | 0 | routingReportForm.setDateRef(sdf.format(new Date())); |
438 | |
} |
439 | 0 | return mapping.findForward("basic"); |
440 | |
} |
441 | |
|
442 | |
private RuleTemplateService getRuleTemplateService() { |
443 | 0 | return (RuleTemplateService) KEWServiceLocator.getService(KEWServiceLocator.RULE_TEMPLATE_SERVICE); |
444 | |
} |
445 | |
|
446 | |
private DocumentTypeService getDocumentTypeService() { |
447 | 0 | return (DocumentTypeService) KEWServiceLocator.getService(KEWServiceLocator.DOCUMENT_TYPE_SERVICE); |
448 | |
} |
449 | |
|
450 | |
private UserSession getUserSession(HttpServletRequest request) { |
451 | 0 | return GlobalVariables.getUserSession(); |
452 | |
} |
453 | |
|
454 | |
|
455 | |
|
456 | |
|
457 | |
} |