| org.kuali.module.financial.document.VoucherDocument
All known Subclasses: org.kuali.module.financial.document.AuxiliaryVoucherDocument, org.kuali.module.financial.document.JournalVoucherDocument,
VoucherDocument | public interface VoucherDocument extends AccountingDocument(Code) | | Interface for voucher type documents that require debit/credit support
|
Method Summary | |
public KualiDecimal | getCreditTotal() This method calculates the credit total for a voucher document keying off of the debit/credit code, only summing the
accounting lines with a debitCreditCode that matched the debit constant, and returns the results. | public KualiDecimal | getDebitTotal() This method calculates the debit total for a voucher document keying off of the debit/debit code, only summing the accounting
lines with a debitDebitCode that matched the debit constant, and returns the results. | public java.sql.Date | getReversalDate() This method retrieves the reversal date associated with this document. | public void | setReversalDate(java.sql.Date reversalDate) This method sets the reversal date associated with this document. |
getCreditTotal | public KualiDecimal getCreditTotal()(Code) | | This method calculates the credit total for a voucher document keying off of the debit/credit code, only summing the
accounting lines with a debitCreditCode that matched the debit constant, and returns the results.
KualiDecimal |
getDebitTotal | public KualiDecimal getDebitTotal()(Code) | | This method calculates the debit total for a voucher document keying off of the debit/debit code, only summing the accounting
lines with a debitDebitCode that matched the debit constant, and returns the results.
KualiDecimal |
getReversalDate | public java.sql.Date getReversalDate()(Code) | | This method retrieves the reversal date associated with this document.
java.sql.Date |
setReversalDate | public void setReversalDate(java.sql.Date reversalDate)(Code) | | This method sets the reversal date associated with this document.
Parameters: reversalDate - |
|
|