X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Findex.html;h=ae150961093d4a70bf44bcce5c3aab2a3813272d;hp=d024de0bf094bfbf873a7df44e5866900c42e10e;hb=c3da5cf1caa244937d280e0f406927103beef148;hpb=abc64a997eeacdc95988296889754d708aa97cad diff --git a/httemplate/index.html b/httemplate/index.html index d024de0bf..ae1509610 100644 --- a/httemplate/index.html +++ b/httemplate/index.html @@ -1,203 +1,54 @@ - - - - Freeside Main Menu - - - - - -
- Silicon Interactive Software Design - - freeside main menu - - version %%%VERSION%%% -
Freeside home page -
Documentation -
- -
-[ Sales / Customer service ] -[ Bookkeeping / Collections ] -[ Reports ] -[ Sysadmin ] - - - -
Sales / Customer service
-
New Customer -
-
Customer # or all customers by customer number
-
Last name or all customers by last name
-
Company or all customers by company
- -
Phone #
-
Username or all accounts by username or uid
-
Domain or all domains
- -
-
- - - -


- - -[ Sales / Customer service ] -[ Bookkeeping / Collections ] -[ Reports ] -[ Sysadmin ] - - - -
Bookkeeping / Collections
-
Quick payment entry -
-
Credit card #
-
Invoice #
-
Check #
-
View pending credit card batch

Packages (by next bill date range) -

Invoice reports - - Payment report (by type and/or date range) -

Accounts Receivable Aging Summary -

(old) Financial reports (being rewritten) - -


- Administration - -
-
- - - -


- - - -[ Sales / Customer service ] -[ Bookkeeping / Collections ] -[ Reports ] -[ Sysadmin ] - - - -
Reports
-
- Auditing pre-Freeside services with no customer record - - Packages - - Package definitions (by number of active packages)

- Customers - -
SQL query: SELECT
- -
-
- - - -


- - -[ Sales / Customer service ] -[ Bookkeeping / Collections ] -[ Reports ] -[ Sysadmin ] - - - -
Sysadmin
-
- View active NAS ports -
View pending job queue -
Batch import customers from CSV file -
Batch import charges from CSV file -



- Configuration -

Administration - -
-
-















-















-















-















-















-















-















-















- - +<& /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 &>