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 */
016 package org.kuali.kfs.module.ar.businessobject;
017
018 import java.util.Date;
019 import java.util.LinkedHashMap;
020
021 import org.kuali.rice.kns.bo.TransientBusinessObjectBase;
022 import org.kuali.rice.kns.util.KualiDecimal;
023
024 public class CustomerOpenItemReportDetail extends TransientBusinessObjectBase {
025
026 private String documentType;
027 private String documentNumber;
028 private String documentDescription;
029 private Date billingDate;
030 private Date dueApprovedDate;
031 private KualiDecimal documentPaymentAmount;
032 private KualiDecimal unpaidUnappliedAmount;
033
034 @Override
035 protected LinkedHashMap toStringMapper() {
036 return null;
037 }
038
039 public String getDocumentType() {
040 return documentType;
041 }
042
043 public void setDocumentType(String documentType) {
044 this.documentType = documentType;
045 }
046
047 public String getDocumentNumber() {
048 return documentNumber;
049 }
050
051 public void setDocumentNumber(String documentNumber) {
052 this.documentNumber = documentNumber;
053 }
054
055 public String getDocumentDescription() {
056 return documentDescription;
057 }
058
059 public void setDocumentDescription(String documentDescription) {
060 this.documentDescription = documentDescription;
061 }
062
063 public Date getBillingDate() {
064 return billingDate;
065 }
066
067 public void setBillingDate(java.util.Date date) {
068 this.billingDate = date;
069 }
070
071 public Date getDueApprovedDate() {
072 return dueApprovedDate;
073 }
074
075 public void setDueApprovedDate(Date approvedDate) {
076 this.dueApprovedDate = approvedDate;
077 }
078
079 public KualiDecimal getDocumentPaymentAmount() {
080 return documentPaymentAmount;
081 }
082
083 public void setDocumentPaymentAmount(KualiDecimal documentPaymentAmount) {
084 this.documentPaymentAmount = documentPaymentAmount;
085 }
086
087 public KualiDecimal getUnpaidUnappliedAmount() {
088 return unpaidUnappliedAmount;
089 }
090
091 public void setUnpaidUnappliedAmount(KualiDecimal unpaidUnappliedAmount) {
092 this.unpaidUnappliedAmount = unpaidUnappliedAmount;
093 }
094 }