| org.kuali.module.gl.dao.AccountBalanceDao
All known Subclasses: org.kuali.module.gl.dao.ojb.AccountBalanceDaoOjb,
AccountBalanceDao | public interface AccountBalanceDao (Code) | | An interface that declares methods needed for AccountBalances to interact with the database
|
Method Summary | |
public List | findAccountBalanceByConsolidationByObjectTypes(String[] objectTypes, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, boolean isExcludeCostShare, boolean isConsolidated, int pendingEntriesCode) | public List | findAccountBalanceByLevel(Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String financialConsolidationObjectCode, boolean isCostShareExcluded, boolean isConsolidated, int pendingEntryCode) | public List | findAccountBalanceByObject(Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String financialObjectLevelCode, String financialReportingSortCode, boolean isCostShareExcluded, boolean isConsolidated, int pendingEntryCode) | public Iterator | findAvailableAccountBalance(Map fieldValues) | public Iterator | findConsolidatedAvailableAccountBalance(Map fieldValues) | public AccountBalance | getByTransaction(Transaction t) | public void | purgeYearByChart(String chartOfAccountscode, int year) Purge an entire fiscal year for a single chart. | public void | save(AccountBalance ab) |
findAccountBalanceByConsolidationByObjectTypes | public List findAccountBalanceByConsolidationByObjectTypes(String[] objectTypes, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, boolean isExcludeCostShare, boolean isConsolidated, int pendingEntriesCode)(Code) | | Get available balances by consolidation for specific object types
Parameters: objectTypes - the object types that reported account balances must have Parameters: universityFiscalYear - the university fiscal year of account balances to find Parameters: chartOfAccountsCode - the chart of accounts of account balances to find Parameters: accountNumber - the account number of account balances to find Parameters: isExcludeCostShare - whether cost share entries should be excluded from this inquiry Parameters: isConsolidated - whether the results of this should be consolidated or not Parameters: pendingEntriesCode - whether to include no pending entries, approved pending entries, or all pending entries a List of Maps with the appropriate query results |
findAccountBalanceByLevel | public List findAccountBalanceByLevel(Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String financialConsolidationObjectCode, boolean isCostShareExcluded, boolean isConsolidated, int pendingEntryCode)(Code) | | Get available balances by level
Parameters: universityFiscalYear - the university fiscal year of account balances to find Parameters: chartOfAccountsCode - the chart of accounts of account balances to find Parameters: accountNumber - the account number of account balances to find Parameters: financialConsolidationObjectCode - the consolidation code of account balances to find Parameters: isCostShareExcluded - whether cost share entries should be excluded from this inquiry Parameters: isConsolidated - whether the results of this should be consolidated or not a List of Mapswith the appropriate query results |
findAccountBalanceByObject | public List findAccountBalanceByObject(Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String financialObjectLevelCode, String financialReportingSortCode, boolean isCostShareExcluded, boolean isConsolidated, int pendingEntryCode)(Code) | | Get available balances by object
Parameters: universityFiscalYear - the university fiscal year of account balances to find Parameters: chartOfAccountsCode - the chart of accounts of account balances to find Parameters: accountNumber - the account number of account balances to find Parameters: financialObjectLevelCode - the object level code of account balances to find Parameters: financialReportingSortCode - Parameters: isCostShareExcluded - whether cost share entries should be excluded from this inquiry Parameters: isConsolidated - whether the results of this should be consolidated or not a List of Maps with the appropriate query results |
findAvailableAccountBalance | public Iterator findAvailableAccountBalance(Map fieldValues)(Code) | | This method finds the available account balances according to input fields and values
Parameters: fieldValues - the input fields and values account balance entries |
findConsolidatedAvailableAccountBalance | public Iterator findConsolidatedAvailableAccountBalance(Map fieldValues)(Code) | | This method finds the available account balances according to input fields and values
Parameters: fieldValues - the input fields and values the summary records of account balance entries |
getByTransaction | public AccountBalance getByTransaction(Transaction t)(Code) | | Given a transaction, finds a matching account balance in the database
Parameters: t - a transaction to find an appropriate related account balance for an appropriate account balance |
purgeYearByChart | public void purgeYearByChart(String chartOfAccountscode, int year)(Code) | | Purge an entire fiscal year for a single chart.
Parameters: chartOfAccountsCode - the chart of accounts code of account balances to purge Parameters: year - the fiscal year of account balances to purge |
save | public void save(AccountBalance ab)(Code) | | Saves an account balance to the database
Parameters: ab - an account balance to save |
|
|