1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.vnd.businessobject.options;
17
18 import java.util.ArrayList;
19 import java.util.Collection;
20 import java.util.Iterator;
21 import java.util.List;
22
23 import org.kuali.ole.sys.context.SpringContext;
24 import org.kuali.ole.vnd.businessobject.ShippingPaymentTerms;
25 import org.kuali.rice.core.api.util.ConcreteKeyValue;
26 import org.kuali.rice.krad.keyvalues.KeyValuesBase;
27 import org.kuali.rice.krad.service.KeyValuesService;
28
29
30
31
32
33
34 public class ShippingPaymentTermsValuesFinder extends KeyValuesBase {
35
36
37
38
39 public List getKeyValues() {
40
41 KeyValuesService boService = SpringContext.getBean(KeyValuesService.class);
42 Collection codes = boService.findAll(ShippingPaymentTerms.class);
43 List labels = new ArrayList();
44 labels.add(new ConcreteKeyValue("", ""));
45 for (Iterator iter = codes.iterator(); iter.hasNext();) {
46 ShippingPaymentTerms spt = (ShippingPaymentTerms) iter.next();
47 labels.add(new ConcreteKeyValue(spt.getVendorShippingPaymentTermsCode(), spt.getVendorShippingPaymentTermsDescription()));
48 }
49
50 return labels;
51 }
52
53 }