optimize CDR rating after timed rate perf regression, RT#15739
[freeside.git] / httemplate / view / svc_external.cgi
1 <% include("/elements/header.html",'External Service View', menubar(
2   ( ( $custnum )
3     ? ( "View this customer (#$display_custnum)" => "${p}view/cust_main.cgi?$custnum",
4       )                                                                       
5     : ( "Cancel this (unaudited) external service" =>
6           "${p}misc/cancel-unaudited.cgi?$svcnum" )
7   ),
8 )) %>
9
10 <A HREF="<%$p%>edit/svc_external.cgi?<%$svcnum%>">Edit this information</A><BR>
11 <% ntable("#cccccc") %><TR><TD><% ntable("#cccccc",2) %>
12
13 <TR><TD ALIGN="right">Service number</TD>
14   <TD BGCOLOR="#ffffff"><% $svcnum %></TD></TR>
15 <TR><TD ALIGN="right"><% FS::Msgcat::_gettext('svc_external-id') || 'External&nbsp;ID' %></TD>
16   <TD BGCOLOR="#ffffff"><% $conf->config('svc_external-display_type') eq 'artera_turbo' ? sprintf('%010d', $svc_external->id) : $svc_external->id %></TD></TR>
17 <TR><TD ALIGN="right"><% FS::Msgcat::_gettext('svc_external-title') || 'Title' %></TD>
18   <TD BGCOLOR="#ffffff"><% $svc_external->title %></TD></TR>
19 % foreach (sort { $a cmp $b } $svc_external->virtual_fields) { 
20
21   <% $svc_external->pvf($_)->widget('HTML', 'view', $svc_external->getfield($_)) %>
22 % } 
23
24
25 </TABLE></TD></TR></TABLE>
26 <BR><% joblisting({'svcnum'=>$svcnum}, 1) %>
27
28 <% include('/elements/footer.html') %>
29 <%init>
30
31 die "access denied"
32   unless $FS::CurrentUser::CurrentUser->access_right('View customer services');
33
34 my($query) = $cgi->keywords;
35 $query =~ /^(\d+)$/;
36 my $svcnum = $1;
37 my $svc_external = qsearchs({
38   'select'    => 'svc_external.*',
39   'table'     => 'svc_external',
40   'addl_from' => ' LEFT JOIN cust_svc  USING ( svcnum  ) '.
41                  ' LEFT JOIN cust_pkg  USING ( pkgnum  ) '.
42                  ' LEFT JOIN cust_main USING ( custnum ) ',
43   'hashref'   => { 'svcnum' => $svcnum },
44   'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql(
45                             'null_right' => 'View/link unlinked services'
46                           ),
47 }) or die "svc_external: Unknown svcnum $svcnum";
48
49 my $conf = new FS::Conf;
50
51 #false laziness w/all svc_*.cgi
52 my $cust_svc = qsearchs( 'cust_svc', { 'svcnum' => $svcnum } );
53 my $pkgnum = $cust_svc->getfield('pkgnum');
54 my($cust_pkg, $custnum, $display_custnum);
55 if ($pkgnum) {
56   $cust_pkg = qsearchs( 'cust_pkg', { 'pkgnum' => $pkgnum } );
57   $custnum = $cust_pkg->custnum;
58   $display_custnum = $cust_pkg->cust_main->display_custnum;
59 } else {
60   $cust_pkg = '';
61   $custnum = '';
62 }
63 #eofalse
64
65 </%init>