001/* 002 * Copyright 2011 The Kuali Foundation. 003 * 004 * Licensed under the Educational Community License, Version 2.0 (the "License"); 005 * you may not use this file except in compliance with the License. 006 * You may obtain a copy of the License at 007 * 008 * http://www.opensource.org/licenses/ecl2.php 009 * 010 * Unless required by applicable law or agreed to in writing, software 011 * distributed under the License is distributed on an "AS IS" BASIS, 012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 013 * See the License for the specific language governing permissions and 014 * limitations under the License. 015 */ 016package org.kuali.ole.select.form; 017 018import org.kuali.ole.select.bo.OLEInvoiceBo; 019import org.kuali.ole.select.businessobject.OlePurchaseOrderItem; 020import org.kuali.ole.select.document.OlePurchaseOrderDocument; 021import org.kuali.rice.krad.web.form.UifFormBase; 022 023import java.sql.Date; 024import java.util.ArrayList; 025import java.util.List; 026public class OLEAddTitlesToInvoiceForm extends UifFormBase { 027 028 private String selectedSection; 029 private String invoiceId; 030 private String invoiceNumber; 031 private OLEInvoiceBo oleInvoiceBo; 032 private Date invoiceDate; 033 private String errorMsg; 034 private String successMsg; 035 private String invoiceAmount; 036 private String paymentMethod; 037 private String invoiceNbr; 038 private boolean payAndReceive; 039 private boolean cancelBox; 040 private String documentNumber; 041 private boolean continueReceiveAndPay; 042 private boolean skipValidation; 043 044 public boolean isCancelBox() { 045 return cancelBox; 046 } 047 048 public void setCancelBox(boolean cancelBox) { 049 this.cancelBox = cancelBox; 050 } 051 052 public String getErrorMsg() { 053 return errorMsg; 054 } 055 056 public void setErrorMsg(String errorMsg) { 057 this.errorMsg = errorMsg; 058 } 059 060 public String getSuccessMsg() { 061 return successMsg; 062 } 063 064 public void setSuccessMsg(String successMsg) { 065 this.successMsg = successMsg; 066 } 067 068 public String getInvoiceNbr() { 069 return invoiceNbr; 070 } 071 072 public void setInvoiceNbr(String invoiceNbr) { 073 this.invoiceNbr = invoiceNbr; 074 } 075 076 public boolean isPayAndReceive() { 077 return payAndReceive; 078 } 079 080 public void setPayAndReceive(boolean payAndReceive) { 081 this.payAndReceive = payAndReceive; 082 } 083 084 public String getInvoiceAmount() { 085 return invoiceAmount; 086 } 087 088 public void setInvoiceAmount(String invoiceAmount) { 089 this.invoiceAmount = invoiceAmount; 090 } 091 092 public String getPaymentMethod() { 093 return paymentMethod; 094 } 095 096 public void setPaymentMethod(String paymentMethod) { 097 this.paymentMethod = paymentMethod; 098 } 099 100 public Date getInvoiceDate() { 101 return invoiceDate; 102 } 103 104 public void setInvoiceDate(Date invoiceDate) { 105 this.invoiceDate = invoiceDate; 106 } 107 108 List<OlePurchaseOrderItem> olePurchaseOrderItems = new ArrayList<OlePurchaseOrderItem>(); 109 110 public List<OlePurchaseOrderDocument> olePurchaseOrderDocuments = new ArrayList<OlePurchaseOrderDocument>(); 111 112 public List<OlePurchaseOrderDocument> getOlePurchaseOrderDocuments() { 113 return olePurchaseOrderDocuments; 114 } 115 116 public void setOlePurchaseOrderDocuments(List<OlePurchaseOrderDocument> olePurchaseOrderDocuments) { 117 this.olePurchaseOrderDocuments = olePurchaseOrderDocuments; 118 } 119 120 public String getInvoiceNumber() { 121 return invoiceNumber; 122 } 123 124 public void setInvoiceNumber(String invoiceNumber) { 125 this.invoiceNumber = invoiceNumber; 126 } 127 128 public OLEAddTitlesToInvoiceForm() { 129 /*this.selectedSection="newToInvoice";*/ 130 } 131 132 public String getSelectedSection() { 133 return selectedSection; 134 } 135 136 public void setSelectedSection(String selectedSection) { 137 this.selectedSection = selectedSection; 138 } 139 140 public String getInvoiceId() { 141 return invoiceId; 142 } 143 144 public void setInvoiceId(String invoiceId) { 145 this.invoiceId = invoiceId; 146 } 147 148 public OLEInvoiceBo getOleInvoiceBo() { 149 return oleInvoiceBo; 150 } 151 152 public void setOleInvoiceBo(OLEInvoiceBo oleInvoiceBo) { 153 this.oleInvoiceBo = oleInvoiceBo; 154 } 155 156 public List<OlePurchaseOrderItem> getOlePurchaseOrderItems() { 157 return olePurchaseOrderItems; 158 } 159 160 public void setOlePurchaseOrderItems(List<OlePurchaseOrderItem> olePurchaseOrderItems) { 161 this.olePurchaseOrderItems = olePurchaseOrderItems; 162 } 163 164 public String getDocumentNumber() { 165 return documentNumber; 166 } 167 168 public void setDocumentNumber(String documentNumber) { 169 this.documentNumber = documentNumber; 170 } 171 172 public boolean isContinueReceiveAndPay() { 173 return continueReceiveAndPay; 174 } 175 176 public void setContinueReceiveAndPay(boolean continueReceiveAndPay) { 177 this.continueReceiveAndPay = continueReceiveAndPay; 178 } 179 180 public boolean isSkipValidation() { 181 return skipValidation; 182 } 183 184 public void setSkipValidation(boolean skipValidation) { 185 this.skipValidation = skipValidation; 186 } 187}