sales over time

Post feature requests to this forum and a pre-configured poll will automatically be created for you.
Post Reply

How important is this enhancement to you?

It's a critical enhancement that I must have.
1
50%
It's an important enhancement but others are more critical.
0
No votes
I'd like to have it but it's not that important.
1
50%
I'd never use this feature.
0
No votes
 
Total votes: 2

mkeith1
Commander (CMDR)
Commander (CMDR)
Posts: 120
Joined: Wed Jul 25, 2007 12:46 pm
Contact:

sales over time

Post by mkeith1 » Mon Nov 10, 2008 10:46 am

In the merchant dashboard, Sales over time" feature shows past 7 days and past 3 months. can it be edited to show the last 12 months?

or can there be an option in the Reports menu that just shows monthly sales history with a report period of the last 12 months total sales as a measure would be great.

I know Version 5.5 had this feature, cause i have a report from it.

User avatar
mazhar
Master Yoda
Master Yoda
Posts: 5084
Joined: Wed Jul 09, 2008 8:21 am
Contact:

Re: sales over time

Post by mazhar » Tue Nov 11, 2008 11:42 am

In the merchant dashboard, Sales over time" feature shows past 7 days and past 3 months. can it be edited to show the last 12 months?
Give a try and edit the Admin/Dashboard/SalesOverTime.ascx file and locate the following line

Code: Select all

<ComponentArt:TabStripTab Text="Past 6 Months"></ComponentArt:TabStripTab>
and change it to

Code: Select all

<ComponentArt:TabStripTab Text="Past 12 Months"></ComponentArt:TabStripTab>
Now edit the Admin/Dashboard/SalesOverTime.ascx.cs file and locate the following line of code

Code: Select all

ReportDataSource.GetSalesForPastMonths(6, true);
and make it look like

Code: Select all

ReportDataSource.GetSalesForPastMonths(12, true);

Post Reply