| org.kuali.module.labor.service.LaborLedgerPendingEntryService
All known Subclasses: org.kuali.module.labor.service.impl.LaborLedgerPendingEntryServiceImpl,
LaborLedgerPendingEntryService | public interface LaborLedgerPendingEntryService (Code) | | Defines methods that must be implemented by classes providing a LaborLedgerPendingEntryServiceImpl.
|
delete | public void delete(String documentHeaderId)(Code) | | delete pending entries with the given document header id
Parameters: documentHeaderId - |
deleteByFinancialDocumentApprovedCode | public void deleteByFinancialDocumentApprovedCode(String financialDocumentApprovedCode)(Code) | | Delete the pending entries with the given financial document approved code
Parameters: approvedCode - |
findApprovedPendingLedgerEntries | public Iterator<LaborLedgerPendingEntry> findApprovedPendingLedgerEntries()(Code) | | Get all entries that have been approved but still in pending entry queue
all approved pending entries |
findPendingEntries | public Collection findPendingEntries(Map fieldValues, boolean isApproved)(Code) | | Use fieldValues to create a query for matching records of
LaborLedgerPendingEntry instances
Parameters: fieldValues - properties to match against Parameters: isApproved - Retrieve approved or unapproved entries? |
findPendingLedgerEntriesForLedgerBalance | public Iterator findPendingLedgerEntriesForLedgerBalance(Map fieldValues, boolean isApproved)(Code) | | This method checks for pending ledger entries that match the current balance inquiry
Parameters: emplid - |
generateLaborLedgerPendingEntries | public boolean generateLaborLedgerPendingEntries(LaborLedgerPostingDocument document)(Code) | | This method generates labor ledger pending entries.
Parameters: document - |
hasPendingLaborLedgerEntry | public boolean hasPendingLaborLedgerEntry(Account account)(Code) | | Does the given account have any labor ledger entries? It is necessary to check this before closing an account.
Parameters: account - |
hasPendingLaborLedgerEntry | public boolean hasPendingLaborLedgerEntry(Map fieldValues)(Code) | | determine if there is any pending entry that has not been processed for the given criteria
Parameters: fieldValues - the given search criteria true if there is one or more pending entries that have not been processed for the given criteria; otherwise, false |
|
|