From: ivan Date: Sun, 24 Jan 2010 20:37:32 +0000 (+0000) Subject: right-align customer # in reports X-Git-Tag: freeside_1_9_2~106 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=c28d23aeb9688c96f0b0ef9150971d7a7e3fe087;p=freeside.git right-align customer # in reports --- diff --git a/FS/FS/UI/Web.pm b/FS/FS/UI/Web.pm index 148085c4c..5e987429c 100644 --- a/FS/FS/UI/Web.pm +++ b/FS/FS/UI/Web.pm @@ -270,6 +270,7 @@ sub cust_header { ); my %header2align = ( 'Cust. Status' => 'c', + 'Cust#' => 'r', ); my $cust_fields; @@ -373,12 +374,10 @@ sub cust_fields { my $seen_unlinked = 0; map { if ( $record->custnum ) { - warn " $record -> $_" - if $DEBUG > 1; + warn " $record -> $_" if $DEBUG > 1; $record->$_(@_); } else { - warn " ($record unlinked)" - if $DEBUG > 1; + warn " ($record unlinked)" if $DEBUG > 1; $seen_unlinked++ ? '' : '(unlinked)'; } } @cust_fields;