1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.actionlist.web; |
18 | |
|
19 | |
import org.apache.commons.collections.ComparatorUtils; |
20 | |
import org.apache.commons.lang.StringUtils; |
21 | |
import org.apache.struts.action.ActionForm; |
22 | |
import org.apache.struts.action.ActionForward; |
23 | |
import org.apache.struts.action.ActionMapping; |
24 | |
import org.apache.struts.action.ActionMessage; |
25 | |
import org.apache.struts.action.ActionMessages; |
26 | |
import org.displaytag.pagination.PaginatedList; |
27 | |
import org.displaytag.properties.SortOrderEnum; |
28 | |
import org.displaytag.util.LookupUtil; |
29 | |
import org.kuali.rice.core.api.config.property.ConfigContext; |
30 | |
import org.kuali.rice.core.api.exception.RiceRuntimeException; |
31 | |
import org.kuali.rice.kew.actionitem.ActionItem; |
32 | |
import org.kuali.rice.kew.actionitem.ActionItemActionListExtension; |
33 | |
import org.kuali.rice.kew.actionlist.ActionListFilter; |
34 | |
import org.kuali.rice.kew.actionlist.ActionToTake; |
35 | |
import org.kuali.rice.kew.actionlist.CustomActionListAttribute; |
36 | |
import org.kuali.rice.kew.actionlist.PaginatedActionList; |
37 | |
import org.kuali.rice.kew.actionlist.service.ActionListService; |
38 | |
import org.kuali.rice.kew.actionrequest.Recipient; |
39 | |
import org.kuali.rice.kew.actions.ActionSet; |
40 | |
import org.kuali.rice.kew.actions.asyncservices.ActionInvocation; |
41 | |
import org.kuali.rice.kew.exception.WorkflowException; |
42 | |
import org.kuali.rice.kew.preferences.Preferences; |
43 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
44 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValueActionListExtension; |
45 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
46 | |
import org.kuali.rice.kew.util.KEWConstants; |
47 | |
import org.kuali.rice.kew.util.PerformanceLogger; |
48 | |
import org.kuali.rice.kim.bo.Person; |
49 | |
import org.kuali.rice.kim.bo.entity.KimPrincipal; |
50 | |
import org.kuali.rice.kns.UserSession; |
51 | |
import org.kuali.rice.kns.exception.AuthorizationException; |
52 | |
import org.kuali.rice.kns.util.GlobalVariables; |
53 | |
import org.kuali.rice.kns.web.struts.action.KualiAction; |
54 | |
import org.kuali.rice.kns.web.ui.ExtraButton; |
55 | |
|
56 | |
import javax.servlet.http.HttpServletRequest; |
57 | |
import javax.servlet.http.HttpServletResponse; |
58 | |
import java.util.ArrayList; |
59 | |
import java.util.Arrays; |
60 | |
import java.util.Collection; |
61 | |
import java.util.Collections; |
62 | |
import java.util.Comparator; |
63 | |
import java.util.Iterator; |
64 | |
import java.util.LinkedHashMap; |
65 | |
import java.util.List; |
66 | |
import java.util.Map; |
67 | |
|
68 | |
|
69 | |
|
70 | |
|
71 | |
|
72 | |
|
73 | |
|
74 | |
|
75 | 0 | public class ActionListAction extends KualiAction { |
76 | |
|
77 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(ActionListAction.class); |
78 | |
|
79 | |
private static final String ACTION_LIST_KEY = "actionList"; |
80 | |
private static final String ACTION_LIST_PAGE_KEY = "actionListPage"; |
81 | |
private static final String ACTION_LIST_USER_KEY = "actionList.user"; |
82 | |
private static final String REQUERY_ACTION_LIST_KEY = "requeryActionList"; |
83 | |
|
84 | |
private static final String ACTIONREQUESTCD_PROP = "actionRequestCd"; |
85 | |
private static final String CUSTOMACTIONLIST_PROP = "customActionList"; |
86 | |
private static final String ACTIONITEM_PROP = "actionitem"; |
87 | |
private static final String HELPDESK_ACTIONLIST_USERNAME = "helpDeskActionListUserName"; |
88 | |
|
89 | |
private static final String ACTIONITEM_ACTIONREQUESTCD_INVALID_ERRKEY = "actionitem.actionrequestcd.invalid"; |
90 | |
private static final String ACTIONLIST_BAD_CUSTOM_ACTION_LIST_ITEMS_ERRKEY = "actionlist.badCustomActionListItems"; |
91 | |
private static final String ACTIONLIST_BAD_ACTION_ITEMS_ERRKEY = "actionlist.badActionItems"; |
92 | |
private static final String HELPDESK_LOGIN_EMPTY_ERRKEY = "helpdesk.login.empty"; |
93 | |
private static final String HELPDESK_LOGIN_INVALID_ERRKEY = "helpdesk.login.invalid"; |
94 | |
|
95 | |
|
96 | |
@Override |
97 | |
public ActionForward execute(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) throws Exception { |
98 | 0 | ActionListForm frm = (ActionListForm)actionForm; |
99 | 0 | request.setAttribute("Constants", getServlet().getServletContext().getAttribute("KEWConstants")); |
100 | 0 | request.setAttribute("preferences", getUserSession().retrieveObject(KEWConstants.PREFERENCES)); |
101 | 0 | frm.setHeaderButtons(getHeaderButtons()); |
102 | 0 | return super.execute(mapping, actionForm, request, response); |
103 | |
} |
104 | |
|
105 | |
private List<ExtraButton> getHeaderButtons(){ |
106 | 0 | List<ExtraButton> headerButtons = new ArrayList<ExtraButton>(); |
107 | 0 | ExtraButton eb = new ExtraButton(); |
108 | 0 | String krBaseUrl = ConfigContext.getCurrentContextConfig().getKRBaseURL(); |
109 | 0 | eb.setExtraButtonSource( krBaseUrl + "/images/tinybutton-preferences.gif"); |
110 | 0 | eb.setExtraButtonOnclick("Preferences.do?returnMapping=viewActionList"); |
111 | |
|
112 | 0 | headerButtons.add(eb); |
113 | 0 | eb = new ExtraButton(); |
114 | 0 | eb.setExtraButtonSource(krBaseUrl + "/images/tinybutton-refresh.gif"); |
115 | 0 | eb.setExtraButtonProperty("methodToCall.start"); |
116 | |
|
117 | 0 | headerButtons.add(eb); |
118 | 0 | eb = new ExtraButton(); |
119 | 0 | eb.setExtraButtonSource(krBaseUrl + "/images/tinybutton-filter.gif"); |
120 | 0 | eb.setExtraButtonOnclick("javascript: window.open('ActionListFilter.do?methodToCall=start');"); |
121 | 0 | headerButtons.add(eb); |
122 | |
|
123 | |
|
124 | 0 | return headerButtons; |
125 | |
} |
126 | |
|
127 | |
|
128 | |
|
129 | |
@Override |
130 | |
protected ActionForward defaultDispatch(ActionMapping mapping, |
131 | |
ActionForm form, HttpServletRequest request, |
132 | |
HttpServletResponse response) throws Exception { |
133 | 0 | return start(mapping, form, request, response); |
134 | |
} |
135 | |
|
136 | |
public ActionForward start(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) throws Exception { |
137 | 0 | PerformanceLogger plog = new PerformanceLogger(); |
138 | 0 | plog.log("Starting ActionList fetch"); |
139 | 0 | ActionListForm form = (ActionListForm) actionForm; |
140 | 0 | ActionListService actionListSrv = KEWServiceLocator.getActionListService(); |
141 | |
|
142 | |
|
143 | |
|
144 | 0 | Integer page = form.getPage(); |
145 | 0 | String sortCriterion = form.getSort(); |
146 | 0 | SortOrderEnum sortOrder = SortOrderEnum.ASCENDING; |
147 | 0 | final UserSession uSession = getUserSession(); |
148 | |
|
149 | 0 | if (form.getDir() != null) { |
150 | 0 | sortOrder = parseSortOrder(form.getDir()); |
151 | |
} |
152 | 0 | else if ( !StringUtils.isEmpty((String) uSession.retrieveObject(KEWConstants.SORT_ORDER_ATTR_NAME))) { |
153 | 0 | sortOrder = parseSortOrder((String) uSession.retrieveObject(KEWConstants.SORT_ORDER_ATTR_NAME)); |
154 | |
} |
155 | |
|
156 | 0 | if (page == null && sortCriterion == null) { |
157 | 0 | page = Integer.valueOf(1); |
158 | 0 | sortCriterion = ActionItemComparator.DOCUMENT_ID; |
159 | |
} |
160 | 0 | else if ( !StringUtils.isEmpty((String) uSession.retrieveObject(KEWConstants.SORT_CRITERIA_ATTR_NAME))) { |
161 | 0 | sortCriterion = (String) uSession.retrieveObject(KEWConstants.SORT_CRITERIA_ATTR_NAME); |
162 | |
} |
163 | |
|
164 | 0 | if (page == null) { |
165 | 0 | page = form.getCurrentPage(); |
166 | |
} |
167 | |
|
168 | |
|
169 | 0 | form.setCurrentPage(page); |
170 | 0 | if (!StringUtils.isEmpty(sortCriterion)) { |
171 | 0 | form.setCurrentSort(sortCriterion); |
172 | 0 | form.setCurrentDir(getSortOrderValue(sortOrder)); |
173 | |
} |
174 | |
|
175 | |
|
176 | 0 | form.setDefaultActionToTake("NONE"); |
177 | |
|
178 | 0 | boolean freshActionList = true; |
179 | |
|
180 | 0 | List actionList = (List)request.getSession().getAttribute(ACTION_LIST_KEY); |
181 | 0 | plog.log("Time to initialize"); |
182 | |
try { |
183 | |
|
184 | 0 | String principalId = null; |
185 | 0 | if (uSession.retrieveObject(KEWConstants.ACTION_LIST_FILTER_ATTR_NAME) == null) { |
186 | 0 | ActionListFilter filter = new ActionListFilter(); |
187 | 0 | filter.setDelegationType(KEWConstants.DELEGATION_SECONDARY); |
188 | 0 | filter.setExcludeDelegationType(true); |
189 | 0 | uSession.addObject(KEWConstants.ACTION_LIST_FILTER_ATTR_NAME, filter); |
190 | |
} |
191 | |
|
192 | 0 | final ActionListFilter filter = (ActionListFilter) uSession.retrieveObject(KEWConstants.ACTION_LIST_FILTER_ATTR_NAME); |
193 | |
|
194 | |
|
195 | |
|
196 | |
|
197 | |
|
198 | 0 | boolean forceListRefresh = request.getSession().getAttribute(REQUERY_ACTION_LIST_KEY) != null; |
199 | 0 | if (uSession.retrieveObject(KEWConstants.HELP_DESK_ACTION_LIST_PRINCIPAL_ATTR_NAME) != null) { |
200 | 0 | principalId = ((KimPrincipal) uSession.retrieveObject(KEWConstants.HELP_DESK_ACTION_LIST_PRINCIPAL_ATTR_NAME)).getPrincipalId(); |
201 | |
} else { |
202 | 0 | if (!StringUtils.isEmpty(form.getDocType())) { |
203 | 0 | filter.setDocumentType(form.getDocType()); |
204 | 0 | filter.setExcludeDocumentType(false); |
205 | 0 | forceListRefresh = true; |
206 | |
} |
207 | 0 | principalId = uSession.getPerson().getPrincipalId(); |
208 | |
} |
209 | |
|
210 | 0 | final Preferences preferences = (Preferences) getUserSession().retrieveObject(KEWConstants.PREFERENCES); |
211 | |
|
212 | 0 | if (!StringUtils.isEmpty(form.getDelegationId())) { |
213 | 0 | if (!KEWConstants.DELEGATION_DEFAULT.equals(form.getDelegationId())) { |
214 | |
|
215 | |
|
216 | |
|
217 | |
|
218 | 0 | if (StringUtils.isNotBlank(form.getPrimaryDelegateId()) && !KEWConstants.PRIMARY_DELEGATION_DEFAULT.equals(form.getPrimaryDelegateId())){ |
219 | 0 | if (form.getPrimaryDelegateId().equals(request.getParameter("oldPrimaryDelegateId")) && |
220 | |
!form.getDelegationId().equals(request.getParameter("oldDelegationId"))) { |
221 | 0 | form.setPrimaryDelegateId(KEWConstants.PRIMARY_DELEGATION_DEFAULT); |
222 | |
} else { |
223 | 0 | form.setDelegationId(KEWConstants.DELEGATION_DEFAULT); |
224 | |
} |
225 | 0 | } else if (StringUtils.isNotBlank(filter.getPrimaryDelegateId()) && |
226 | |
!KEWConstants.PRIMARY_DELEGATION_DEFAULT.equals(filter.getPrimaryDelegateId())) { |
227 | |
|
228 | |
|
229 | 0 | filter.setPrimaryDelegateId(KEWConstants.PRIMARY_DELEGATION_DEFAULT); |
230 | |
} |
231 | |
} |
232 | |
|
233 | 0 | filter.setDelegatorId(form.getDelegationId()); |
234 | 0 | filter.setExcludeDelegatorId(false); |
235 | 0 | actionList = null; |
236 | |
} |
237 | |
|
238 | 0 | if (!StringUtils.isEmpty(form.getPrimaryDelegateId())) { |
239 | |
|
240 | |
|
241 | 0 | if (StringUtils.isBlank(form.getDelegationId()) && !KEWConstants.PRIMARY_DELEGATION_DEFAULT.equals(form.getPrimaryDelegateId()) && |
242 | |
StringUtils.isNotBlank(filter.getDelegatorId()) && |
243 | |
!KEWConstants.DELEGATION_DEFAULT.equals(filter.getDelegatorId())) { |
244 | 0 | filter.setDelegatorId(KEWConstants.DELEGATION_DEFAULT); |
245 | |
} |
246 | |
|
247 | 0 | filter.setPrimaryDelegateId(form.getPrimaryDelegateId()); |
248 | 0 | filter.setExcludeDelegatorId(false); |
249 | 0 | actionList = null; |
250 | |
} |
251 | |
|
252 | |
|
253 | 0 | if (!principalId.equals(request.getSession().getAttribute(ACTION_LIST_USER_KEY))) { |
254 | 0 | actionList = null; |
255 | |
} |
256 | |
|
257 | 0 | if (isOutboxMode(form, request, preferences)) { |
258 | 0 | actionList = new ArrayList(actionListSrv.getOutbox(principalId, filter)); |
259 | 0 | form.setOutBoxEmpty(actionList.isEmpty()); |
260 | |
} else { |
261 | 0 | if (actionList == null) { |
262 | |
|
263 | 0 | actionListSrv.refreshActionList(getUserSession().getPerson().getPrincipalId()); |
264 | |
|
265 | 0 | actionList = new ArrayList(actionListSrv.getActionList(principalId, filter)); |
266 | 0 | request.getSession().setAttribute(ACTION_LIST_USER_KEY, principalId); |
267 | 0 | } else if (forceListRefresh) { |
268 | |
|
269 | 0 | actionList = new ArrayList(actionListSrv.getActionList(principalId, filter)); |
270 | 0 | request.getSession().setAttribute(ACTION_LIST_USER_KEY, principalId); |
271 | 0 | } else if (actionListSrv.refreshActionList(getUserSession().getPerson().getPrincipalId())) { |
272 | 0 | actionList = new ArrayList(actionListSrv.getActionList(principalId, filter)); |
273 | 0 | request.getSession().setAttribute(ACTION_LIST_USER_KEY, principalId); |
274 | |
} else { |
275 | 0 | Boolean update = (Boolean) uSession.retrieveObject(KEWConstants.UPDATE_ACTION_LIST_ATTR_NAME); |
276 | 0 | if (update == null || !update) { |
277 | 0 | freshActionList = false; |
278 | |
} |
279 | |
} |
280 | 0 | request.getSession().setAttribute(ACTION_LIST_KEY, actionList); |
281 | |
} |
282 | |
|
283 | 0 | request.getSession().setAttribute(REQUERY_ACTION_LIST_KEY, null); |
284 | |
|
285 | |
|
286 | 0 | if (KEWConstants.DELEGATORS_ON_ACTION_LIST_PAGE.equalsIgnoreCase(preferences.getDelegatorFilter())) { |
287 | 0 | Collection delegators = actionListSrv.findUserSecondaryDelegators(principalId); |
288 | 0 | form.setDelegators(ActionListUtil.getWebFriendlyRecipients(delegators)); |
289 | 0 | form.setDelegationId(filter.getDelegatorId()); |
290 | |
} |
291 | |
|
292 | |
|
293 | 0 | if (KEWConstants.PRIMARY_DELEGATES_ON_ACTION_LIST_PAGE.equalsIgnoreCase(preferences.getPrimaryDelegateFilter())) { |
294 | 0 | Collection<Recipient> pDelegates = actionListSrv.findUserPrimaryDelegations(principalId); |
295 | 0 | form.setPrimaryDelegates(ActionListUtil.getWebFriendlyRecipients(pDelegates)); |
296 | 0 | form.setPrimaryDelegateId(filter.getPrimaryDelegateId()); |
297 | |
} |
298 | |
|
299 | 0 | form.setFilterLegend(filter.getFilterLegend()); |
300 | 0 | plog.log("Setting attributes"); |
301 | |
|
302 | 0 | int pageSize = getPageSize(preferences); |
303 | |
|
304 | 0 | if (freshActionList) { |
305 | 0 | plog.log("calling initializeActionList"); |
306 | 0 | initializeActionList(actionList, preferences); |
307 | 0 | plog.log("done w/ initializeActionList"); |
308 | |
|
309 | |
|
310 | 0 | if (sortCriterion == null) { |
311 | 0 | sortCriterion = form.getCurrentSort(); |
312 | 0 | sortOrder = parseSortOrder(form.getCurrentDir()); |
313 | |
} |
314 | |
} |
315 | |
|
316 | 0 | if (sortCriterion != null) { |
317 | 0 | sortActionList(actionList, sortCriterion, sortOrder); |
318 | |
} |
319 | |
|
320 | 0 | plog.log("calling buildCurrentPage"); |
321 | 0 | PaginatedList currentPage = buildCurrentPage(actionList, form.getCurrentPage(), form.getCurrentSort(), |
322 | |
form.getCurrentDir(), pageSize, preferences, form); |
323 | 0 | plog.log("done w/ buildCurrentPage"); |
324 | 0 | request.setAttribute(ACTION_LIST_PAGE_KEY, currentPage); |
325 | 0 | uSession.addObject(KEWConstants.UPDATE_ACTION_LIST_ATTR_NAME, Boolean.FALSE); |
326 | 0 | uSession.addObject(KEWConstants.CURRENT_PAGE_ATTR_NAME, form.getCurrentPage()); |
327 | 0 | uSession.addObject(KEWConstants.SORT_CRITERIA_ATTR_NAME, form.getSort()); |
328 | 0 | uSession.addObject(KEWConstants.SORT_ORDER_ATTR_NAME, form.getCurrentDir()); |
329 | 0 | plog.log("finished setting attributes, finishing action list fetch"); |
330 | 0 | } catch (Exception e) { |
331 | 0 | LOG.error("Error loading action list.", e); |
332 | 0 | } |
333 | |
|
334 | 0 | LOG.debug("end start ActionListAction"); |
335 | 0 | return mapping.findForward("viewActionList"); |
336 | |
} |
337 | |
|
338 | |
private SortOrderEnum parseSortOrder(String dir) throws WorkflowException { |
339 | 0 | if ("asc".equals(dir)) { |
340 | 0 | return SortOrderEnum.ASCENDING; |
341 | 0 | } else if ("desc".equals(dir)) { |
342 | 0 | return SortOrderEnum.DESCENDING; |
343 | |
} |
344 | 0 | throw new WorkflowException("Invalid sort direction: " + dir); |
345 | |
} |
346 | |
|
347 | |
private String getSortOrderValue(SortOrderEnum sortOrder) { |
348 | 0 | if (SortOrderEnum.ASCENDING.equals(sortOrder)) { |
349 | 0 | return "asc"; |
350 | 0 | } else if (SortOrderEnum.DESCENDING.equals(sortOrder)) { |
351 | 0 | return "desc"; |
352 | |
} |
353 | 0 | return null; |
354 | |
} |
355 | |
|
356 | |
private static final String OUT_BOX_MODE = "_OUT_BOX_MODE"; |
357 | |
|
358 | |
|
359 | |
|
360 | |
|
361 | |
|
362 | |
|
363 | |
|
364 | |
|
365 | |
|
366 | |
|
367 | |
private boolean isOutboxMode(ActionListForm alForm, HttpServletRequest request, Preferences preferences) { |
368 | |
|
369 | 0 | boolean outBoxView = false; |
370 | |
|
371 | 0 | if (! preferences.isUsingOutbox() || ! ConfigContext.getCurrentContextConfig().getOutBoxOn()) { |
372 | 0 | request.getSession().setAttribute(OUT_BOX_MODE, Boolean.valueOf(false)); |
373 | 0 | alForm.setViewOutbox("false"); |
374 | 0 | alForm.setShowOutbox(false); |
375 | 0 | return false; |
376 | |
} |
377 | |
|
378 | 0 | alForm.setShowOutbox(true); |
379 | 0 | if (StringUtils.isNotEmpty(alForm.getViewOutbox())) { |
380 | 0 | if (!Boolean.valueOf(alForm.getViewOutbox())) { |
381 | 0 | request.getSession().setAttribute(OUT_BOX_MODE, Boolean.valueOf(false)); |
382 | 0 | outBoxView = false; |
383 | |
} else { |
384 | 0 | request.getSession().setAttribute(OUT_BOX_MODE, Boolean.valueOf(true)); |
385 | 0 | outBoxView = true; |
386 | |
} |
387 | |
} else { |
388 | |
|
389 | 0 | if (request.getSession().getAttribute(OUT_BOX_MODE) == null) { |
390 | 0 | outBoxView = false; |
391 | |
} else { |
392 | 0 | outBoxView = (Boolean) request.getSession().getAttribute(OUT_BOX_MODE); |
393 | |
} |
394 | |
} |
395 | 0 | if (outBoxView) { |
396 | 0 | alForm.setViewOutbox("true"); |
397 | |
} else { |
398 | 0 | alForm.setViewOutbox("false"); |
399 | |
} |
400 | 0 | return outBoxView; |
401 | |
} |
402 | |
|
403 | |
private void sortActionList(List actionList, String sortName, SortOrderEnum sortOrder) { |
404 | 0 | if (StringUtils.isEmpty(sortName)) { |
405 | 0 | return; |
406 | |
} |
407 | 0 | Comparator comparator = new ActionItemComparator(sortName); |
408 | 0 | if (SortOrderEnum.DESCENDING.equals(sortOrder)) { |
409 | 0 | comparator = ComparatorUtils.reversedComparator(comparator); |
410 | |
} |
411 | 0 | Collections.sort(actionList, comparator); |
412 | |
|
413 | 0 | int index = 0; |
414 | 0 | for (Iterator iterator = actionList.iterator(); iterator.hasNext();) { |
415 | 0 | ActionItemActionListExtension actionItem = (ActionItemActionListExtension) iterator.next(); |
416 | 0 | actionItem.setActionItemIndex(Integer.valueOf(index++)); |
417 | 0 | } |
418 | 0 | } |
419 | |
|
420 | |
private void initializeActionList(List actionList, Preferences preferences) throws WorkflowException { |
421 | 0 | List actionItemProblemIds = new ArrayList(); |
422 | 0 | Map<Long,DocumentRouteHeaderValue> routeHeaders = KEWServiceLocator.getRouteHeaderService().getRouteHeadersForActionItems(actionList); |
423 | |
|
424 | 0 | int index = 0; |
425 | 0 | generateActionItemErrors(actionList); |
426 | |
|
427 | 0 | for (Iterator iterator = actionList.iterator(); iterator.hasNext();) { |
428 | 0 | ActionItemActionListExtension actionItem = (ActionItemActionListExtension)iterator.next(); |
429 | 0 | if (actionItem.getRouteHeaderId() == null) { |
430 | 0 | LOG.error("Somehow there exists an ActionItem with a null document id! actionItemId=" + actionItem.getActionItemId()); |
431 | 0 | iterator.remove(); |
432 | 0 | continue; |
433 | |
} |
434 | |
try { |
435 | 0 | actionItem.initialize(preferences); |
436 | 0 | DocumentRouteHeaderValue routeHeader = routeHeaders.get(actionItem.getRouteHeaderId()); |
437 | |
|
438 | 0 | DocumentRouteHeaderValueActionListExtension routeHeaderExtension = toDocumentRouteHeaderValueActionListExtension(routeHeader); |
439 | 0 | routeHeaderExtension.setActionListInitiatorPrincipal(routeHeaderExtension.getInitiatorPrincipal()); |
440 | 0 | actionItem.setActionItemIndex(Integer.valueOf(index)); |
441 | 0 | actionItem.setRouteHeader(routeHeaderExtension); |
442 | |
|
443 | 0 | if (KEWConstants.ROUTE_HEADER_APPROVED_CD.equalsIgnoreCase(routeHeader.getDocRouteStatus())) { |
444 | 0 | actionItem.setRowStyleClass(KEWConstants.ACTION_LIST_COLOR_PALETTE.get(preferences.getColorApproved())); |
445 | 0 | } else if (KEWConstants.ROUTE_HEADER_CANCEL_CD.equalsIgnoreCase(routeHeader.getDocRouteStatus())) { |
446 | 0 | actionItem.setRowStyleClass(KEWConstants.ACTION_LIST_COLOR_PALETTE.get(preferences.getColorCanceled())); |
447 | 0 | } else if (KEWConstants.ROUTE_HEADER_DISAPPROVED_CD.equalsIgnoreCase(routeHeader.getDocRouteStatus())) { |
448 | 0 | actionItem.setRowStyleClass(KEWConstants.ACTION_LIST_COLOR_PALETTE.get(preferences.getColorDissaproved())); |
449 | 0 | } else if (KEWConstants.ROUTE_HEADER_ENROUTE_CD.equalsIgnoreCase(routeHeader.getDocRouteStatus())) { |
450 | 0 | actionItem.setRowStyleClass(KEWConstants.ACTION_LIST_COLOR_PALETTE.get(preferences.getColorEnroute())); |
451 | 0 | } else if (KEWConstants.ROUTE_HEADER_EXCEPTION_CD.equalsIgnoreCase(routeHeader.getDocRouteStatus())) { |
452 | 0 | actionItem.setRowStyleClass(KEWConstants.ACTION_LIST_COLOR_PALETTE.get(preferences.getColorException())); |
453 | 0 | } else if (KEWConstants.ROUTE_HEADER_FINAL_CD.equalsIgnoreCase(routeHeader.getDocRouteStatus())) { |
454 | 0 | actionItem.setRowStyleClass(KEWConstants.ACTION_LIST_COLOR_PALETTE.get(preferences.getColorFinal())); |
455 | 0 | } else if (KEWConstants.ROUTE_HEADER_INITIATED_CD.equalsIgnoreCase(routeHeader.getDocRouteStatus())) { |
456 | 0 | actionItem.setRowStyleClass(KEWConstants.ACTION_LIST_COLOR_PALETTE.get(preferences.getColorInitiated())); |
457 | 0 | } else if (KEWConstants.ROUTE_HEADER_PROCESSED_CD.equalsIgnoreCase(routeHeader.getDocRouteStatus())) { |
458 | 0 | actionItem.setRowStyleClass(KEWConstants.ACTION_LIST_COLOR_PALETTE.get(preferences.getColorProccessed())); |
459 | 0 | } else if (KEWConstants.ROUTE_HEADER_SAVED_CD.equalsIgnoreCase(routeHeader.getDocRouteStatus())) { |
460 | 0 | actionItem.setRowStyleClass(KEWConstants.ACTION_LIST_COLOR_PALETTE.get(preferences.getColorSaved())); |
461 | |
} |
462 | 0 | index++; |
463 | 0 | } catch (Exception e) { |
464 | |
|
465 | |
|
466 | 0 | LOG.error("Error loading action list for action item " + actionItem.getActionItemId(), e); |
467 | 0 | iterator.remove(); |
468 | 0 | actionItemProblemIds.add(actionItem.getRouteHeaderId()); |
469 | 0 | } |
470 | 0 | } |
471 | 0 | generateActionItemErrors(ACTIONITEM_PROP, ACTIONLIST_BAD_ACTION_ITEMS_ERRKEY, actionItemProblemIds); |
472 | 0 | } |
473 | |
|
474 | |
private DocumentRouteHeaderValueActionListExtension toDocumentRouteHeaderValueActionListExtension( |
475 | |
DocumentRouteHeaderValue routeHeader) { |
476 | |
|
477 | 0 | if(routeHeader==null){ |
478 | 0 | return null; |
479 | |
} |
480 | |
|
481 | 0 | DocumentRouteHeaderValueActionListExtension extension = new DocumentRouteHeaderValueActionListExtension(); |
482 | |
|
483 | 0 | extension.setRouteHeaderId(routeHeader.getRouteHeaderId()); |
484 | 0 | extension.setDocumentTypeId(routeHeader.getDocumentTypeId()); |
485 | 0 | extension.setDocRouteStatus(routeHeader.getDocRouteStatus()); |
486 | 0 | extension.setDocRouteLevel(routeHeader.getDocRouteLevel()); |
487 | 0 | extension.setStatusModDate(routeHeader.getStatusModDate()); |
488 | 0 | extension.setCreateDate(routeHeader.getCreateDate()); |
489 | 0 | extension.setApprovedDate(routeHeader.getApprovedDate()); |
490 | 0 | extension.setFinalizedDate(routeHeader.getFinalizedDate()); |
491 | 0 | extension.setRouteStatusDate(routeHeader.getRouteStatusDate()); |
492 | 0 | extension.setRouteLevelDate(routeHeader.getRouteLevelDate()); |
493 | 0 | extension.setDocTitle(routeHeader.getDocTitle()); |
494 | 0 | extension.setAppDocId(routeHeader.getAppDocId()); |
495 | 0 | extension.setDocVersion(routeHeader.getDocVersion()); |
496 | 0 | extension.setInitiatorWorkflowId(routeHeader.getInitiatorWorkflowId()); |
497 | 0 | extension.setVersionNumber(routeHeader.getVersionNumber()); |
498 | 0 | extension.setAppDocStatus(routeHeader.getAppDocStatus()); |
499 | 0 | extension.setAppDocStatusDate(routeHeader.getAppDocStatusDate()); |
500 | |
|
501 | 0 | return extension; |
502 | |
} |
503 | |
|
504 | |
|
505 | |
|
506 | |
|
507 | |
|
508 | |
protected int getPageSize(Preferences preferences) { |
509 | 0 | return Integer.parseInt(preferences.getPageSize()); |
510 | |
} |
511 | |
|
512 | |
protected PaginatedList buildCurrentPage(List actionList, Integer page, String sortCriterion, String sortDirection, |
513 | |
int pageSize, Preferences preferences, ActionListForm form) throws WorkflowException { |
514 | 0 | List currentPage = new ArrayList(pageSize); |
515 | 0 | boolean haveFyis = false; |
516 | 0 | boolean haveApproves = false; |
517 | 0 | boolean haveAcknowledges = false; |
518 | 0 | boolean haveCancels = false; |
519 | 0 | boolean haveDisapproves = false; |
520 | 0 | boolean haveCustomActions = false; |
521 | 0 | boolean haveDisplayParameters = false; |
522 | 0 | List customActionListProblemIds = new ArrayList(); |
523 | 0 | SortOrderEnum sortOrder = parseSortOrder(sortDirection); |
524 | 0 | int startIndex = (page.intValue() - 1) * pageSize; |
525 | 0 | int endIndex = startIndex + pageSize; |
526 | 0 | generateActionItemErrors(actionList); |
527 | 0 | Map<Long,DocumentRouteHeaderValue> routeHeaders = KEWServiceLocator.getRouteHeaderService().getRouteHeadersForActionItems(actionList); |
528 | 0 | for (int index = startIndex; index < endIndex && index < actionList.size(); index++) { |
529 | 0 | ActionItemActionListExtension actionItem = (ActionItemActionListExtension)actionList.get(index); |
530 | |
|
531 | |
try { |
532 | 0 | boolean itemHasApproves = false; |
533 | 0 | boolean itemHasDisapproves = false; |
534 | 0 | boolean itemHasCancels = false; |
535 | 0 | boolean itemHasAcknowledges = false; |
536 | 0 | boolean itemHasFyis = false; |
537 | 0 | boolean itemHasCustomActions = false; |
538 | 0 | CustomActionListAttribute customActionListAttribute = routeHeaders.get(actionItem.getRouteHeaderId()).getCustomActionListAttribute(); |
539 | 0 | if (customActionListAttribute != null) { |
540 | 0 | Map customActions = new LinkedHashMap(); |
541 | 0 | customActions.put("NONE", "NONE"); |
542 | 0 | ActionSet legalActions = customActionListAttribute.getLegalActions(getUserSession().getPrincipalId(), actionItem); |
543 | 0 | if (legalActions != null && legalActions.hasApprove() && isActionCompatibleRequest(actionItem, KEWConstants.ACTION_TAKEN_APPROVED_CD)) { |
544 | 0 | customActions.put(KEWConstants.ACTION_TAKEN_APPROVED_CD, KEWConstants.ACTION_REQUEST_APPROVE_REQ_LABEL); |
545 | 0 | itemHasApproves = true; |
546 | |
} |
547 | 0 | if (legalActions != null && legalActions.hasDisapprove() && isActionCompatibleRequest(actionItem, KEWConstants.ACTION_TAKEN_DENIED_CD)) { |
548 | 0 | customActions.put(KEWConstants.ACTION_TAKEN_DENIED_CD, KEWConstants.ACTION_REQUEST_DISAPPROVE_LABEL); |
549 | 0 | itemHasDisapproves = true; |
550 | |
} |
551 | 0 | if (legalActions != null && legalActions.hasCancel() && isActionCompatibleRequest(actionItem, KEWConstants.ACTION_TAKEN_CANCELED_CD)) { |
552 | 0 | customActions.put(KEWConstants.ACTION_TAKEN_CANCELED_CD, KEWConstants.ACTION_REQUEST_CANCEL_REQ_LABEL); |
553 | 0 | itemHasCancels = true; |
554 | |
} |
555 | 0 | if (legalActions != null && legalActions.hasAcknowledge() && isActionCompatibleRequest(actionItem, KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD)) { |
556 | 0 | customActions.put(KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD, KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ_LABEL); |
557 | 0 | itemHasAcknowledges = true; |
558 | |
} |
559 | 0 | if (legalActions != null && legalActions.hasFyi() && isActionCompatibleRequest(actionItem, KEWConstants.ACTION_TAKEN_FYI_CD) && KEWConstants.PREFERENCES_YES_VAL.equalsIgnoreCase(preferences.getShowClearFyi())) { |
560 | 0 | customActions.put(KEWConstants.ACTION_TAKEN_FYI_CD, KEWConstants.ACTION_REQUEST_FYI_REQ_LABEL); |
561 | 0 | itemHasFyis = true; |
562 | |
} |
563 | 0 | if (customActions.size() > 1) { |
564 | 0 | actionItem.setCustomActions(customActions); |
565 | 0 | itemHasCustomActions = true; |
566 | |
} |
567 | 0 | actionItem.setDisplayParameters(customActionListAttribute.getDocHandlerDisplayParameters(getUserSession().getPrincipalId(), actionItem)); |
568 | 0 | haveApproves = haveApproves || itemHasApproves; |
569 | 0 | haveAcknowledges = haveAcknowledges || itemHasAcknowledges; |
570 | 0 | haveFyis = haveFyis || itemHasFyis; |
571 | 0 | haveDisapproves = haveDisapproves || itemHasDisapproves; |
572 | 0 | haveCancels = haveCancels || itemHasCancels; |
573 | 0 | haveCustomActions = haveCustomActions || itemHasCustomActions; |
574 | 0 | haveDisplayParameters = haveDisplayParameters || (actionItem.getDisplayParameters() != null); |
575 | |
} |
576 | 0 | } catch (Exception e) { |
577 | |
|
578 | 0 | LOG.error("Problem loading custom action list attribute", e); |
579 | 0 | customActionListProblemIds.add(actionItem.getRouteHeaderId()); |
580 | 0 | } |
581 | 0 | currentPage.add(actionItem); |
582 | |
} |
583 | |
|
584 | |
|
585 | 0 | form.setHasCustomActions(Boolean.valueOf(haveCustomActions)); |
586 | 0 | Map defaultActions = new LinkedHashMap(); |
587 | 0 | defaultActions.put("NONE", "NONE"); |
588 | 0 | if (haveApproves) { |
589 | 0 | defaultActions.put(KEWConstants.ACTION_TAKEN_APPROVED_CD, KEWConstants.ACTION_REQUEST_APPROVE_REQ_LABEL); |
590 | 0 | form.setCustomActionList(Boolean.TRUE); |
591 | |
} |
592 | 0 | if (haveDisapproves) { |
593 | 0 | defaultActions.put(KEWConstants.ACTION_TAKEN_DENIED_CD, KEWConstants.ACTION_REQUEST_DISAPPROVE_LABEL); |
594 | 0 | form.setCustomActionList(Boolean.TRUE); |
595 | |
} |
596 | 0 | if (haveCancels) { |
597 | 0 | defaultActions.put(KEWConstants.ACTION_TAKEN_CANCELED_CD, KEWConstants.ACTION_REQUEST_CANCEL_REQ_LABEL); |
598 | 0 | form.setCustomActionList(Boolean.TRUE); |
599 | |
} |
600 | 0 | if (haveAcknowledges) { |
601 | 0 | defaultActions.put(KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD, KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ_LABEL); |
602 | 0 | form.setCustomActionList(Boolean.TRUE); |
603 | |
} |
604 | |
|
605 | 0 | if (haveFyis && KEWConstants.PREFERENCES_YES_VAL.equalsIgnoreCase(preferences.getShowClearFyi())) { |
606 | 0 | defaultActions.put(KEWConstants.ACTION_TAKEN_FYI_CD, KEWConstants.ACTION_REQUEST_FYI_REQ_LABEL); |
607 | |
} |
608 | 0 | if (defaultActions.size() > 1) { |
609 | 0 | form.setDefaultActions(defaultActions); |
610 | |
} |
611 | |
|
612 | 0 | form.setHasDisplayParameters(haveDisplayParameters); |
613 | |
|
614 | 0 | generateActionItemErrors(CUSTOMACTIONLIST_PROP, ACTIONLIST_BAD_CUSTOM_ACTION_LIST_ITEMS_ERRKEY, customActionListProblemIds); |
615 | 0 | return new PaginatedActionList(currentPage, actionList.size(), page.intValue(), pageSize, "actionList", sortCriterion, sortOrder); |
616 | |
} |
617 | |
|
618 | |
private void generateActionItemErrors(String propertyName, String errorKey, List documentIds) { |
619 | 0 | if (!documentIds.isEmpty()) { |
620 | 0 | String documentIdsString = StringUtils.join(documentIds.iterator(), ", "); |
621 | 0 | GlobalVariables.getMessageMap().putError(propertyName, errorKey, documentIdsString); |
622 | |
} |
623 | 0 | } |
624 | |
|
625 | |
private void generateActionItemErrors(List actionList) { |
626 | 0 | for (Iterator iterator = actionList.iterator(); iterator.hasNext();) { |
627 | 0 | ActionItemActionListExtension actionItem = (ActionItemActionListExtension)iterator.next(); |
628 | |
|
629 | |
|
630 | |
|
631 | |
|
632 | |
|
633 | |
|
634 | 0 | if(!KEWConstants.ACTION_REQUEST_CODES.containsKey(actionItem.getActionRequestCd())) { |
635 | 0 | GlobalVariables.getMessageMap().putError(ACTIONREQUESTCD_PROP,ACTIONITEM_ACTIONREQUESTCD_INVALID_ERRKEY,actionItem.getActionItemId()+""); |
636 | |
} |
637 | 0 | } |
638 | 0 | } |
639 | |
|
640 | |
|
641 | |
public ActionForward takeMassActions(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
642 | 0 | ActionListForm actionListForm = (ActionListForm) form; |
643 | 0 | List actionList = (List) request.getSession().getAttribute(ACTION_LIST_KEY); |
644 | 0 | if (actionList == null) { |
645 | 0 | return start(mapping, new ActionListForm(), request, response); |
646 | |
} |
647 | 0 | ActionMessages messages = new ActionMessages(); |
648 | 0 | List invocations = new ArrayList(); |
649 | 0 | int index = 0; |
650 | 0 | for (Object element : actionListForm.getActionsToTake()) { |
651 | 0 | ActionToTake actionToTake = (ActionToTake) element; |
652 | 0 | if (actionToTake != null && actionToTake.getActionTakenCd() != null && |
653 | |
!"".equals(actionToTake.getActionTakenCd()) && |
654 | |
!"NONE".equalsIgnoreCase(actionToTake.getActionTakenCd()) && |
655 | |
actionToTake.getActionItemId() != null) { |
656 | 0 | ActionItem actionItem = getActionItemFromActionList(actionList, actionToTake.getActionItemId()); |
657 | 0 | if (actionItem == null) { |
658 | 0 | LOG.warn("Could not locate the ActionItem to take mass action against in the action list: " + actionToTake.getActionItemId()); |
659 | 0 | continue; |
660 | |
} |
661 | 0 | invocations.add(new ActionInvocation(actionItem.getActionItemId(), actionToTake.getActionTakenCd())); |
662 | |
} |
663 | 0 | index++; |
664 | 0 | } |
665 | 0 | KEWServiceLocator.getWorkflowDocumentService().takeMassActions(getUserSession().getPrincipalId(), invocations); |
666 | 0 | messages.add(ActionMessages.GLOBAL_MESSAGE, new ActionMessage("general.routing.processed")); |
667 | 0 | saveMessages(request, messages); |
668 | 0 | ActionListForm cleanForm = new ActionListForm(); |
669 | 0 | request.setAttribute(mapping.getName(), cleanForm); |
670 | 0 | request.getSession().setAttribute(REQUERY_ACTION_LIST_KEY, "true"); |
671 | 0 | return start(mapping, cleanForm, request, response); |
672 | |
} |
673 | |
|
674 | |
protected ActionItem getActionItemFromActionList(List actionList, Long actionItemId) { |
675 | 0 | for (Iterator iterator = actionList.iterator(); iterator.hasNext();) { |
676 | 0 | ActionItem actionItem = (ActionItem) iterator.next(); |
677 | 0 | if (actionItem.getActionItemId().equals(actionItemId)) { |
678 | 0 | return actionItem; |
679 | |
} |
680 | 0 | } |
681 | 0 | return null; |
682 | |
} |
683 | |
|
684 | |
public ActionForward helpDeskActionListLogin(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
685 | 0 | ActionListForm actionListForm = (ActionListForm) form; |
686 | 0 | String name = actionListForm.getHelpDeskActionListUserName(); |
687 | 0 | if (!"true".equals(request.getAttribute("helpDeskActionList"))) { |
688 | 0 | throw new AuthorizationException(getUserSession().getPrincipalId(), "helpDeskActionListLogin", getClass().getSimpleName()); |
689 | |
} |
690 | |
try |
691 | |
{ |
692 | 0 | final KimPrincipal helpDeskActionListPrincipal = KEWServiceLocator.getIdentityHelperService().getPrincipalByPrincipalName(name); |
693 | 0 | final Person helpDeskActionListPerson = KEWServiceLocator.getIdentityHelperService().getPersonByPrincipalName(name); |
694 | |
|
695 | 0 | GlobalVariables.getUserSession().addObject(KEWConstants.HELP_DESK_ACTION_LIST_PRINCIPAL_ATTR_NAME, helpDeskActionListPrincipal); |
696 | 0 | GlobalVariables.getUserSession().addObject(KEWConstants.HELP_DESK_ACTION_LIST_PERSON_ATTR_NAME, helpDeskActionListPerson); |
697 | |
} |
698 | 0 | catch (RiceRuntimeException rre) |
699 | |
{ |
700 | 0 | GlobalVariables.getMessageMap().putError(HELPDESK_ACTIONLIST_USERNAME, HELPDESK_LOGIN_INVALID_ERRKEY, name); |
701 | |
} |
702 | 0 | catch (NullPointerException npe) |
703 | |
{ |
704 | 0 | GlobalVariables.getMessageMap().putError("null", HELPDESK_LOGIN_EMPTY_ERRKEY, name); |
705 | 0 | } |
706 | 0 | actionListForm.setDelegator(null); |
707 | 0 | request.getSession().setAttribute(REQUERY_ACTION_LIST_KEY, "true"); |
708 | 0 | return start(mapping, form, request, response); |
709 | |
} |
710 | |
|
711 | |
public ActionForward clearFilter(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
712 | 0 | LOG.debug("clearFilter ActionListAction"); |
713 | 0 | final org.kuali.rice.kns.UserSession commonUserSession = getUserSession(); |
714 | 0 | commonUserSession.removeObject(KEWConstants.ACTION_LIST_FILTER_ATTR_NAME); |
715 | 0 | request.getSession().setAttribute(REQUERY_ACTION_LIST_KEY, "true"); |
716 | 0 | KEWServiceLocator.getActionListService().saveRefreshUserOption(commonUserSession.getPrincipalId()); |
717 | 0 | LOG.debug("end clearFilter ActionListAction"); |
718 | 0 | return start(mapping, form, request, response); |
719 | |
} |
720 | |
|
721 | |
public ActionForward clearHelpDeskActionListUser(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
722 | 0 | LOG.debug("clearHelpDeskActionListUser ActionListAction"); |
723 | 0 | GlobalVariables.getUserSession().removeObject(KEWConstants.HELP_DESK_ACTION_LIST_PRINCIPAL_ATTR_NAME); |
724 | 0 | GlobalVariables.getUserSession().removeObject(KEWConstants.HELP_DESK_ACTION_LIST_PERSON_ATTR_NAME); |
725 | 0 | LOG.debug("end clearHelpDeskActionListUser ActionListAction"); |
726 | 0 | return start(mapping, form, request, response); |
727 | |
} |
728 | |
|
729 | |
|
730 | |
|
731 | |
|
732 | |
public ActionForward count(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
733 | 0 | ActionListForm alForm = (ActionListForm)form; |
734 | 0 | Person user = getUserSession().getPerson(); |
735 | 0 | alForm.setCount(KEWServiceLocator.getActionListService().getCount(user.getPrincipalId())); |
736 | 0 | LOG.info("Fetched Action List count of " + alForm.getCount() + " for user " + user.getPrincipalName()); |
737 | 0 | return mapping.findForward("count"); |
738 | |
} |
739 | |
|
740 | |
public ActionForward removeOutboxItems(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
741 | 0 | ActionListForm alForm = (ActionListForm)form; |
742 | 0 | if (alForm.getOutboxItems() != null) { |
743 | 0 | KEWServiceLocator.getActionListService().removeOutboxItems(getUserSession().getPrincipalId(), Arrays.asList(alForm.getOutboxItems())); |
744 | |
} |
745 | |
|
746 | 0 | alForm.setViewOutbox("true"); |
747 | 0 | return start(mapping, form, request, response); |
748 | |
} |
749 | |
|
750 | |
|
751 | |
|
752 | |
|
753 | |
public ActionForward viewFilter(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) throws Exception { |
754 | 0 | start(mapping, actionForm, request, response); |
755 | 0 | return mapping.findForward("viewFilter"); |
756 | |
} |
757 | |
|
758 | |
|
759 | |
|
760 | |
|
761 | |
public ActionForward viewPreferences(ActionMapping mapping, ActionForm actionForm, HttpServletRequest request, HttpServletResponse response) throws Exception { |
762 | 0 | start(mapping, actionForm, request, response); |
763 | 0 | return mapping.findForward("viewPreferences"); |
764 | |
} |
765 | |
|
766 | |
private boolean isActionCompatibleRequest(ActionItemActionListExtension actionItem, String actionTakenCode) { |
767 | 0 | boolean actionCompatible = false; |
768 | 0 | String requestCd = actionItem.getActionRequestCd(); |
769 | |
|
770 | |
|
771 | 0 | if (KEWConstants.ACTION_REQUEST_FYI_REQ.equals(requestCd) && KEWConstants.ACTION_TAKEN_FYI_CD.equals(actionTakenCode)) { |
772 | 0 | actionCompatible = true || actionCompatible; |
773 | |
} |
774 | |
|
775 | |
|
776 | 0 | if (KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ.equals(requestCd) && KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD.equals(actionTakenCode)) { |
777 | 0 | actionCompatible = true || actionCompatible; |
778 | |
} |
779 | |
|
780 | |
|
781 | 0 | if (KEWConstants.ACTION_REQUEST_APPROVE_REQ.equals(requestCd) && !(KEWConstants.ACTION_TAKEN_FYI_CD.equals(actionTakenCode) || KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD.equals(actionTakenCode))) { |
782 | 0 | actionCompatible = true || actionCompatible; |
783 | |
} |
784 | |
|
785 | |
|
786 | 0 | if (KEWConstants.ACTION_REQUEST_COMPLETE_REQ.equals(requestCd) && !(KEWConstants.ACTION_TAKEN_FYI_CD.equals(actionTakenCode) || KEWConstants.ACTION_TAKEN_ACKNOWLEDGED_CD.equals(actionTakenCode))) { |
787 | 0 | actionCompatible = true || actionCompatible; |
788 | |
} |
789 | |
|
790 | 0 | return actionCompatible; |
791 | |
} |
792 | |
|
793 | |
private UserSession getUserSession(){ |
794 | 0 | return GlobalVariables.getUserSession(); |
795 | |
} |
796 | |
|
797 | 0 | private static class ActionItemComparator implements Comparator<ActionItem> { |
798 | |
|
799 | |
private static final String DOCUMENT_ID = "routeHeaderId"; |
800 | |
|
801 | |
private final String sortName; |
802 | |
|
803 | 0 | public ActionItemComparator(String sortName) { |
804 | 0 | if (StringUtils.isEmpty(sortName)) { |
805 | 0 | sortName = DOCUMENT_ID; |
806 | |
} |
807 | 0 | this.sortName = sortName; |
808 | 0 | } |
809 | |
|
810 | |
@Override |
811 | |
public int compare(ActionItem object1, ActionItem object2) { |
812 | |
try { |
813 | 0 | ActionItem actionItem1 = object1; |
814 | 0 | ActionItem actionItem2 = object2; |
815 | |
|
816 | |
|
817 | |
|
818 | 0 | Object property1 = LookupUtil.getProperty(actionItem1, sortName); |
819 | 0 | Object property2 = LookupUtil.getProperty(actionItem2, sortName); |
820 | 0 | if (property1 == null && property2 == null) { |
821 | 0 | return 0; |
822 | 0 | } else if (property1 == null) { |
823 | 0 | return -1; |
824 | 0 | } else if (property2 == null) { |
825 | 0 | return 1; |
826 | |
} |
827 | 0 | if (property1 instanceof Comparable) { |
828 | 0 | return ((Comparable)property1).compareTo(property2); |
829 | |
} |
830 | 0 | return property1.toString().compareTo(property2.toString()); |
831 | 0 | } catch (Exception e) { |
832 | 0 | if (e instanceof RuntimeException) { |
833 | 0 | throw (RuntimeException) e; |
834 | |
} |
835 | 0 | throw new RuntimeException("Could not sort for the given sort name: " + sortName, e); |
836 | |
} |
837 | |
} |
838 | |
} |
839 | |
|
840 | |
} |