| org.kuali.module.gl.dao.SufficientFundsDao
All known Subclasses: org.kuali.module.gl.dao.ojb.SufficientFundsDaoOjb,
SufficientFundsDao | public interface SufficientFundsDao (Code) | | A DAO interface. This one seems to refer to an old FIS issue, M113, which was: "On account sufficient funds checking, what needs to be done between beginning of fiscal year and loading of beginning balances?"
Therefore, this DAO is to find year end balance totals, as far as I can tell
|
Method Summary | |
public KualiDecimal | calculateM113PendActual(boolean financialBeginBalanceLoadInd, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, List specialFinancialObjectCodes, String financialObjectCodeForCashInBank) | public KualiDecimal | calculateM113PfyrBudget(Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber) | public KualiDecimal | calculateM113PfyrEncum(Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber) | public KualiDecimal | calculatePendActual(boolean isYearEndDocument, String actualFinancialBalanceTypeCd, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String acctSufficientFundsFinObjCd, List expenditureCodes) | public KualiDecimal | calculatePendBudget(boolean isYearEndDocument, String budgetCheckingBalanceTypeCd, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String acctSufficientFundsFinObjCd, List expenditureCodes) | public KualiDecimal | calculatePendEncum(boolean isYearEndDocument, String extrnlEncumFinBalanceTypCd, String intrnlEncumFinBalanceTypCd, String preencumbranceFinBalTypeCd, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String acctSufficientFundsFinObjCd, List expenditureCodes) | public void | purgeYearByChart(String chart, int year) |
calculateM113PendActual | public KualiDecimal calculateM113PendActual(boolean financialBeginBalanceLoadInd, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, List specialFinancialObjectCodes, String financialObjectCodeForCashInBank)(Code) | | Calculate the prior fiscal year pending actual amount
Parameters: universityFiscalYear - the university fiscal year of sufficient funds balances to summarize Parameters: chartOfAccountsCode - the chart of accounts code of sufficient funds balances to summarize Parameters: accountNumber - the account number of sufficient fund balances to summarize Parameters: specialFinancialObjectCodes - include only these financial object codes Parameters: financialObjectCodeForCashInBank - the object code for cash in the bank the prior fiscal year pending actual amount |
calculateM113PfyrBudget | public KualiDecimal calculateM113PfyrBudget(Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber)(Code) | | Calculate the Prior Fiscal Year Budget total
Parameters: universityFiscalYear - the university fiscal year of sufficient funds balances that will be summarized Parameters: chartOfAccountCode - the chart of accounts code of sufficient fund balance records that will be summarized Parameters: accountNumber - the account number of sufficient fund balances that will be summarized the sum of the prior fiscal year budget |
calculateM113PfyrEncum | public KualiDecimal calculateM113PfyrEncum(Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber)(Code) | | Calculate the prior fiscal year encumbrnace total
Parameters: universityFiscalYear - the university fiscal year of sufficient funds balances to summarize Parameters: chartOfAccountsCode - the chart of accounts code of sufficient funds balances to summarize Parameters: accountNumber - the account number of sufficient fund balances to summarize the prior fiscal year encumbrance total |
calculatePendActual | public KualiDecimal calculatePendActual(boolean isYearEndDocument, String actualFinancialBalanceTypeCd, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String acctSufficientFundsFinObjCd, List expenditureCodes)(Code) | | Calculates the current pending actual
Parameters: isYearEndDocument - should year end documents be included? Parameters: actualFinancialBalanceTypeCd - the actual balance type code Parameters: universityFiscalYear - the university fiscal year of sufficient funds balances to summarize Parameters: chartOfAccountsCode - the chart of accounts code of sufficient funds balances to summarize Parameters: accountNumber - the account number of sufficient fund balances to summarize Parameters: acctSufficientFundsFinObjCd - the object code for sufficient funds Parameters: expenditureCodes - object codes that represent expenditures the current pending actual total |
calculatePendBudget | public KualiDecimal calculatePendBudget(boolean isYearEndDocument, String budgetCheckingBalanceTypeCd, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String acctSufficientFundsFinObjCd, List expenditureCodes)(Code) | | calculates the current year pending budget total
Parameters: isYearEndDocument - should year end documents be included? Parameters: budgetCheckingBalanceTypeCd - the budget balance type code Parameters: universityFiscalYear - the university fiscal year of sufficient funds balances to summarize Parameters: chartOfAccountsCode - the chart of accounts code of sufficient funds balances to summarize Parameters: accountNumber - the account number of sufficient fund balances to summarize Parameters: acctSufficientFundsFinObjCd - the object code for sufficient funds Parameters: expenditureCodes - object codes that represent expenditures calculates the current year pending budget total |
calculatePendEncum | public KualiDecimal calculatePendEncum(boolean isYearEndDocument, String extrnlEncumFinBalanceTypCd, String intrnlEncumFinBalanceTypCd, String preencumbranceFinBalTypeCd, Integer universityFiscalYear, String chartOfAccountsCode, String accountNumber, String acctSufficientFundsFinObjCd, List expenditureCodes)(Code) | | Calculates the current year pending encumbrance total
Parameters: isYearEndDocument - should year end documents be included? Parameters: extrnlEncumFinBalanceTypCd - the external encumbrance balance type Parameters: intrnlEncumFinBalanceTypCd - the internal encumbrance balance type Parameters: preencumbranceFinBalTypeCd - the pre-encumbrance balance type Parameters: universityFiscalYear - the university fiscal year of sufficient funds balances to summarize Parameters: chartOfAccountsCode - the chart of accounts code of sufficient funds balances to summarize Parameters: accountNumber - the account number of sufficient fund balances to summarize Parameters: acctSufficientFundsFinObjCd - the object code for sufficient funds Parameters: expenditureCodes - object codes that represent expenditures the current year pending encumbrance total |
purgeYearByChart | public void purgeYearByChart(String chart, int year)(Code) | | Purge table by year/chart
Parameters: chart - the chart of sufficient fund records to purge Parameters: year - the year of sufficient fund records to purge |
|
|