View Javadoc
1   /*
2    * Copyright 2007 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.ole.vnd.businessobject.lookup;
17  
18  import java.util.Collections;
19  import java.util.List;
20  import java.util.Map;
21  
22  import org.kuali.ole.sys.OLEConstants;
23  import org.kuali.rice.kns.lookup.AbstractLookupableHelperServiceImpl;
24  import org.kuali.rice.krad.bo.PersistableBusinessObject;
25  import org.kuali.rice.krad.util.BeanPropertyComparator;
26  
27  
28  public class VendorPhoneLookupableHelperServiceImpl extends AbstractLookupableHelperServiceImpl {
29      /**
30       * Overrides the getSearchResults in the super class so that we can do some customization in our vendor phone number lookup.
31       * 
32       * @see org.kuali.rice.kns.lookup.Lookupable#getSearchResults(java.util.Map)
33       */
34      @Override
35      public List<PersistableBusinessObject> getSearchResults(Map<String, String> fieldValues) {
36          boolean unbounded = false;
37          super.setBackLocation((String) fieldValues.get(OLEConstants.BACK_LOCATION));
38          super.setDocFormKey((String) fieldValues.get(OLEConstants.DOC_FORM_KEY));
39  
40          List<PersistableBusinessObject> searchResults = (List) getLookupService().findCollectionBySearchHelper(getBusinessObjectClass(), fieldValues, unbounded);
41  
42          // loop through results
43          // sort list if default sort column given
44          List<String> defaultSortColumns = getDefaultSortColumns();
45          if (defaultSortColumns.size() > 0) {
46              Collections.sort(searchResults, new BeanPropertyComparator(getDefaultSortColumns(), true));
47          }
48  
49          return searchResults;
50      }
51  
52  }