| org.kuali.module.labor.dao.LaborLedgerBalanceDao
All known Subclasses: org.kuali.module.labor.dao.ojb.LaborLedgerBalanceDaoOjb,
Method Summary | |
public List<List<String>> | findAccountsInFundGroups(Integer fiscalYear, Map<String, String> fieldValues, List<String> subFundGroupCodes, List<String> fundGroupCodes) | public Iterator | findBalance(Map fieldValues, boolean isConsolidated) | public List<LaborBalanceSummary> | findBalanceSummary(Integer fiscalYear, Collection<String> balanceTypes) | public Iterator<LedgerBalance> | findBalancesForFiscalYear(Integer fiscalYear) | public Iterator<LedgerBalance> | findBalancesForFiscalYear(Integer fiscalYear, Map<String, String> fieldValues) | public Iterator<LedgerBalanceForYearEndBalanceForward> | findBalancesForFiscalYear(Integer fiscalYear, Map<String, String> fieldValues, List<String> subFundGroupCodes, List<String> fundGroupCodes) | public List<EmployeeFunding> | findCurrentEmployeeFunds(Map fieldValues) | public List<LedgerBalance> | findCurrentFunds(Map fieldValues) | public List<EmployeeFunding> | findEncumbranceEmployeeFunds(Map fieldValues) | public List<LedgerBalance> | findEncumbranceFunds(Map fieldValues) | public Iterator | getConsolidatedBalanceRecordCount(Map fieldValues) | public void | save(LedgerBalance ledgerBalance) |
findAccountsInFundGroups | public List<List<String>> findAccountsInFundGroups(Integer fiscalYear, Map<String, String> fieldValues, List<String> subFundGroupCodes, List<String> fundGroupCodes)(Code) | | find the accounts (chart of accounts code + account number) in the given fund groups
Parameters: fiscalYear - the given fiscal year Parameters: fieldValues - the input fields and values Parameters: subFundGroupCodes - the given list of qualified sub fund group codes Parameters: fundGroupCodes - the given list of qualified group codes the accounts (chart of accounts code + account number) in the given fund groups |
findBalance | public Iterator findBalance(Map fieldValues, boolean isConsolidated)(Code) | | This method finds the records of balance entries according to input fields and values
Parameters: fieldValues - the input fields and values Parameters: isConsolidated - consolidation option is applied or not the records of balance entries |
findBalanceSummary | public List<LaborBalanceSummary> findBalanceSummary(Integer fiscalYear, Collection<String> balanceTypes)(Code) | | find the summary of the ledger balances for the given fiscal year and balance types
Parameters: fiscalYear - the given fiscal year Parameters: balanceTypes - the given balance type codes the ledger balances for the given fiscal year and balance types |
findBalancesForFiscalYear | public Iterator<LedgerBalance> findBalancesForFiscalYear(Integer fiscalYear)(Code) | | Parameters: fiscalYear - the given fiscal year an iterator over all balances for a given fiscal year |
findBalancesForFiscalYear | public Iterator<LedgerBalance> findBalancesForFiscalYear(Integer fiscalYear, Map<String, String> fieldValues)(Code) | | Parameters: fiscalYear - the given fiscal year Parameters: fieldValues - the given field values an iterator over all balances for a given fiscal year |
findBalancesForFiscalYear | public Iterator<LedgerBalanceForYearEndBalanceForward> findBalancesForFiscalYear(Integer fiscalYear, Map<String, String> fieldValues, List<String> subFundGroupCodes, List<String> fundGroupCodes)(Code) | | Parameters: fiscalYear - the given fiscal year Parameters: fieldValues - the input fields and values Parameters: subFundGroupCodes - the given list of qualified sub fund group codes Parameters: fundGroupCodes - the given list of qualified group codes an Iterator over all balances for a given year and search criteria that include the accounts of balances must belongto the given sub fund group or fund group |
findCurrentEmployeeFunds | public List<EmployeeFunding> findCurrentEmployeeFunds(Map fieldValues)(Code) | | retrieve the current funds according to the given field values
Parameters: fieldValues - the given field values the current funds according to the given field values |
findCurrentFunds | public List<LedgerBalance> findCurrentFunds(Map fieldValues)(Code) | | retrieve the current funds according to the given field values
Parameters: fieldValues - the given field values the current funds according to the given field values |
findEncumbranceEmployeeFunds | public List<EmployeeFunding> findEncumbranceEmployeeFunds(Map fieldValues)(Code) | | retrieve the encumbrance funds according to the given field values
Parameters: fieldValues - the given field values the encumbrance funds according to the given field values |
findEncumbranceFunds | public List<LedgerBalance> findEncumbranceFunds(Map fieldValues)(Code) | | retrieve the encumbrance funds according to the given field values
Parameters: fieldValues - the given field values the encumbrance funds according to the given field values |
getConsolidatedBalanceRecordCount | public Iterator getConsolidatedBalanceRecordCount(Map fieldValues)(Code) | | This method gets the size collection of balance entry groups according to input fields and values if the entries are required
to be consolidated
Parameters: fieldValues - the input fields and values the size collection of balance entry groups |
save | public void save(LedgerBalance ledgerBalance)(Code) | | save the given ledger balance into the underlying data store
Parameters: ledgerBalance - the given ledger balance |
|
|