From 88be1de5a77b567c1f610bc510ca386738538488 Mon Sep 17 00:00:00 2001 From: mark Date: Tue, 14 Dec 2010 08:21:17 +0000 Subject: [PATCH] fix location display boundary case --- httemplate/view/cust_main/locations.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/httemplate/view/cust_main/locations.html b/httemplate/view/cust_main/locations.html index 319a92747..ea6216ea9 100755 --- a/httemplate/view/cust_main/locations.html +++ b/httemplate/view/cust_main/locations.html @@ -29,7 +29,7 @@ Default service location: % if ( $locationnum and !$loc->disabled ) { <% edit_location_link($locationnum) %> % } -% if ( !$loc->disabled and !$active{$locationnum} ) { +% if ( $locationnum and !$loc->disabled and !$active{$locationnum} ) {  <% disable_location_link($locationnum) %> % } @@ -50,7 +50,7 @@ my %locations = map { $_->locationnum => $_ } qsearch({ }); my @sections = keys %locations; $locations{''} = $cust_main; -my %packages_in = map { $_ => [] } @sections; +my %packages_in = map { $_ => [] } ('', @sections); my %active = (); # groups with non-canceled packages foreach my $cust_pkg ( @$all_packages ) { -- 2.11.0