Products     Magento Extension     PCI-Shopping-Carts     Templates       CRELoaded     WordPress Modules     osCommerce Modules       osCommerce Addons       osCommerce Features       osCommerce Management       Payment Modules     CRELoaded Modules       CRE Loaded Addons       CRE Loaded Features       CRE Loaded Management       Payment Modules       CRELoaded Services
Free Stuff
Customization
Templates
Compare Products
You have no items to compare.
Affiliate Info
Affiliate Program FAQ
Affiliate Log In
Recent Orders
Hot Keywords: Order Notification, Order Search, Coupon, Flash Board, Compare, Floating Message, Tracking, Moneris, RSS, Visitor Filter

  Monthly Sales & Tax Report

The following osCommerce contribution is a free Opensource code originated from official osCommerce website and provided for your reference only, you may download the original contribution file(s) and install it on your own; or you may request a Paid Installation Service from Agents Of Power; Agents Of Power does the "AS IS" installation on your website, we do not guarantee it will work properly on your website. Extra Paid service is available for repairing the problem from the original contribution or from your website.
The "Taxes Collected" column is a list of popup links and for some reason this was broken. I have only changed a few lines to repair this.

Around line 518 you will see
// make this a link to the detail popup if nonzero
I changed the lines
echo "<a href="#" onClick="window.open('" . $_SERVER['PHP_SELF'] . "?&show=ot_tax&year=" . $sales['row_year'] . "&month=" . $sales['i_month'];
if ($sel_month<>0) echo "&day=" . $sales['row_day'];
if ($status<>'') echo "&status=" . $status;
echo "','detail',config='height=200,width=400,scrollbars=1, resizable=1')" title="Show detail">";

to

if ($sel_month<>0) $taxpopup = "&day=" . $sales['row_day'];
if ($status<>'') $taxpopup .= "&status=" . $status;
echo "<a href="#" onClick="window.open('" . tep_href_link(basename($PHP_SELF), "&show=ot_tax&year=" . $sales['row_year'] . "&month=" . $sales['i_month'] . $taxpopup);
echo "','detail',config='height=200,width=400,scrollbars=1, resizable=1')" title="Show detail">";

Not much of a change but it makes it work.

This file is also the latest one listed here with my change.
/admin/stats_monthly_sales.php
   Posted on: 05/05/2009     See contribution details Request Installation with Paid service