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.KualiLookupableHelperServiceImpl;
24  import org.kuali.rice.krad.bo.BusinessObject;
25  import org.kuali.rice.krad.util.BeanPropertyComparator;
26  
27  
28  public class VendorCustomerNumberLookupableHelperServiceImpl extends KualiLookupableHelperServiceImpl {
29      private boolean searchUsingOnlyPrimaryKeyValues = false;
30  
31      /**
32       * Overrides the getSearchResultsHelper in the super class so that we can do some customization
33       * 
34       * @see org.kuali.rice.kns.lookup.KualiLookupableHelperServiceImpl#getSearchResultsHelper(java.util.Map, boolean)
35       */
36      @SuppressWarnings("unchecked")
37      @Override
38      protected List<? extends BusinessObject> getSearchResultsHelper(Map<String, String> fieldValues, boolean unbounded) {
39          searchUsingOnlyPrimaryKeyValues = getLookupService().allPrimaryKeyValuesPresentAndNotWildcard(getBusinessObjectClass(), fieldValues);
40  
41          setBackLocation(fieldValues.get(OLEConstants.BACK_LOCATION));
42          setDocFormKey(fieldValues.get(OLEConstants.DOC_FORM_KEY));
43          setReferencesToRefresh(fieldValues.get(OLEConstants.REFERENCES_TO_REFRESH));
44          List searchResults = (List) getLookupService().findCollectionBySearchHelper(getBusinessObjectClass(), fieldValues, unbounded);
45          // sort list if default sort column given
46          List defaultSortColumns = getDefaultSortColumns();
47          if (defaultSortColumns.size() > 0) {
48              Collections.sort(searchResults, new BeanPropertyComparator(getDefaultSortColumns(), true));
49          }
50  
51          return searchResults;
52      }
53  
54      /**
55       * @see LookupableHelperService#isSearchUsingOnlyPrimaryKeyValues()
56       */
57      @Override
58      public boolean isSearchUsingOnlyPrimaryKeyValues() {
59  
60          return searchUsingOnlyPrimaryKeyValues;
61      }
62  }
63