return to PRS Technologies website


dupe_cost2.sh
############################################################################### # # Module: dupe_cost2.sh # Author: Peter R. Schmidt # Description: Find duplicate costs that have already beeen included in a proforma # in Elite # # Search out proformas for costs that have been duplicated # Create a report by matter billing attorney that billers can use # to be on the lookout for duplicated costs. # # Note: This is not 100% reliable. If the exact same cost actually was # was incurred for the same amount and same matter and same day, it # looks just like a duplicate. # # Change Log # # Date Name Description................. # 06/08/01 Peter R. Schmidt Start Program # ############################################################################### echo echo "Find duplicate costs that have already beeen included in a proforma" echo echo "Enter Proforma starting date" read PHDATE echo echo "Enter beginning batch number to analyze" read BATCH1 echo echo "Enter ending batch number to analyze" read BATCH2 echo echo "Enter operator to analyze" read OPER echo echo "Enter debug mode (1=debug, 0=not debug)" read DEBUG dupe_cost2.4ge $PHDATE $BATCH1 $BATCH2 $OPER $DEBUG echo echo "Completed" echo echo "report in dupe_cost2.out" echo echo "Press <Enter> to continue" read pause ################################################################################