1 <% include("/elements/header.html","View Qualification") %>
3 % if ( $cust_or_prospect->custnum ) {
5 <% include( '/elements/small_custview.html', $cust_or_prospect,
6 '', #countrydefault override
8 "${p}view/cust_main.cgi"), #url
11 % } elsif ( $cust_or_prospect->prospectnum ) {
13 <% include( '/elements/small_prospect_view.html', $cust_or_prospect) %>
19 <B>Qualification #<% $qual->qualnum %></B>
20 <% ntable("#cccccc", 2) %>
21 <% include('elements/tr.html', label => 'Status', value => $qual->status_long ) %>
22 <% include('elements/tr.html', label => 'Service Telephone Number', value => $qual->phonenum || '(none - dry loop)' ) %>
23 <% include('elements/tr.html', label => 'Address', value => $location_line ) %>
24 % if ( $location_kind ) {
25 <% include('elements/tr.html', label => 'Location Kind', value => $location_kind ) %>
27 <% include('elements/tr.html', label => 'Qualified using', value => $export->exportname ) %>
28 <% include('elements/tr.html', label => 'Vendor Qualification #', value => $qual->vendor_qual_id ) %>
34 % my $qual_result = $export->qual_result($qual);
35 % if ($qual_result->{'pkglist'}) { # one of the possible formats (?)
36 <B>Qualifying Packages</B> - click to order
38 % my $pkglist = $qual_result->{'pkglist'};
39 % my $cust_or_prospect = $qual->cust_or_prospect;
40 % my $locationnum = '';
41 % my %location = $qual->location_hash;
42 % my $locationnum = $location{'locationnum'};
44 % foreach my $pkgpart ( keys %$pkglist ) {
47 % if($cust_or_prospect->custnum) {
49 % my %opt = ( 'label' => $pkglist->{$pkgpart},
50 % 'lock_pkgpart' => $pkgpart,
51 % 'lock_locationnum' => $location{'locationnum'},
52 % 'qualnum' => $qual->qualnum,
54 % if ( $export->exporttype eq 'ikano' ) {
55 % my $pkg_svc = qsearchs('pkg_svc', { 'pkgpart' => $pkgpart,
56 % 'primary_svc' => 'Y',
59 % $opt{'svcpart'} = $pkg_svc->svcpart if $pkg_svc;
62 <% include('/view/cust_main/order_pkg_link.html',
63 $cust_or_prospect, %opt) %>
65 % } elsif ($cust_or_prospect->prospectnum) {
67 % my $link = "${p}edit/cust_main.cgi?qualnum=". $qual->qualnum.
68 % ";lock_pkgpart=$pkgpart";
69 <A HREF="<% $link %>"><% $pkglist->{$pkgpart} |h %></A>
77 % my $not_avail = $qual_result->{'not_avail'};
78 % if ( keys %$not_avail ) {
80 Qualifying vendor packages (not yet configured in any package definition):
81 <% join(', ', map $not_avail->{$_}, keys %$not_avail ) |h %>
89 unless $FS::CurrentUser::CurrentUser->access_right('Qualify service');
92 if ( $cgi->param('qualnum') ) {
93 $cgi->param('qualnum') =~ /^(\d+)$/ or die "unparsable qualnum";
96 my($query) = $cgi->keywords;
97 $query =~ /^(\d+)$/ or die "no qualnum";
101 my $qual = qsearchs('qual', { qualnum => $qualnum }) or die "invalid qualnum";
102 my $location_line = '';
103 my %location_hash = $qual->location_hash;
105 if ( %location_hash ) {
106 $cust_location = new FS::cust_location(\%location_hash);
107 $location_line = $cust_location->location_label;
111 $location_kind = "Residential" if $cust_location->get('location_kind') eq 'R';
112 $location_kind = "Business" if $cust_location->get('location_kind') eq 'B';
114 my $cust_or_prospect = $qual->cust_or_prospect; #or die? qual without this?
115 my $export = $qual->part_export;