| org.kuali.module.labor.service.LaborInquiryOptionsService
All known Subclasses: org.kuali.module.labor.service.impl.LaborInquiryOptionsServiceImpl,
LaborInquiryOptionsService | public interface LaborInquiryOptionsService (Code) | | The LaborInquiryOptionsService interface provides hooks for Pending Ledger and Consilidation options for balance inquiries.
|
getConsolidationField | public Field getConsolidationField(Collection<Row> rows)(Code) | | Examine a collection of
Row instances for the consolidation field
Parameters: rows - Field |
getConsolidationFieldName | public String getConsolidationFieldName()(Code) | | The expected name of the consolidation option field name
String |
getConsolidationOption | public String getConsolidationOption(Map fieldValues)(Code) | | Get the current state of the consolidation option
String |
getSelectedPendingEntryOption | public String getSelectedPendingEntryOption(Map fieldValues)(Code) | | Get the Pending Entry Option selected
Parameters: fieldValues - String |
isConsolidationSelected | public boolean isConsolidationSelected(Map fieldValues, Collection<Row> rows)(Code) | | This method tests if the user selects to see the details or consolidated results
Parameters: fieldValues - the map containing the search fields and values Parameters: rows - true if consolidation is selected and subaccount is not specified |
isConsolidationSelected | public boolean isConsolidationSelected(Map fieldValues)(Code) | | This method tests if the user selects to see the details or consolidated results
Parameters: fieldValues - the map containing the search fields and values true if consolidation is selected and subaccount is not specified |
updateCurrentFundsByPendingLedgerEntry | public void updateCurrentFundsByPendingLedgerEntry(Collection<AccountStatusCurrentFunds> balanceCollection, Map fieldValues, String pendingEntryOption, boolean isConsolidated)(Code) | | update a given balance collection with the pending entry obtained from the given field values and pending entry option
Parameters: balanceCollection - the given ledger balance collection Parameters: fieldValues - the given field values Parameters: pendingEntryOption - the given pending entry option: all, approved or none Parameters: isConsolidated - indicate if the collection balances have been consolidated See Also: org.kuali.module.labor.bo.LedgerBalance |
updateLedgerBalanceByPendingLedgerEntry | public void updateLedgerBalanceByPendingLedgerEntry(Collection<LedgerBalance> balanceCollection, Map fieldValues, String pendingEntryOption, boolean isConsolidated)(Code) | | update a given balance collection with the pending entry obtained from the given field values and pending entry option
Parameters: balanceCollection - the given ledger balance collection Parameters: fieldValues - the given field values Parameters: pendingEntryOption - the given pending entry option: all, approved or none Parameters: isConsolidated - indicate if the collection balances have been consolidated See Also: org.kuali.module.labor.bo.LedgerBalance |
updateLedgerEntryByPendingLedgerEntry | public void updateLedgerEntryByPendingLedgerEntry(Collection<LedgerEntry> entryCollection, Map fieldValues, String pendingEntryOption)(Code) | | update a given ledger entry collection with the pending entry obtained from the given field values and pending entry option
Parameters: entryCollection - the given ledger entry collection Parameters: fieldValues - the given field values Parameters: pendingEntryOption - the given pending entry option: all, approved or none See Also: org.kuali.module.labor.bo.LedgerEntry |
|
|