1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.ole.module.purap.businessobject.options;
17
18 import org.kuali.ole.module.purap.PurapConstants;
19 import org.kuali.ole.vnd.VendorConstants;
20 import org.kuali.rice.core.api.util.ConcreteKeyValue;
21 import org.kuali.rice.krad.keyvalues.KeyValuesBase;
22
23 import java.util.ArrayList;
24 import java.util.List;
25
26
27
28
29 public class StatusChangeValuesFinder extends KeyValuesBase {
30
31
32
33
34
35
36 public List getKeyValues() {
37 List labels = new ArrayList();
38 labels.add(new ConcreteKeyValue(PurapConstants.PurchaseOrderStatuses.APPDOC_IN_PROCESS, VendorConstants.NONE));
39 labels.add(new ConcreteKeyValue(PurapConstants.PurchaseOrderStatuses.APPDOC_WAITING_FOR_DEPARTMENT, "Department"));
40 labels.add(new ConcreteKeyValue(PurapConstants.PurchaseOrderStatuses.APPDOC_WAITING_FOR_VENDOR, "Vendor"));
41 return labels;
42 }
43 }