user pref for # of customers on dashboard, RT#29794
[freeside.git] / httemplate / index.html
1 <%init>my $debug = $cgi->param('debug');</%init>
2 % warn time.": header.html\n" if $debug;
3 %
4 <& /elements/header.html, mt('Billing Main') &>
5
6 % warn time.": dashboard-install_welcome.html\n" if $debug;
7 %
8 <& /elements/dashboard-install_welcome.html &>
9
10 % warn time.": dashboard-toplist.html\n" if $debug;
11 %
12 <& /elements/dashboard-toplist.html &>
13
14 % my $curuser = $FS::CurrentUser::CurrentUser;
15 % my $numcust = $curuser->option('dashboard_customers');
16 % $numcust ||= 10 unless $numcust =~ /^\s*0+\s*$/;
17 % if ( $numcust ) {
18 %
19 %   warn time.": fetching recently changed customers\n" if $debug;
20 %
21 %   my $sth = dbh->prepare(
22 %     #"SELECT DISTINCT custnum FROM h_cust_main JOIN cust_main USING ( custnum )
23 %     "SELECT custnum FROM h_cust_main JOIN cust_main USING ( custnum )
24 %        WHERE ( history_action = 'insert' OR history_action = 'replace_new' ) 
25 %          AND ( history_usernum = ? OR history_user = ? )
26 %        ORDER BY history_date desc LIMIT 1000" # LIMIT 10
27 %     ) or die dbh->errstr;
28 %
29 %
30 %   $sth->execute( $curuser->usernum, $curuser->username ) or die $sth->errstr;
31 %
32 %   my %saw = ();
33 %   my @custnums = grep { !$saw{$_}++ } map $_->[0], @{ $sth->fetchall_arrayref };
34 %
35 %   @custnums = splice(@custnums, 0, $numcust);
36 %
37 %   if ( @custnums ) {
38 %     warn time.": displaying recently changed customers\n" if $debug;
39
40       <& /elements/table-grid.html &>
41
42 %     my $bgcolor1 = '#eeeeee';
43 %     my $bgcolor2 = '#ffffff';
44 %     my $bgcolor = $bgcolor2;
45
46         <TR>
47           <TH CLASS="grid" BGCOLOR="#cccccc" COLSPAN=1><% mt('Customers I recently added or modified') |h %></TH>
48         </TR>
49
50 %     foreach my $custnum ( @custnums ) { 
51 %     my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } ); 
52 %     next unless $cust_main; 
53
54         <TR>
55           <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><A HREF="view/cust_main.cgi?<% $custnum %>"><% $cust_main->display_custnum %>: <% $cust_main->name |h %></A></TD>
56         </TR>
57
58 %       if ( $bgcolor eq $bgcolor1 ) {
59 %          $bgcolor = $bgcolor2;
60 %        } else {
61 %          $bgcolor = $bgcolor1;
62 %        }
63 %    
64 %     } 
65
66       </TABLE>
67
68 %   } 
69 % }
70
71 <& /elements/footer.html &>