| org.kuali.module.gl.service.EncumbranceService
All known Subclasses: org.kuali.module.gl.service.impl.EncumbranceServiceImpl,
EncumbranceService | public interface EncumbranceService (Code) | | An interface declaring services dealing with encumbrances
|
findOpenEncumbrance | public Iterator findOpenEncumbrance(Map fieldValues)(Code) | | This method finds the open encumbrances according to input fields and values
Parameters: fieldValues - the input fields and values a collection of open encumbrances |
getAllEncumbrances | public Iterator getAllEncumbrances()(Code) | | Fetch all encumbrance records from GL open encumbrance table. Based on test data, there's only
about a third as many encumbrances as there are, say, balances, so unless your institution is huge,
it's probably safe to call this method.
an Iterator of encumbrances |
getOpenEncumbranceRecordCount | public Integer getOpenEncumbranceRecordCount(Map fieldValues)(Code) | | This method gets the number of the open encumbrances according to input fields and values
Parameters: fieldValues - the input fields and values the number of the open encumbrances |
getSummarizedEncumbrances | public Iterator getSummarizedEncumbrances(String documentTypeCode, boolean included)(Code) | | group all encumbrances with/without the given document type code by fiscal year, chart, account, sub-account, object code,
sub object code, and balance type code, and summarize the encumbrance amount and the encumbrance close amount.
Parameters: documentTypeCode - the given document type code Parameters: included - indicate if all encumbrances with the given document type are included in the results or not |
purgeYearByChart | public void purgeYearByChart(String chartOfAccountsCode, int year)(Code) | | Purge an entire fiscal year for a single chart.
Parameters: chartOfAccountsCode - the chart of encumbrances to purge Parameters: year - the year of encumbrances to purage |
save | public void save(Encumbrance enc)(Code) | | Save an Encumbrance entry
Parameters: enc - an encumbrance entry |
|
|