From 106d0163556c31a3b2cf9c065ec6d9d6ded0ce64 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 22 Aug 2008 03:01:06 +0000 Subject: the master control program has chosen YOU to serve your system on the game grid --- httemplate/elements/dashboard-toplist.html | 10 +++++--- httemplate/elements/mcp_lint.html | 37 ++++++++++++++++++++++++++++++ 2 files changed, 44 insertions(+), 3 deletions(-) create mode 100644 httemplate/elements/mcp_lint.html (limited to 'httemplate') diff --git a/httemplate/elements/dashboard-toplist.html b/httemplate/elements/dashboard-toplist.html index 7ee6f2d43..d8cd7f306 100644 --- a/httemplate/elements/dashboard-toplist.html +++ b/httemplate/elements/dashboard-toplist.html @@ -23,6 +23,9 @@ <% $cust_main->name %> + + <% include('/elements/mcp_lint.html', 'cust_main'=>$cust_main) %> + (new ticket) @@ -55,7 +58,7 @@ % } elsif ( $line =~ /^\-\-+$/ ) { #divider % - + % next; @@ -63,13 +66,14 @@ % } elsif ( $line =~ /^\s*$/ ) { -   +   % } elsif ( $line =~ /^\S/ ) { #label line <% $line %> + Lint % foreach my $priority ( @custom_priorities, '' ) { @@ -81,7 +85,7 @@ % } else { #regular line - <% $line %> + <% $line %> % } diff --git a/httemplate/elements/mcp_lint.html b/httemplate/elements/mcp_lint.html new file mode 100644 index 000000000..826549c65 --- /dev/null +++ b/httemplate/elements/mcp_lint.html @@ -0,0 +1,37 @@ +% foreach my $lint (@lint) { + <% $lint %>
+% } + +<%init> + +my(%opt) = @_; + +my $conf = new FS::Conf; + +my @svc = (); +if ( $opt{svc} ) { + @svc = ref($opt{svc}) ? @{ $opt{svc} } : ( $opt{svc} ); +} elsif ( $opt{cust_main} ) { + my $custnum = $opt{cust_main}->custnum; + @svc = qsearchs({ + 'table' => 'cust_svc', + 'addl_from' => ' LEFT JOIN cust_pkg USING ( pkgnum ) '. + ' LEFT JOIN cust_main USING ( custnum )', + 'hashref' => { 'svcpart' => $conf->config('mcp_svcpart') }, + 'extra_sql' => " AND custnum = $custnum ", + }); +} else { + die 'neither svc nor cust_main options passed to mcp_lint'; +} + +my @lint = (); +foreach my $svc ( @svc ) { + my @svc_lint = tron_lint($svc); + if ( scalar(@svc) > 1 ) { + push @lint, map $svc->title.": $_", @svc_lint; + } else { + push @lint, @svc_lint; + } +} + + -- cgit v1.2.1