View Javadoc
1   package org.kuali.ole.service.impl;
2   
3   import org.kuali.ole.describe.bo.OleInstanceItemType;
4   import org.kuali.ole.describe.bo.OleLocation;
5   import org.kuali.ole.describe.bo.OleLocationLevel;
6   import org.kuali.ole.service.OleLocationWebService;
7   import org.kuali.rice.core.api.util.ConcreteKeyValue;
8   import org.kuali.rice.core.api.util.KeyValue;
9   import org.kuali.rice.krad.service.BusinessObjectService;
10  import org.kuali.rice.krad.service.KRADServiceLocator;
11  
12  import java.util.*;
13  
14  /**
15   * Created with IntelliJ IDEA.
16   * User: ?
17   * Date: 2/21/13
18   * Time: 10:48 PM
19   * To change this template use File | Settings | File Templates.
20   */
21  public class OleLocationWebServiceImpl implements OleLocationWebService {
22      private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(OleLocationWebServiceImpl.class);
23      @Override
24      public List<String> getItemLocation() {
25          LOG.debug(" Inside get Item Location Method of OleLocationWebServiceImpl ");
26          List<String> locationList = new ArrayList<String>();
27          List<KeyValue> options = new ArrayList<KeyValue>();
28          BusinessObjectService businessObjectService = KRADServiceLocator.getBusinessObjectService();
29          Map parentCriteria1 = new HashMap();
30          parentCriteria1.put("levelCode", "SHELVING");
31          List<OleLocationLevel> oleLocationLevel = (List<OleLocationLevel>) businessObjectService.findMatching(OleLocationLevel.class, parentCriteria1);
32          if (oleLocationLevel != null && oleLocationLevel.size() > 0) {
33              String shelvingId = oleLocationLevel.get(0).getLevelId();
34              options.add(new ConcreteKeyValue("", ""));
35              Map parentCriteria = new HashMap();
36              parentCriteria.put("levelId", shelvingId);
37              Collection<OleLocation> oleLocationCollection = businessObjectService.findMatching(OleLocation.class, parentCriteria);
38              for (OleLocation oleLocation : oleLocationCollection) {
39                  String locationName = oleLocation.getLocationName();
40                  String levelId = oleLocation.getLevelId();
41                  String levelCode = oleLocation.getLocationCode();
42                  boolean parentId = oleLocation.getParentLocationId() != null ? true : false;
43                  while (parentId) {
44                      Map criteriaMap = new HashMap();
45                      criteriaMap.put("locationId", oleLocation.getParentLocationId());
46                      OleLocation location = businessObjectService.findByPrimaryKey(OleLocation.class,
47                              criteriaMap);
48                      if (locationName != null) {
49                          locationName = location.getLocationName() + "/" + locationName;
50                      }
51                      if (levelCode != null) {
52                          levelCode = location.getLocationCode() + "/" + levelCode;
53                      }
54                      parentId = location.getParentLocationId() != null ? true : false;
55                      oleLocation = location;
56                  }
57                  options.add(new ConcreteKeyValue(levelCode, levelCode));
58              }
59          }
60          Map<String, String> map = new HashMap<String, String>();
61          for (KeyValue option : options) {
62              map.put(option.getKey(), option.getValue());
63  
64          }
65          Map<String, Object> map1 = sortByLocation(map);
66  
67          // List<KeyValue> options1 = new ArrayList<KeyValue>();
68          for (Map.Entry<String, Object> entry : map1.entrySet()) {
69              locationList.add((String) entry.getValue());
70          }
71          return locationList;
72      }
73  
74      @Override
75      public List<String> getItemType() {
76          LOG.debug(" Inside get Item Type Method of OleLocationWebServiceImpl ");
77          List<String> keyValues = new ArrayList<String>();
78          Collection<OleInstanceItemType> oleInstanceItemTypes = KRADServiceLocator.getBusinessObjectService().findAll(OleInstanceItemType.class);
79          for (OleInstanceItemType oleInstanceItemType : oleInstanceItemTypes) {
80              String itemTypeCode = oleInstanceItemType.getInstanceItemTypeCode();
81              String itemTypeName = oleInstanceItemType.getInstanceItemTypeName();
82              String itemType = itemTypeCode + "," + itemTypeName;
83              keyValues.add(itemType);
84  
85          }
86          return keyValues;
87      }
88  
89      private Map<String, Object> sortByLocation(Map<String, String> parentCriteria) {
90          Map<String, Object> map = new LinkedHashMap<String, Object>();
91  
92          List<String> keyList = new ArrayList<String>(parentCriteria.keySet());
93          List<String> valueList = new ArrayList<String>(parentCriteria.values());
94          Set<String> sortedSet = new TreeSet<String>(valueList);
95  
96          Object[] sortedArray = sortedSet.toArray();
97          int size = sortedArray.length;
98  
99          for (int i = 0; i < size; i++) {
100             map.put(keyList.get(valueList.indexOf(sortedArray[i])), sortedArray[i]);
101         }
102 
103         return map;
104     }
105 }