View Javadoc
1   /*
2    * Copyright 2008 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.module.purap.businessobject;
17  
18  import org.kuali.ole.sys.businessobject.UnitOfMeasure;
19  import org.kuali.rice.core.api.util.type.KualiDecimal;
20  
21  
22  public interface ReceivingItem {
23  
24      public Integer getReceivingItemIdentifier();
25  
26      public void setReceivingItemIdentifier(Integer receivingItemIdentifier);
27  
28      public String getDocumentNumber();
29  
30      public void setDocumentNumber(String documentNumber);
31  
32      public Integer getPurchaseOrderIdentifier();
33  
34      public void setPurchaseOrderIdentifier(Integer purchaseOrderIdentifier);
35  
36      public Integer getItemLineNumber();
37  
38      public void setItemLineNumber(Integer itemLineNumber);
39  
40      public String getItemTypeCode();
41  
42      public void setItemTypeCode(String itemTypeCode);
43  
44      public String getItemUnitOfMeasureCode();
45  
46      public void setItemUnitOfMeasureCode(String itemUnitOfMeasureCode);
47  
48      public String getItemCatalogNumber();
49  
50      public void setItemCatalogNumber(String itemCatalogNumber);
51  
52      public String getItemDescription();
53  
54      public void setItemDescription(String itemDescription);
55  
56      public KualiDecimal getItemReceivedTotalQuantity();
57  
58      public void setItemReceivedTotalQuantity(KualiDecimal itemReceivedTotalQuantity);
59  
60      public KualiDecimal getItemReturnedTotalQuantity();
61  
62      public void setItemReturnedTotalQuantity(KualiDecimal itemReturnedTotalQuantity);
63  
64      public KualiDecimal getItemDamagedTotalQuantity();
65  
66      public void setItemDamagedTotalQuantity(KualiDecimal itemDamagedTotalQuantity);
67  
68      public String getItemReasonAddedCode();
69  
70      public void setItemReasonAddedCode(String itemReasonAddedCode);
71  
72      /**
73       * Gets the itemType attribute.
74       *
75       * @return Returns the itemType.
76       */
77      public ItemType getItemType();
78  
79      /**
80       * Sets the itemType attribute value.
81       *
82       * @param itemType The itemType to set.
83       * @deprecated
84       */
85      public void setItemType(ItemType itemType);
86  
87      /**
88       * Gets the itemUnitOfMeasure attribute.
89       *
90       * @return Returns the itemUnitOfMeasure.
91       */
92      public UnitOfMeasure getItemUnitOfMeasure();
93  
94      /**
95       * Sets the itemUnitOfMeasure attribute value.
96       *
97       * @param itemUnitOfMeasure The itemUnitOfMeasure to set.
98       * @deprecated
99       */
100     public void setItemUnitOfMeasure(UnitOfMeasure itemUnitOfMeasure);
101 
102     public KualiDecimal getItemOriginalReceivedTotalQuantity();
103 
104     public void setItemOriginalReceivedTotalQuantity(KualiDecimal itemOriginalReceivedTotalQuantity);
105 
106     public KualiDecimal getItemOriginalReturnedTotalQuantity();
107 
108     public void setItemOriginalReturnedTotalQuantity(KualiDecimal itemOriginalReturnedTotalQuantity);
109 
110     public KualiDecimal getItemOriginalDamagedTotalQuantity();
111 
112     public void setItemOriginalDamagedTotalQuantity(KualiDecimal itemOriginalDamagedTotalQuantity);
113 
114 }