fixed some typos
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 8 Sep 2006 04:33:03 +0000 (04:33 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 8 Sep 2006 04:33:03 +0000 (04:33 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@6024 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/perlmods/OpenILS/Application/Actor.pm
Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm

index 6be58f8..8afd250 100644 (file)
@@ -1875,7 +1875,8 @@ sub _make_mbts {
                                $s->last_billing_type($b->billing_type);
                        }
                }
-               $s->total_owed( sprintf('%0.2f', $to / 100 );
+
+               $s->total_owed( sprintf('%0.2f', $to / 100 ) );
 
                my $tp = 0;
                my $lp = undef;
@@ -1890,9 +1891,9 @@ sub _make_mbts {
                                $s->last_payment_type($p->payment_type);
                        }
                }
-               $s->total_paid( sprintf('%0.2f', $tp / 100 );
+               $s->total_paid( sprintf('%0.2f', $tp / 100 ) );
 
-               $s->balance_owed( sprintf('%0.2f', int($to - $tp) / 100);
+               $s->balance_owed( sprintf('%0.2f', int($to - $tp) / 100) );
 
                $s->xact_type( 'grocery' ) if ($x->grocery);
                $s->xact_type( 'circulation' ) if ($x->circulation);
index b1571b2..711c5e8 100644 (file)
@@ -512,7 +512,7 @@ sub _make_mbts {
                                 $s->last_billing_type($b->billing_type);
                         }
                 }
-               $s->total_owed( sprintf('%0.2f', $to / 100 );
+               $s->total_owed( sprintf('%0.2f', $to / 100 ) );
 
                 my $tp = 0;
                 my $lp = undef;
@@ -527,9 +527,9 @@ sub _make_mbts {
                                 $s->last_payment_type($p->payment_type);
                         }
                 }
-               $s->total_paid( sprintf('%0.2f', $tp / 100 );
+               $s->total_paid( sprintf('%0.2f', $tp / 100 ) );
 
-               $s->balance_owed( sprintf('%0.2f', int($to - $tp) / 100);
+               $s->balance_owed( sprintf('%0.2f', int($to - $tp) / 100) );
 
                 $s->xact_type( 'grocery' ) if ($x->grocery);
                 $s->xact_type( 'circulation' ) if ($x->circulation);