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.kpme.core.department.web;
17  
18  import java.util.List;
19  import java.util.Map;
20  import java.util.Properties;
21  
22  import org.kuali.kpme.core.department.Department;
23  import org.kuali.kpme.core.lookup.KPMELookupableHelper;
24  import org.kuali.kpme.core.service.HrServiceLocator;
25  import org.kuali.rice.kns.lookup.HtmlData;
26  import org.kuali.rice.kns.lookup.HtmlData.AnchorHtmlData;
27  import org.kuali.rice.krad.bo.BusinessObject;
28  import org.kuali.rice.krad.util.GlobalVariables;
29  import org.kuali.rice.krad.util.KRADConstants;
30  import org.kuali.rice.krad.util.UrlFactory;
31  
32  @SuppressWarnings("deprecation")
33  public class DepartmentLookupableHelper extends KPMELookupableHelper {
34  	
35  	private static final long serialVersionUID = 566277764259830850L;
36  
37  	@Override
38  	@SuppressWarnings("rawtypes")
39  	public List<HtmlData> getCustomActionUrls(BusinessObject businessObject, List pkNames) {
40  		List<HtmlData> customActionUrls = super.getCustomActionUrls(businessObject, pkNames);
41  		
42  		Department departmentObj = (Department) businessObject;
43  		String hrDeptId = departmentObj.getHrDeptId();
44  
45  		Properties params = new Properties();
46  		params.put(KRADConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, getBusinessObjectClass().getName());
47  		params.put(KRADConstants.DISPATCH_REQUEST_PARAMETER, KRADConstants.MAINTENANCE_NEW_METHOD_TO_CALL);
48  		params.put("hrDeptId", hrDeptId);
49          params.put("dept", departmentObj.getDept());
50  		AnchorHtmlData viewUrl = new AnchorHtmlData(UrlFactory.parameterizeUrl(KRADConstants.INQUIRY_ACTION, params), "view");
51  		viewUrl.setDisplayText("view");
52  		viewUrl.setTarget(AnchorHtmlData.TARGET_BLANK);
53  		customActionUrls.add(viewUrl);
54  		
55  		return customActionUrls;
56  	}
57  
58      @Override
59      public List<? extends BusinessObject> getSearchResults(Map<String, String> fieldValues) {
60          String dept = fieldValues.get("dept");
61          String location = fieldValues.get("location");
62          String descr = fieldValues.get("description");
63          String active = fieldValues.get("active");
64          String showHist = fieldValues.get("history");
65  
66          return HrServiceLocator.getDepartmentService().getDepartments(GlobalVariables.getUserSession().getPrincipalId(), dept, location, descr, active, showHist);
67      }
68  }