add -t flag to bulk void for payment type, RT#73413
[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 %          AND ". $curuser->agentnums_sql( table=>'cust_main' ).
27 %     "  ORDER BY history_date desc LIMIT 1000" # LIMIT 10
28 %     ) or die dbh->errstr;
29 %
30 %
31 %   $sth->execute( $curuser->usernum, $curuser->username ) or die $sth->errstr;
32 %
33 %   my %saw = ();
34 %   my @custnums = grep { !$saw{$_}++ } map $_->[0], @{ $sth->fetchall_arrayref };
35 %
36 %   @custnums = splice(@custnums, 0, $numcust);
37 %
38 %   if ( @custnums ) {
39 %     warn time.": displaying recently changed customers\n" if $debug;
40
41       <& /elements/table-grid.html &>
42
43 %     my $bgcolor1 = '#eeeeee';
44 %     my $bgcolor2 = '#ffffff';
45 %     my $bgcolor = $bgcolor2;
46
47         <TR>
48           <TH CLASS="grid" BGCOLOR="#cccccc" COLSPAN=1><% mt('Customers I recently added or modified') |h %></TH>
49         </TR>
50
51 %     foreach my $custnum ( @custnums ) { 
52 %     my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } ); 
53 %     next unless $cust_main; 
54
55         <TR>
56           <TD CLASS="grid" BGCOLOR="<% $bgcolor %>"><A HREF="view/cust_main.cgi?<% $custnum %>"><% $cust_main->display_custnum %>: <% $cust_main->name |h %></A></TD>
57         </TR>
58
59 %       if ( $bgcolor eq $bgcolor1 ) {
60 %          $bgcolor = $bgcolor2;
61 %        } else {
62 %          $bgcolor = $bgcolor1;
63 %        }
64 %    
65 %     } 
66
67       </TABLE>
68
69 %   } 
70 % }
71
72 <& /elements/footer.html &>