summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorivan <ivan>2010-01-24 20:37:31 +0000
committerivan <ivan>2010-01-24 20:37:31 +0000
commit126d59ad8a9743a87b83d1264f990a779ff71d00 (patch)
treec8e74f54535f6cfa62a3dab3cd62b2fcada621de /FS
parent3580100b8a2720933a106e561fef7e4d39c913f0 (diff)
right-align customer # in reports
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/UI/Web.pm7
1 files changed, 3 insertions, 4 deletions
diff --git a/FS/FS/UI/Web.pm b/FS/FS/UI/Web.pm
index 148085c..5e98742 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;