X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fsearch%2Fsvc_forward.cgi;h=c9b6012a74a9b43948d6c81b573744d3cf818c82;hp=9ffbab3d1dc818810c2df1a537feef0df4c33344;hb=ff27c3f36240aee48ed50153dd5d8fe3ac3f2443;hpb=b8215fdae230049ee9d1a9af192f22754dd61352 diff --git a/httemplate/search/svc_forward.cgi b/httemplate/search/svc_forward.cgi index 9ffbab3d1..c9b6012a7 100755 --- a/httemplate/search/svc_forward.cgi +++ b/httemplate/search/svc_forward.cgi @@ -1,28 +1,127 @@ -<% +<& elements/search.html, + 'title' => "Mail forward Search Results", + 'name' => 'mail forwards', + 'query' => $sql_query, + 'count_query' => $count_query, + 'redirect' => $link, + 'header' => [ '#', + 'Service', + 'Mail to', + 'Forwards to', + emt('Pkg. Status'), + FS::UI::Web::cust_header(), + ], + 'fields' => [ 'svcnum', + 'svc', + $format_src, + $format_dst, + sub { + $cust_pkg_cache{$_[0]->svcnum} ||= $_[0]->cust_svc->cust_pkg; + return '' unless $cust_pkg_cache{$_[0]->svcnum}; + $cust_pkg_cache{$_[0]->svcnum}->ucfirst_status + }, + \&FS::UI::Web::cust_fields, + ], + 'links' => [ $link, + $link, + $link_src, + $link_dst, + '', # pkg status + ( map { $_ ne 'Cust. Status' ? $link_cust : '' } + FS::UI::Web::cust_header() + ), + ], + 'align' => 'rlllr'. FS::UI::Web::cust_aligns(), + 'color' => [ + '', + '', + '', + '', + sub { + $cust_pkg_cache{$_[0]->svcnum} ||= $_[0]->cust_svc->cust_pkg; + return '' unless $cust_pkg_cache{$_[0]->svcnum}; + my $c = FS::cust_pkg::statuscolors; + $c->{$cust_pkg_cache{$_[0]->svcnum}->status }; + }, # pkg status + FS::UI::Web::cust_colors(), + ], + 'style' => [ + '', + '', + '', + '', + 'b', + FS::UI::Web::cust_styles(), + ], + +&> +<%init> + +die "access denied" + unless $FS::CurrentUser::CurrentUser->access_right('List services'); + +my %cust_pkg_cache; my $conf = new FS::Conf; -my($query)=$cgi->keywords; -$query ||= ''; #to avoid use of unitialized value errors -my($orderby); -if ( $query eq 'svcnum' ) { - $orderby = 'ORDER BY svcnum'; -} else { - eidiot('unimplemented'); +my $orderby = 'ORDER BY svcnum'; +my @extra_sql = (); +if ( $cgi->param('magic') =~ /^(all|unlinked)$/ ) { + + push @extra_sql, 'pkgnum IS NULL' + if $cgi->param('magic') eq 'unlinked'; + + if ( $cgi->param('sortby') =~ /^(\w+)$/ ) { + my $sortby = $1; + $orderby = "ORDER BY $sortby"; + } + +} elsif ( $cgi->param('svcpart') =~ /^(\d+)$/ ) { + push @extra_sql, "svcpart = $1"; + if (defined($cgi->param('cancelled'))) { + if ($cgi->param('cancelled')) { + push @extra_sql, "cust_pkg.cancel IS NOT NULL"; + } else { + push @extra_sql, "cust_pkg.cancel IS NULL"; + } + } } -my $count_query = 'SELECT COUNT(*) FROM svc_forward'; +my $addl_from = ' LEFT JOIN cust_svc USING ( svcnum ) '. + ' LEFT JOIN part_svc USING ( svcpart ) '. + ' LEFT JOIN cust_pkg USING ( pkgnum ) '. + FS::UI::Web::join_cust_main('cust_pkg', 'cust_pkg'); + +#here is the agent virtualization +push @extra_sql, $FS::CurrentUser::CurrentUser->agentnums_sql( + 'null_right' => 'View/link unlinked services' + ); + +my $extra_sql = + scalar(@extra_sql) + ? ' WHERE '. join(' AND ', @extra_sql ) + : ''; + +my $count_query = "SELECT COUNT(*) FROM svc_forward $addl_from $extra_sql"; my $sql_query = { 'table' => 'svc_forward', 'hashref' => {}, - 'extra_sql' => $orderby, + 'select' => join(', ', + 'svc_forward.*', + 'part_svc.svc', + 'cust_main.custnum', + FS::UI::Web::cust_sql_fields(), + ), + 'extra_sql' => $extra_sql, + 'order_by' => $orderby, + 'addl_from' => $addl_from, }; # Service #
(click to view forward) # Mail to
(click to view account) # Forwards to
(click to view account) -my $link = [ "${p}/view/svc_forward.cgi?", 'svcnum' ]; +my $link = [ "${p}view/svc_forward.cgi?", 'svcnum' ]; my $format_src = sub { my $svc_forward = shift; @@ -62,47 +161,10 @@ my $link_dst = sub { } }; -#this would quite a bit more efficient as a left join as part of the main query -my $format_cust = sub { - my $svc_forward = shift; - my $cust_pkg = $svc_forward->cust_svc->cust_pkg; - if ( $cust_pkg ) { - $cust_pkg->cust_main->name; - } else { - ''; - } -}; - +#smaller false laziness w/svc_*.cgi here my $link_cust = sub { - my $svc_forward = shift; - my $cust_pkg = $svc_forward->cust_svc->cust_pkg; - if ( $cust_pkg ) { - [ "${p}view/cust_main.cgi?", sub { shift->cust_svc->cust_pkg->custnum } ]; - } else { - ''; - } + my $svc_x = shift; + $svc_x->custnum ? [ "${p}view/cust_main.cgi?", 'custnum' ] : ''; }; -%><%= include ('elements/search.html', - 'title' => "Mail forward Search Results", - 'name' => 'mail forwards', - 'query' => $sql_query, - 'count_query' => $count_query, - 'redirect' => $link, - 'header' => [ '#', - 'Mail to', - 'Forwards to', - 'Customer', - ], - 'fields' => [ 'svcnum', - $format_src, - $format_dst, - $format_cust, - ], - 'links' => [ $link, - $link_src, - $link_dst, - $link_cust, - ], - ) -%> +