View Javadoc

1   /**
2    * Copyright 2004-2012 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.Properties;
21  
22  import org.apache.commons.lang.StringUtils;
23  import org.kuali.hr.time.HrEffectiveDateActiveLookupableHelper;
24  import org.kuali.hr.time.position.Position;
25  import org.kuali.hr.time.util.TKContext;
26  import org.kuali.rice.kns.lookup.HtmlData;
27  import org.kuali.rice.kns.lookup.HtmlData.AnchorHtmlData;
28  import org.kuali.rice.krad.bo.BusinessObject;
29  import org.kuali.rice.krad.util.KRADConstants;
30  import org.kuali.rice.krad.util.UrlFactory;
31  
32  public class PositionLookupableHelper extends HrEffectiveDateActiveLookupableHelper {
33  
34  	private static final long serialVersionUID = -131891943631454679L;
35  
36  	@Override
37  	public List<HtmlData> getCustomActionUrls(BusinessObject businessObject, List pkNames) {
38  		List<HtmlData> customActionUrls = new ArrayList<HtmlData>();
39  		
40  		List<HtmlData> defaultCustomActionUrls = super.getCustomActionUrls(businessObject, pkNames);
41  		
42  		Position position = (Position) businessObject;
43  		String hrPositionId = position.getHrPositionId();
44  		
45  		boolean systemAdmin = TKContext.getUser().isSystemAdmin();
46  		boolean locationAdmin = TKContext.getUser().isLocationAdmin();
47  
48  		for (HtmlData defaultCustomActionUrl : defaultCustomActionUrls){
49  			if (StringUtils.equals(defaultCustomActionUrl.getMethodToCall(), "edit")) {
50  				if (systemAdmin || locationAdmin) {
51  					customActionUrls.add(defaultCustomActionUrl);
52  				}
53  			} else {
54  				customActionUrls.add(defaultCustomActionUrl);
55  			}
56  		}
57  		
58  		Properties params = new Properties();
59  		params.put(KRADConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, getBusinessObjectClass().getName());
60  		params.put(KRADConstants.DISPATCH_REQUEST_PARAMETER, KRADConstants.MAINTENANCE_NEW_METHOD_TO_CALL);
61  		params.put("hrPositionId", hrPositionId);
62  		AnchorHtmlData viewUrl = new AnchorHtmlData(UrlFactory.parameterizeUrl(KRADConstants.INQUIRY_ACTION, params), "view");
63  		viewUrl.setDisplayText("view");
64  		viewUrl.setTarget(AnchorHtmlData.TARGET_BLANK);
65  		customActionUrls.add(viewUrl);
66  		
67  		return customActionUrls;
68  	}
69  
70  }