public interface CashManagementDao
Modifier and Type | Method and Description |
---|---|
CoinDetail |
findCoinDetailByCashieringStatus(String documentNumber,
String documentTypeCode,
String cashieringStatus)
Retrieves all coin detail records with the given document number, document type code, and cashiering record source
|
CurrencyDetail |
findCurrencyDetailByCashieringStatus(String documentNumber,
String documentTypeCode,
String cashieringStatus)
Retrieves all currency detail records with the given document number, document type code, and cashiering record source
|
List<CashieringItemInProcess> |
findOpenItemsInProcessByCampusCode(String campusCode)
This method returns a list of open items in process for a given campus code
|
List<CashieringItemInProcess> |
findRecentlyClosedItemsInProcess(String campusCode)
This finds items in process associated with the given campus code closed within the past 30 days.
|
List<CoinDetail> |
getAllCoinDetails(String documentNumber)
This method gets all coin details for a particular document number, irregardless of cashiering record source
|
List<CurrencyDetail> |
getAllCurrencyDetails(String documentNumber)
This method retrieves all currency details associated with a cash management document
|
List<Check> |
selectCashieringChecksForDeposit(String documentNumber,
Integer depositLineNumber)
Retrieves from the database all cashiering transaction checks deposited for a given deposit
|
List<Check> |
selectDepositedCashieringChecks(String documentNumber)
Retrieves all deposited cashiering checks from the database
|
Integer |
selectNextAvailableCheckLineNumber(String documentNumber)
Select the next available check line number for the given cash management document
|
List<Check> |
selectUndepositedCashieringChecks(String documentNumber)
Retrieves from the database any undeposited cashiering transaction checks associated with the given cash management document
|
List<CashieringItemInProcess> findOpenItemsInProcessByCampusCode(String campusCode)
campusCode
- the campus code to use to search open items in process forList<CashieringItemInProcess> findRecentlyClosedItemsInProcess(String campusCode)
campusCode
- the campus code that the found items in process should be associated withCurrencyDetail findCurrencyDetailByCashieringStatus(String documentNumber, String documentTypeCode, String cashieringStatus)
documentNumber
- the document number this currency detail was associated withdocumentTypeCode
- the type code of that documentcashieringStatus
- the cashiering statusCoinDetail findCoinDetailByCashieringStatus(String documentNumber, String documentTypeCode, String cashieringStatus)
documentNumber
- the document the coin details were associated withdocumentTypeCode
- the type of that documentcashieringStatus
- the cashiering statusList<Check> selectUndepositedCashieringChecks(String documentNumber)
documentNumber
- the document number of a cash management document that cashiering transaction checks may be associated
withList<Check> selectCashieringChecksForDeposit(String documentNumber, Integer depositLineNumber)
documentNumber
- the document number of a cash management document that cashiering transaction checks have been
deposited fordepositLineNumber
- the line number of the deposit to find checks deposited forList<Check> selectDepositedCashieringChecks(String documentNumber)
documentNumber
- the document to get checks associated withList<CurrencyDetail> getAllCurrencyDetails(String documentNumber)
documentNumber
- the document number of the cash management document to get currency details forList<CoinDetail> getAllCoinDetails(String documentNumber)
documentNumber
- the document number to find cash details forInteger selectNextAvailableCheckLineNumber(String documentNumber)
documentNumber
- the document number of a cash management documentCopyright © 2004–2015 The Kuali Foundation. All rights reserved.