X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=httemplate%2Findex.html;h=ae150961093d4a70bf44bcce5c3aab2a3813272d;hb=8afce93f57d2226835ee9225dede24b13e505655;hp=dcf51370395e1410ddacc8aa34f325a4d05f8210;hpb=f91771606ce8a2bb4f2fa44e7bf54c9b7c945db6;p=freeside.git diff --git a/httemplate/index.html b/httemplate/index.html index dcf513703..ae1509610 100644 --- a/httemplate/index.html +++ b/httemplate/index.html @@ -1,98 +1,54 @@ - - - - Freeside Main Menu - - - - - -
- Silicon Interactive Software Design - - freeside main menu - - version 1.4.0 -
Freeside home page -
Documentation -
-
- -
- - - +<& /elements/header.html, mt('Billing Main') &> + +<& /elements/dashboard-install_welcome.html &> + +<& /elements/dashboard-toplist.html &> + +% my $sth = dbh->prepare( +% #"SELECT DISTINCT custnum FROM h_cust_main JOIN cust_main USING ( custnum ) +% "SELECT custnum FROM h_cust_main JOIN cust_main USING ( custnum ) +% WHERE ( history_action = 'insert' OR history_action = 'replace_new' ) +% AND history_user = ? +% ORDER BY history_date desc" # LIMIT 10 +% ) or die dbh->errstr; +% +% $sth->execute( getotaker() ) or die $sth->errstr; +% +% my %saw = (); +% my @custnums = grep { !$saw{$_}++ } map $_->[0], @{ $sth->fetchall_arrayref }; +% +% @custnums = splice(@custnums, 0, 10); +% +% if ( @custnums ) { + + <& /elements/table-grid.html &> + +% my $bgcolor1 = '#eeeeee'; +% my $bgcolor2 = '#ffffff'; +% my $bgcolor = $bgcolor2; + + + <% mt('Customers I recently added or modified') |h %> + + +% foreach my $custnum ( @custnums ) { +% my $cust_main = qsearchs('cust_main', { 'custnum' => $custnum } ); +% next unless $cust_main; + + + <% $cust_main->display_custnum %>: <% $cust_main->name %> + + +% if ( $bgcolor eq $bgcolor1 ) { +% $bgcolor = $bgcolor2; +% } else { +% $bgcolor = $bgcolor1; +% } +% +% } + + + +% } + +<& /elements/footer.html &>