001 package org.kuali.ole.patron.bill.form; 002 003 import org.kuali.ole.patron.bill.*; 004 import org.kuali.rice.krad.web.form.DocumentFormBase; 005 006 import java.math.BigDecimal; 007 import java.util.ArrayList; 008 import java.util.Date; 009 import java.util.List; 010 011 /** 012 * Created with IntelliJ IDEA. 013 * User: ? 014 * Date: 10/17/12 015 * Time: 9:46 PM 016 * To change this template use File | Settings | File Templates. 017 */ 018 public class ItemBillForm extends DocumentFormBase { 019 020 private String itemBarcode; 021 private BigDecimal totalAmount; 022 private String billNumber; 023 private Date billDate; 024 private FeeType patronFeeType; 025 private String patronId; 026 private BigDecimal unPaidBalance; 027 private String paymentStatusName; 028 private String feeType; 029 private BigDecimal feeAmount; 030 private List<ItemBill> itemBillList = new ArrayList<ItemBill>(); 031 032 public String getItemBarcode() { 033 return itemBarcode; 034 } 035 036 public void setItemBarcode(String itemBarcode) { 037 this.itemBarcode = itemBarcode; 038 } 039 040 public List<ItemBill> getItemBillList() { 041 return itemBillList; 042 } 043 044 public void setItemBillList(List<ItemBill> itemBillList) { 045 this.itemBillList = itemBillList; 046 } 047 048 public BigDecimal getFeeAmount() { 049 return feeAmount; 050 } 051 052 public void setFeeAmount(BigDecimal feeAmount) { 053 this.feeAmount = feeAmount; 054 } 055 056 public String getFeeType() { 057 return feeType; 058 } 059 060 public void setFeeType(String feeType) { 061 this.feeType = feeType; 062 } 063 064 public BigDecimal getUnPaidBalance() { 065 return unPaidBalance; 066 } 067 068 public void setUnPaidBalance(BigDecimal unPaidBalance) { 069 this.unPaidBalance = unPaidBalance; 070 } 071 072 public String getPaymentStatusName() { 073 return paymentStatusName; 074 } 075 076 public void setPaymentStatusName(String paymentStatusName) { 077 this.paymentStatusName = paymentStatusName; 078 } 079 080 public String getPatronId() { 081 return patronId; 082 } 083 084 public void setPatronId(String patronId) { 085 this.patronId = patronId; 086 } 087 088 public Date getBillDate() { 089 return billDate; 090 } 091 092 public void setBillDate(Date billDate) { 093 this.billDate = billDate; 094 } 095 096 public String getBillNumber() { 097 return billNumber; 098 } 099 100 public void setBillNumber(String billNumber) { 101 this.billNumber = billNumber; 102 } 103 104 public BigDecimal getTotalAmount() { 105 return totalAmount; 106 } 107 108 public void setTotalAmount(BigDecimal totalAmount) { 109 this.totalAmount = totalAmount; 110 } 111 112 public FeeType getPatronFeeType() { 113 return patronFeeType; 114 } 115 116 public void setPatronFeeType(FeeType patronFeeType) { 117 this.patronFeeType = patronFeeType; 118 } 119 }