| org.kuali.module.financial.dao.CashManagementDao
All known Subclasses: org.kuali.module.financial.dao.ojb.CashManagementDaoOjb,
CashManagementDao | public interface CashManagementDao (Code) | | |
findCoinDetailByCashieringRecordSource | public CoinDetail findCoinDetailByCashieringRecordSource(String documentNumber, String documentTypeCode, String cashieringRecordSource)(Code) | | Retrieves all coin detail records with the given document number, document type code, and cashiering record source
Parameters: documentNumber - the document the coin details were associated with Parameters: documentTypeCode - the type of that document Parameters: cashieringRecordSource - the cashiering record source a list of coin details meeting those criteria |
findCurrencyDetailByCashieringRecordSource | public CurrencyDetail findCurrencyDetailByCashieringRecordSource(String documentNumber, String documentTypeCode, String cashieringRecordSource)(Code) | | Retrieves all currency detail records with the given document number, document type code, and cashiering record source
Parameters: documentNumber - the document number this currency detail was associated with Parameters: documentTypeCode - the type code of that document Parameters: cashieringRecordSource - the cashiering record source a list of currency details matching that criteria |
findOpenItemsInProcessByWorkgroupName | public List<CashieringItemInProcess> findOpenItemsInProcessByWorkgroupName(String wrkgrpName)(Code) | | This method returns a list of open items in process for a given workgroup
Parameters: wrkgrpName - the workgroup name to use to search open items in process for a list of open items in process |
findRecentlyClosedItemsInProcess | public List<CashieringItemInProcess> findRecentlyClosedItemsInProcess(String workgroupName)(Code) | | This finds items in process associated with the given workgroup closed within the past 30 days.
Parameters: workgroupName - the workgroup name that the found items in process should be associated with a list of CashieringItemInProcess records |
getAllCoinDetails | public List<CoinDetail> getAllCoinDetails(String documentNumber)(Code) | | This method gets all coin details for a particular document number, irregardless of cashiering record source
Parameters: documentNumber - the document number to find cash details for hopefully, a bunch of coin details |
getAllCurrencyDetails | public List<CurrencyDetail> getAllCurrencyDetails(String documentNumber)(Code) | | This method retrieves all currency details associated with a cash management document
Parameters: documentNumber - the document number of the cash management document to get currency details for a list of currency details |
selectCashieringChecksForDeposit | public List<Check> selectCashieringChecksForDeposit(String documentNumber, Integer depositLineNumber)(Code) | | Retrieves from the database all cashiering transaction checks deposited for a given deposit
Parameters: documentNumber - the document number of a cash management document that cashiering transaction checks have beendeposited for Parameters: depositLineNumber - the line number of the deposit to find checks deposited for a list of checks associated with the given deposit |
selectDepositedCashieringChecks | public List<Check> selectDepositedCashieringChecks(String documentNumber)(Code) | | Retrieves all deposited cashiering checks from the database
Parameters: documentNumber - the document to get checks associated with a list of deposited checks |
selectNextAvailableCheckLineNumber | public Integer selectNextAvailableCheckLineNumber(String documentNumber)(Code) | | Select the next available check line number for the given cash management document
Parameters: documentNumber - the document number of a cash management document the next available check line number for cashiering checks |
selectUndepositedCashieringChecks | public List<Check> selectUndepositedCashieringChecks(String documentNumber)(Code) | | Retrieves from the database any undeposited cashiering transaction checks associated with the given cash management document
Parameters: documentNumber - the document number of a cash management document that cashiering transaction checks may be associatedwith a list of checks associated with the document |
|
|