From 9e281e06c75a470c01ec3b8e4dcbdbb5f99a4b61 Mon Sep 17 00:00:00 2001 From: ivan Date: Wed, 22 Jun 2011 21:12:41 +0000 Subject: [PATCH] fix headers, alignment and tabs, RT#10988 --- httemplate/search/phone_inventory_provisioned.html | 59 ++++++++++++---------- 1 file changed, 31 insertions(+), 28 deletions(-) diff --git a/httemplate/search/phone_inventory_provisioned.html b/httemplate/search/phone_inventory_provisioned.html index 52657e70a..03d21547d 100644 --- a/httemplate/search/phone_inventory_provisioned.html +++ b/httemplate/search/phone_inventory_provisioned.html @@ -8,33 +8,33 @@ }, 'count_query' => 'SELECT COUNT(distinct latanum) FROM phone_avail', 'header' => [ - 'LATA #', - 'LATA Description', - 'Available', - 'Provisioned', - 'Have Usage', + '#', + 'LATA', + 'Available', + 'Provisioned', + 'Have Usage', ], 'fields' => [ 'latanum', - sub { # LATA Description - my $phone_avail = shift; - return '' unless $phone_avail->lata; - $phone_avail->lata->description; - }, - sub { # Available - my $latanum = shift->latanum; - my $cnt = qsearchs({ 'table' => 'phone_avail', + sub { # LATA Description + my $phone_avail = shift; + return '' unless $phone_avail->lata; + $phone_avail->lata->description; + }, + sub { # Available + my $latanum = shift->latanum; + my $cnt = qsearchs({ 'table' => 'phone_avail', 'hashref' => { 'svcnum' => '', 'latanum' => $latanum, }, 'select' => 'count(1) as cnt', }); - ($cnt) ? $cnt->cnt : ''; - }, - sub { # Provisioned - my $latanum = shift->latanum; - my $cnt = qsearchs({ 'table' => 'phone_avail', + ($cnt) ? $cnt->cnt : ''; + }, + sub { # Provisioned + my $latanum = shift->latanum; + my $cnt = qsearchs({ 'table' => 'phone_avail', 'hashref' => { 'latanum' => $latanum, 'svcnum' => { op => '>', value => '0' @@ -42,32 +42,35 @@ }, 'select' => 'count(1) as cnt' }); - ($cnt) ? $cnt->cnt : ''; - }, - sub { # Have Usage - my $phone_avail = shift; - return '' unless $phone_avail->lata; - $phone_avail->lata->have_usage; - }, + ($cnt) ? $cnt->cnt : ''; + }, + sub { # Have Usage + my $phone_avail = shift; + return '' unless $phone_avail->lata; + $phone_avail->lata->have_usage; + }, ], - 'align' => 'lccc', + 'align' => 'rlrrr', 'links' => [ '', '', '', '', + '', ], 'color' => [ '', '', '', '', + '', ], 'style' => [ '', '', '', '', + '', ], ) %> @@ -75,8 +78,8 @@ die "access denied" unless ( $FS::CurrentUser::CurrentUser->access_right('List inventory') - && $FS::CurrentUser::CurrentUser->access_right('List services') - ); + && $FS::CurrentUser::CurrentUser->access_right('List services') + ); # XXX: agent virtualize -- 2.11.0