Fix for bug 2183, "Account tab needs spacing between description and stadard text...
authorOwen Leonard <oleonard@myacpl.org>
Sat, 31 May 2008 19:08:57 +0000 (14:08 -0500)
committerJoshua Ferraro <jmf@liblime.com>
Sun, 1 Jun 2008 02:59:52 +0000 (21:59 -0500)
Signed-off-by: Joshua Ferraro <jmf@liblime.com>
C4/Accounts.pm

index 06a86fe..e4a745a 100644 (file)
@@ -308,24 +308,24 @@ sub manualinvoice {
           fixcredit( $borrowernumber, $amount2, $itemnum, $type, $user );
     }
     if ( $type eq 'N' ) {
-        $desc .= "New Card";
+        $desc .= " New Card";
     }
     if ( $type eq 'F' ) {
-        $desc .= "Fine";
+        $desc .= " Fine";
     }
     if ( $type eq 'A' ) {
-        $desc .= "Account Management fee";
+        $desc .= " Account Management fee";
     }
     if ( $type eq 'M' ) {
-        $desc .= "Sundry";
+        $desc .= " Sundry";
     }
 
     if ( $type eq 'L' && $desc eq '' ) {
 
-        $desc = "Lost Item";
+        $desc = " Lost Item";
     }
     if ( $type eq 'REF' ) {
-        $desc .= "Cash Refund";
+        $desc .= " Cash Refund";
         $amountleft = refund( '', $borrowernumber, $amount );
     }
     if (   ( $type eq 'L' )