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.principal.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.principal.PrincipalHRAttributes;
26  import org.kuali.hr.time.service.base.TkServiceLocator;
27  import org.kuali.hr.time.util.TKContext;
28  import org.kuali.hr.time.util.TKUtils;
29  import org.kuali.rice.kns.lookup.HtmlData;
30  import org.kuali.rice.kns.lookup.HtmlData.AnchorHtmlData;
31  import org.kuali.rice.krad.bo.BusinessObject;
32  import org.kuali.rice.krad.util.KRADConstants;
33  import org.kuali.rice.krad.util.UrlFactory;
34  
35  public class PrincipalHRAttributesLookupableHelper extends HrEffectiveDateActiveLookupableHelper {
36  
37  	private static final long serialVersionUID = 6198072858175242923L;
38  
39  	@Override
40  	public List<HtmlData> getCustomActionUrls(BusinessObject businessObject, List pkNames) {
41  		List<HtmlData> customActionUrls = new ArrayList<HtmlData>();
42  		
43  		List<HtmlData> defaultCustomActionUrls = super.getCustomActionUrls(businessObject, pkNames);
44  		
45  		PrincipalHRAttributes principalHRAttributes = (PrincipalHRAttributes) businessObject;
46  		String hrPrincipalAttributeId = principalHRAttributes.getHrPrincipalAttributeId();
47  		
48  		boolean systemAdmin = TKContext.getUser().isSystemAdmin();
49  		boolean locationAdmin = TKContext.getUser().isLocationAdmin();
50  
51  		for (HtmlData defaultCustomActionUrl : defaultCustomActionUrls){
52  			if (StringUtils.equals(defaultCustomActionUrl.getMethodToCall(), "edit")) {
53  				if (systemAdmin || locationAdmin) {
54  					customActionUrls.add(defaultCustomActionUrl);
55  				}
56  			} else {
57  				customActionUrls.add(defaultCustomActionUrl);
58  			}
59  		}
60  		
61  		Properties params = new Properties();
62  		params.put(KRADConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, getBusinessObjectClass().getName());
63  		params.put(KRADConstants.DISPATCH_REQUEST_PARAMETER, KRADConstants.MAINTENANCE_NEW_METHOD_TO_CALL);
64  		params.put("hrPrincipalAttributeId", hrPrincipalAttributeId);
65  		AnchorHtmlData viewUrl = new AnchorHtmlData(UrlFactory.parameterizeUrl(KRADConstants.INQUIRY_ACTION, params), "view");
66  		viewUrl.setDisplayText("view");
67  		viewUrl.setTarget(AnchorHtmlData.TARGET_BLANK);
68  		customActionUrls.add(viewUrl);
69  		
70  		return customActionUrls;
71  	}
72  	
73  	@Override
74  	public List<? extends BusinessObject> getSearchResults(Map<String, String> fieldValues) {
75  		String principalId = fieldValues.get("principalId");
76  	    String fromEffdt = TKUtils.getFromDateString(fieldValues.get("effectiveDate"));
77  	    String toEffdt = TKUtils.getToDateString(fieldValues.get("effectiveDate"));
78  	    String active = fieldValues.get("active");
79  	    String showHist = fieldValues.get("history");
80  
81  	    return TkServiceLocator.getPrincipalHRAttributeService().getPrincipalHrAtributes(principalId, TKUtils.formatDateString(fromEffdt), 
82  	    		TKUtils.formatDateString(toEffdt), active, showHist);
83  	}
84  }