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.salgroup.service;
17  
18  import java.util.List;
19  import java.util.Map;
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.salgroup.SalGroup;
25  import org.kuali.hr.time.service.base.TkServiceLocator;
26  import org.kuali.hr.time.util.TKUtils;
27  import org.kuali.rice.kns.lookup.HtmlData;
28  import org.kuali.rice.kns.lookup.HtmlData.AnchorHtmlData;
29  import org.kuali.rice.krad.bo.BusinessObject;
30  import org.kuali.rice.krad.util.KRADConstants;
31  import org.kuali.rice.krad.util.UrlFactory;
32  
33  public class SalaryGroupLookupableHelper extends HrEffectiveDateActiveLookupableHelper {
34  
35      private static final long serialVersionUID = 4826886027602440306L;
36  
37      @Override
38      public List<HtmlData> getCustomActionUrls(BusinessObject businessObject, List pkNames) {
39          List<HtmlData> customActionUrls = super.getCustomActionUrls(businessObject, pkNames);
40  
41          SalGroup salGroup = (SalGroup) businessObject;
42          String hrSalGroupId = salGroup.getHrSalGroupId();
43  
44          Properties params = new Properties();
45          params.put(KRADConstants.BUSINESS_OBJECT_CLASS_ATTRIBUTE, getBusinessObjectClass().getName());
46          params.put(KRADConstants.DISPATCH_REQUEST_PARAMETER, KRADConstants.MAINTENANCE_NEW_METHOD_TO_CALL);
47          params.put("hrSalGroupId", hrSalGroupId);
48          AnchorHtmlData viewUrl = new AnchorHtmlData(UrlFactory.parameterizeUrl(KRADConstants.INQUIRY_ACTION, params), "view");
49          viewUrl.setDisplayText("view");
50          viewUrl.setTarget(AnchorHtmlData.TARGET_BLANK);
51          customActionUrls.add(viewUrl);
52  
53          return customActionUrls;
54      }
55  
56      @Override
57      public List<? extends BusinessObject> getSearchResults(Map<String, String> fieldValues){
58          String hrSalGroup = fieldValues.get("hrSalGroup");
59          String descr = fieldValues.get("descr");
60          String fromEffdt = TKUtils.getFromDateString(fieldValues.get("effectiveDate"));
61          String toEffdt = TKUtils.getToDateString(fieldValues.get("effectiveDate"));
62          String active = fieldValues.get("active");
63          String showHist = fieldValues.get("history");
64  
65          if (StringUtils.equals(hrSalGroup, "%")) {
66              hrSalGroup = "";
67          }
68          
69          return TkServiceLocator.getSalGroupService().getSalGroups(hrSalGroup, descr, TKUtils.formatDateString(fromEffdt),
70                  TKUtils.formatDateString(toEffdt), active, showHist);
71      }
72  
73  }