/**
  * @see
  *     org.kuali.kfs.module.ld.service.LaborInquiryOptionsService#updateByPendingLedgerEntry(java.util.Collection,
  *     java.util.Map, java.lang.String, boolean)
  */
 @Override
 public void updateLedgerEntryByPendingLedgerEntry(
     Collection<LedgerEntry> entryCollection, Map fieldValues, String pendingEntryOption) {
   // determine if search results need to be updated by pending ledger entries
   if (Constant.ALL_PENDING_ENTRY.equals(pendingEntryOption)) {
     updateCollection(entryCollection, fieldValues, false, false, LedgerEntry.class);
   } else if (Constant.APPROVED_PENDING_ENTRY.equals(pendingEntryOption)) {
     updateCollection(entryCollection, fieldValues, true, false, LedgerEntry.class);
   }
 }
 /**
  * @see
  *     org.kuali.kfs.module.ld.service.LaborInquiryOptionsService#updateCurrentFundsByPendingLedgerEntry(java.util.Collection,
  *     java.util.Map, java.lang.String, boolean)
  */
 @Override
 public void updateCurrentFundsByPendingLedgerEntry(
     Collection<AccountStatusCurrentFunds> balanceCollection,
     Map fieldValues,
     String pendingEntryOption,
     boolean isConsolidated) {
   // determine if search results need to be updated by pending ledger entries
   if (Constant.ALL_PENDING_ENTRY.equals(pendingEntryOption)) {
     updateCollection(
         balanceCollection, fieldValues, false, isConsolidated, AccountStatusCurrentFunds.class);
   } else if (Constant.APPROVED_PENDING_ENTRY.equals(pendingEntryOption)) {
     updateCollection(
         balanceCollection, fieldValues, true, isConsolidated, AccountStatusCurrentFunds.class);
   }
 }