The "Admin Summary Info" contribution is designed to display usefull shop information directly in the header of your admin page. With the "Admin Summary Info" contribution you can quickly monitor how many orders you have received along with their status, number of customers, Reviews, and even how many users are currently online exploring and shopping at your oscommerce store. This contribution was developed to put some of the most commonly needed day to day data within a single clicks reach to save time while adminstrating your site.
Legend: 
Download

Report
There was a problem with the order total summary, the field value in the table orders_total is shown the shop default value, not the foreign currency value.
That means the output, Total USD 1000.-, Total EUR 500.- was not true, in fact it is 1500.- USD.
So this new code is much smaller, and the annoying long output is now shorten to the default shop currency.
Change the whole order total summary section in admin/icludes/header.php to this:
// order total summary
if(!is_object($currencies)){include_once(DIR_WS_CLASSES . 'currencies.php'); $currencies = new currencies();}
$sum_query = tep_db_query("select sum(ot.value) as sum from " . TABLE_ORDERS . " o left join " . TABLE_ORDERS_TOTAL . " ot on (o.orders_id = ot.orders_id) where ot.class = 'ot_total'");
$sum = tep_db_fetch_array($sum_query);
$today_sum_query = tep_db_query("select sum(ot.value) as sum from " . TABLE_ORDERS . " o left join " . TABLE_ORDERS_TOTAL . " ot on (o.orders_id = ot.orders_id) where to_days(o.date_purchased) = to_days(now()) and ot.class = 'ot_total'");
$today_sum = tep_db_fetch_array($today_sum_query);
echo '<tr><td align="right" class="smallText">' . sprintf(TEXT_SUMMARY_INFO_ORDERS_TOTAL, $currencies->format($sum['sum']), $currencies->format($today_sum['sum'])) . '</td><td align="center" width="40"><a href="' . tep_href_link(FILENAME_STATS_SALES_REPORT, '', 'SSL') . '">' . tep_image(DIR_WS_IMAGES . 'icons/summary_totals.gif', HEADER_TITLE_SUPPORT_SITE) . '</a></td></tr>';
echo '</table></td>';
Thats it, have fun!
File contains only this bugfix.
Good idea in this contrib, but anybody may see the summary info in login page. I desided to show this info only after admin logon.
This is not a full package. Only modified header.php for version 1.1 by sugiartha is included.
This is not an upgrade, more a modification on the formatting of the data, i have ammended install instructions and included a replacement header.php file for easier instalation
I have left the original 1.1 instructions intact, and have included extra instructions on installing 1.2 - the version to install is your choice.
**Please note - this is my own indipendant modification, i have no assosiation or affiliate with Concept Laboratory, ***
PS - This is my first Modification, it may contain bugs which i have missed, although this does work perfectly on my own store
This is a complete download package for Admin Summary Info v1.1
The "Admin Summary Info" contribution is designed to display usefull shop information directly in the header of your admin page. With the "Admin Summary Info" contribution you can quickly monitor how many orders you have received along with their status, number of customers, reviews, total sales, and even how many users and or bots are currently online exploring and shopping at your oscommerce store. This contribution was developed to put some of the most commonly needed day to day data within a single clicks reach to save time while adminstrating your site.
The update to v1.1 includes the following enhanced features:
------------------------------------------------------------
Displayed "whos online summary" has been enhanced in v1.1 to distinguish the total guests, total bots and total customers / members. This feature will work automatically if you have already installed the whos online enhancement [url]. If the whos online enhancement is not already installed on your site this feature will downgrade gracefully and only display total guests and total customers online.
Displaying order totals ($) for each order status. This feature will provide all currencies in the total. For example [$500.00, IDR 150,000.00].
All the original features of Admin Summary Info v1.0 are included in v1.1 as well....including the following:
-------------------------------------------------------------------------------------------------------------
Display how many orders you currently have in total, plus how many you received today and order status grouping counts.
Also includes links directly to each order status used on your site to transporting you to your desired order status pages.
Display how many customers you have in total, and how many signed up today, along with with an embedded link to take you directly to your customers.php page.
Display how many users are currently online exploring your shop with an embedded link to whos_online.php
Display how many product reviews you have received to date, as well as today, with an embedded link to your reviews admin page.
The "Admin Summary Info" contribution is designed to display usefull shop information directly in the header of your admin page. With the "Admin Summary Info" contribution you can quickly monitor how many orders you have received along with their status, number of customers, Reviews, and even how many users are currently online exploring and shopping at your oscommerce store. This contribution was developed to put some of the most commonly needed day to day data within a single clicks reach to save time while adminstrating your site.
Forum support: http://forums.oscommerce.com/index.php?showtopic=263312