| org.kuali.module.financial.service.FiscalYearFunctionControlService
All known Subclasses: org.kuali.module.financial.service.impl.FiscalYearFunctionControlServiceImpl,
FiscalYearFunctionControlService | public interface FiscalYearFunctionControlService (Code) | | This interface defines methods that a FiscalYearFunctionControl Service must provide.
|
Method Summary | |
public List | getBudgetAdjustmentAllowedYears() Retrieves list of fiscal years that the BudgetAdjustment is allowed in. | public boolean | isBaseAmountChangeAllowed(Integer postingYear) Checks the fiscal year against the control tables to see if BudgetAdjustment to base amount is allowed.
Parameters: Posting - year that the base amount is being changed for. |
getBudgetAdjustmentAllowedYears | public List getBudgetAdjustmentAllowedYears()(Code) | | Retrieves list of fiscal years that the BudgetAdjustment is allowed in.
A list of fiscal years that the current user is authorized to perform a budget adjustment against. |
isBaseAmountChangeAllowed | public boolean isBaseAmountChangeAllowed(Integer postingYear)(Code) | | Checks the fiscal year against the control tables to see if BudgetAdjustment to base amount is allowed.
Parameters: Posting - year that the base amount is being changed for. True if the current user is authorized to edit the base amount, false otherwise. |
|
|