X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Fview%2Fqual.cgi;h=a0768c3ac7859c197c7b225fd26114d904a7c2db;hb=7637f73d594307c314c844fde0b92f3d7ae282cc;hp=45f3d2a625dbe68f622de8cf30e0fb6870247ef7;hpb=98779ec47370ad67c716154f67f6a726b83e09ed;p=freeside.git diff --git a/httemplate/view/qual.cgi b/httemplate/view/qual.cgi index 45f3d2a62..a0768c3ac 100644 --- a/httemplate/view/qual.cgi +++ b/httemplate/view/qual.cgi @@ -16,7 +16,7 @@ Qualification #<% $qual->qualnum %> <% ntable("#cccccc", 2) %> <% include('elements/tr.html', label => 'Status', value => $qual->status_long ) %> -<% include('elements/tr.html', label => 'Service Telephone Number', value => $qual->phonenum ) %> +<% include('elements/tr.html', label => 'Service Telephone Number', value => $qual->phonenum || '(none - dry loop)' ) %> <% include('elements/tr.html', label => 'Address', value => $location_line ) %> % if ( $location_kind ) { <% include('elements/tr.html', label => 'Location Kind', value => $location_kind ) %> @@ -37,7 +37,7 @@ % my $pkglist = $qual_result->{'pkglist'}; % my $cust_or_prospect = $qual->cust_or_prospect; % my $locationnum = ''; -% my %location = $qual->location; +% my %location = $qual->location_hash; % if (%location && $location{'locationnum'}) { % $locationnum = $location{'locationnum'}; % } @@ -63,6 +63,14 @@ % } % } + +% my $not_avail = $qual_result->{'not_avail'}; +% if ( keys %$not_avail ) { +
+ Qualifying vendor packages (not yet configured in any package definition): + <% join(', ', map $not_avail->{$_}, keys %$not_avail ) |h %> +% } + % } <%init> @@ -82,7 +90,7 @@ if ( $cgi->param('qualnum') ) { my $qual = qsearchs('qual', { qualnum => $qualnum }) or die "invalid qualnum"; my $location_line = ''; -my %location_hash = $qual->location; +my %location_hash = $qual->location_hash; my $cust_location; if ( %location_hash ) { $cust_location = new FS::cust_location(\%location_hash);