![]() |
Admin Sales Totals
1 Attachment(s)
On the Dashboard is it possible to show additional reports like yesterday, last week, last month, this year in the graphic?
Here's a screenshot of what it currently says. |
Re: Admin Sales Totals
There is a thread on this very subject...If I find it I'll point it out. But at least you know it is possible and the solution exists. Just need to find the needle in the haystack of this forum.
|
Re: Admin Sales Totals
Quote:
This one? http://forum.x-cart.com/showthread.php?t=65186 |
Re: Admin Sales Totals
No. That's statistics and won't account for any orders other than processed.
|
Re: Admin Sales Totals
Photo, that was the thread I had in mind. I thought it applied.
John, it looks relatively simple to do. Take a look at /admin/main.php See line 57: Code:
$start_dates[] = $previous_login_date; // Since last login Also take a look at the foreach statement Code:
foreach($start_dates as $start_date) { |
Re: Admin Sales Totals
Thanks a lot I'll try it out.
|
Re: Admin Sales Totals
Still not really sure how to change the time period. A little confused on how to actually make that into a yesterday, last week, and last month.
|
Re: Admin Sales Totals
Well, I would have to test it out and figure it out by trial and error myself.
1 week = 604800 seconds. I expect all of the values being processed by this script are in seconds. This defines the current week, it simply adds another entry to the array $start_dates: $start_dates[] = func_prepare_search_date($start_week) - $config['Appearance']['timezone_offset']; // Current week You need to do the same. I would attempt first to simply use the equation above, and subtract 604800 seconds. Why not: $start_dates[] = func_prepare_search_date($start_week) - $config['Appearance']['timezone_offset'] - 604800; // Last week |
Re: Admin Sales Totals
Thanks. That helps out and gives me an idea of how to mess with it.
|
Re: Admin Sales Totals
Johnwiggity,
Did you ever figure out the line to put in the main.php to show the Year in the Admin Home? |
All times are GMT -8. The time now is 07:33 AM. |
Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.