Lose the "TODO" comments about an org_unit_setting. user/dyrcona/lp1009049
authorJason Stephenson <jstephenson@mvlc.org>
Wed, 23 Jan 2013 22:18:25 +0000 (17:18 -0500)
committerJason Stephenson <jstephenson@mvlc.org>
Wed, 23 Jan 2013 22:18:25 +0000 (17:18 -0500)
Signed-off-by: Jason Stephenson <jstephenson@mvlc.org>
Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/CircCommon.pm
Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Money.pm

index e29cc24..25998fe 100644 (file)
@@ -66,11 +66,6 @@ sub void_overdues {
         $outstanding_overdues = ($outstanding_overdues*100 + $bill->amount*100)/100;
     }
 
-    # TODO: I am sure that at some point someone is going to want to
-    # keep the old behavior of voiding the whole bill amount and if
-    # that give the patron a "credit" then so be it.  I'll need an ou
-    # setting for that.
-
     if ($outstanding_overdues >= 0.01) {
         # Make void payment
         my $payobj = Fieldmapper::money::void_payment->new;
index f8358f8..d37a291 100644 (file)
@@ -748,11 +748,6 @@ sub void_bill {
             $open_amount = ($open_amount*100 + $open_bill->amount*100)/100;
         }
 
-        # TODO: I am sure that at some point someone is going to want
-        # to keep the old behavior of voiding the whole bill amount
-        # and if that give the patron a "credit" then so be it.  I'll
-        # need an ou setting for that.
-
         if($open_amount == 0) {
             $e->rollback;
             return OpenILS::Event->new('BILL_ALREADY_VOIDED', payload => $bill);