View Javadoc

1   /**
2    * Copyright 2004-2013 The Kuali Foundation
3    *
4    * Licensed under the Educational Community License, Version 2.0 (the "License");
5    * you may not use this file except in compliance with the License.
6    * You may obtain a copy of the License at
7    *
8    * http://www.opensource.org/licenses/ecl2.php
9    *
10   * Unless required by applicable law or agreed to in writing, software
11   * distributed under the License is distributed on an "AS IS" BASIS,
12   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13   * See the License for the specific language governing permissions and
14   * limitations under the License.
15   */
16  package org.kuali.hr.time.position.service;
17  
18  import java.util.ArrayList;
19  import java.util.List;
20  import java.util.Map;
21  import java.util.Properties;
22  
23  import org.apache.commons.lang.StringUtils;
24  import org.kuali.hr.time.HrEffectiveDateActiveLookupableHelper;
25  import org.kuali.hr.time.position.Position;
26  import org.kuali.hr.time.service.base.TkServiceLocator;
27  import org.kuali.hr.time.util.TKContext;
28  import org.kuali.hr.time.util.TKUser;
29  import org.kuali.hr.time.util.TKUtils;
30  import org.kuali.rice.kns.lookup.HtmlData;
31  import org.kuali.rice.kns.lookup.HtmlData.AnchorHtmlData;
32  import org.kuali.rice.krad.bo.BusinessObject;
33  import org.kuali.rice.krad.util.KRADConstants;
34  import org.kuali.rice.krad.util.UrlFactory;
35  
36  public class PositionLookupableHelper extends HrEffectiveDateActiveLookupableHelper {
37  
38  	private static final long serialVersionUID = -131891943631454679L;
39  
40  	@Override
41  	public List<HtmlData> getCustomActionUrls(BusinessObject businessObject, List pkNames) {
42  		List<HtmlData> customActionUrls = new ArrayList<HtmlData>();
43  		
44  		List<HtmlData> defaultCustomActionUrls = super.getCustomActionUrls(businessObject, pkNames);
45  		
46  		Position position = (Position) businessObject;
47  		String hrPositionId = position.getHrPositionId();
48  		
49  		boolean systemAdmin = TKUser.isSystemAdmin();
50  		boolean locationAdmin = TKUser.isLocationAdmin();
51  
52  		for (HtmlData defaultCustomActionUrl : defaultCustomActionUrls){
53  			if (StringUtils.equals(defaultCustomActionUrl.getMethodToCall(), "edit")) {
54  				if (systemAdmin || locationAdmin) {
55  					customActionUrls.add(defaultCustomActionUrl);
56  				}
57  			} else {
58  				customActionUrls.add(defaultCustomActionUrl);
59  			}
60  		}
61  		
62  		Properties params = new Properties();
63  		params.put(KRADConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, getBusinessObjectClass().getName());
64  		params.put(KRADConstants.DISPATCH_REQUEST_PARAMETER, KRADConstants.MAINTENANCE_NEW_METHOD_TO_CALL);
65  		params.put("hrPositionId", hrPositionId);
66          params.put("positionNumber", position.getPositionNumber());
67  		AnchorHtmlData viewUrl = new AnchorHtmlData(UrlFactory.parameterizeUrl(KRADConstants.INQUIRY_ACTION, params), "view");
68  		viewUrl.setDisplayText("view");
69  		viewUrl.setTarget(AnchorHtmlData.TARGET_BLANK);
70  		customActionUrls.add(viewUrl);
71  		
72  		return customActionUrls;
73  	}
74  
75      @Override
76      public List<? extends BusinessObject> getSearchResults(Map<String, String> fieldValues) {
77          String positionNum = fieldValues.get("positionNumber");
78          String workArea = fieldValues.get("workArea");
79          String description = fieldValues.get("description");
80          String fromEffdt = TKUtils.getFromDateString(fieldValues.get("effectiveDate"));
81          String toEffdt = TKUtils.getToDateString(fieldValues.get("effectiveDate"));
82          String active = fieldValues.get("active");
83          String showHist = fieldValues.get("history");
84  
85          if (StringUtils.equals(positionNum, "%")) {
86              positionNum = "";
87          }
88          
89          return TkServiceLocator.getPositionService().getPositions(positionNum, workArea, description, TKUtils.formatDateString(fromEffdt),
90                  TKUtils.formatDateString(toEffdt), active, showHist);
91      }
92  
93  }