Add inner month statistics
This commit is contained in:
parent
cedb13c3ec
commit
84aa1fb42b
|
@ -445,6 +445,17 @@ void KissCount::GetStats(int monthFrom, int yearFrom, int monthTo, int yearTo,
|
||||||
_db->GetStats(_user, monthF, yearF, monthT, yearT, accountAmounts, categories);
|
_db->GetStats(_user, monthF, yearF, monthT, yearT, accountAmounts, categories);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void KissCount::GetMonthStats(int month, int year, int nbDays,
|
||||||
|
std::map<wxString, std::vector<double> >* operations,
|
||||||
|
std::map<wxString, double>* categories)
|
||||||
|
{
|
||||||
|
wxString monthS = wxString::Format(wxT("%d"), month);
|
||||||
|
wxString yearS = wxString::Format(wxT("%d"), year);
|
||||||
|
|
||||||
|
_db->GetMonthStats(_user, monthS, yearS, nbDays, operations, categories);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
std::map<wxString, double>* KissCount::GetNotChecked(int month, int year)
|
std::map<wxString, double>* KissCount::GetNotChecked(int month, int year)
|
||||||
{
|
{
|
||||||
return _db->GetNotChecked(_user, month, year);
|
return _db->GetNotChecked(_user, month, year);
|
||||||
|
|
|
@ -90,6 +90,10 @@ public:
|
||||||
std::map<wxString, std::map<int, std::map<int, double> > >* accountAmounts,
|
std::map<wxString, std::map<int, std::map<int, double> > >* accountAmounts,
|
||||||
std::map<wxString, double>* categories);
|
std::map<wxString, double>* categories);
|
||||||
|
|
||||||
|
void GetMonthStats(int month, int year, int nbDays,
|
||||||
|
std::map<wxString, std::vector<double> >* operations,
|
||||||
|
std::map<wxString, double>* categories);
|
||||||
|
|
||||||
std::map<wxString, double>* GetNotChecked(int month, int year);
|
std::map<wxString, double>* GetNotChecked(int month, int year);
|
||||||
|
|
||||||
static wxFont ExtractFont(wxString strFont);
|
static wxFont ExtractFont(wxString strFont);
|
||||||
|
|
|
@ -1407,6 +1407,8 @@ void Database::GetStats(User* user, const wxString& monthFrom, const wxString& y
|
||||||
std::vector<Category>::iterator categoryIt;
|
std::vector<Category>::iterator categoryIt;
|
||||||
|
|
||||||
if (!user->_accounts.empty())
|
if (!user->_accounts.empty())
|
||||||
|
{
|
||||||
|
if (accountAmounts)
|
||||||
{
|
{
|
||||||
for (accountIt = user->_accounts.begin(); accountIt != user->_accounts.end(); accountIt++)
|
for (accountIt = user->_accounts.begin(); accountIt != user->_accounts.end(); accountIt++)
|
||||||
{
|
{
|
||||||
|
@ -1422,7 +1424,10 @@ void Database::GetStats(User* user, const wxString& monthFrom, const wxString& y
|
||||||
}
|
}
|
||||||
set.Finalize();
|
set.Finalize();
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (categories)
|
||||||
|
{
|
||||||
for (categoryIt = user->_categories.begin(); categoryIt != user->_categories.end(); categoryIt++)
|
for (categoryIt = user->_categories.begin(); categoryIt != user->_categories.end(); categoryIt++)
|
||||||
{
|
{
|
||||||
req = wxT("SELECT SUM(amount) as amount FROM operation AS o1 WHERE category='") + categoryIt->id + wxT("'");
|
req = wxT("SELECT SUM(amount) as amount FROM operation AS o1 WHERE category='") + categoryIt->id + wxT("'");
|
||||||
|
@ -1465,6 +1470,71 @@ void Database::GetStats(User* user, const wxString& monthFrom, const wxString& y
|
||||||
set.Finalize();
|
set.Finalize();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void Database::GetMonthStats(User* user, const wxString& month, const wxString& year, int nbDays,
|
||||||
|
std::map<wxString, std::vector<double> >* operations,
|
||||||
|
std::map<wxString, double>* categories)
|
||||||
|
{
|
||||||
|
wxSQLite3ResultSet set;
|
||||||
|
wxString req;
|
||||||
|
std::vector<Account>::iterator accountIt;
|
||||||
|
int previous_amount, previous_day, cur_day;
|
||||||
|
|
||||||
|
if (!user->_accounts.empty())
|
||||||
|
{
|
||||||
|
for (accountIt = user->_accounts.begin(); accountIt != user->_accounts.end(); accountIt++)
|
||||||
|
{
|
||||||
|
req = wxT("SELECT amount FROM account_amount WHERE account ='") + accountIt->id + wxT("'");
|
||||||
|
req += wxT(" AND year = '") + year + wxT("'");
|
||||||
|
req += wxT(" AND month = '") + month + wxT("'");
|
||||||
|
|
||||||
|
EXECUTE_SQL_QUERY(req, set, );
|
||||||
|
|
||||||
|
while (set.NextRow())
|
||||||
|
{
|
||||||
|
(*operations)[accountIt->id].clear();
|
||||||
|
|
||||||
|
previous_amount = set.GetInt(wxT("amount"));
|
||||||
|
}
|
||||||
|
set.Finalize();
|
||||||
|
|
||||||
|
req = wxT("SELECT day, amount FROM operation WHERE");
|
||||||
|
req += wxT(" account = '") + accountIt->id + wxT("'");
|
||||||
|
req += wxT(" AND year = '") + year + wxT("'");
|
||||||
|
req += wxT(" AND month = '") + month + wxT("'");
|
||||||
|
req += wxT(" AND meta='0'");
|
||||||
|
|
||||||
|
req += wxT(" ORDER BY day ASC");
|
||||||
|
|
||||||
|
EXECUTE_SQL_QUERY(req, set, );
|
||||||
|
|
||||||
|
cur_day = previous_day = -1;
|
||||||
|
while (set.NextRow())
|
||||||
|
{
|
||||||
|
cur_day = set.GetInt(wxT("day"));
|
||||||
|
while (cur_day != previous_day)
|
||||||
|
{
|
||||||
|
(*operations)[accountIt->id].push_back(previous_amount);
|
||||||
|
previous_day++;
|
||||||
|
}
|
||||||
|
|
||||||
|
previous_amount += set.GetDouble(wxT("amount"));
|
||||||
|
(*operations)[accountIt->id][cur_day] = previous_amount;
|
||||||
|
}
|
||||||
|
set.Finalize();
|
||||||
|
|
||||||
|
while (cur_day < nbDays)
|
||||||
|
{
|
||||||
|
(*operations)[accountIt->id].push_back(previous_amount);
|
||||||
|
cur_day++;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fill categories
|
||||||
|
GetStats(user, month, year, month, year, NULL, categories) ;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::map<wxString, double>* Database::GetNotChecked(User* user, int month, int year)
|
std::map<wxString, double>* Database::GetNotChecked(User* user, int month, int year)
|
||||||
|
|
|
@ -89,6 +89,10 @@ public:
|
||||||
const wxString& yearTo, std::map<wxString, std::map<int, std::map<int, double> > >* accountAmounts,
|
const wxString& yearTo, std::map<wxString, std::map<int, std::map<int, double> > >* accountAmounts,
|
||||||
std::map<wxString, double>* categories);
|
std::map<wxString, double>* categories);
|
||||||
|
|
||||||
|
void GetMonthStats(User* user, const wxString& month, const wxString& year, int nbDays,
|
||||||
|
std::map<wxString, std::vector<double> >* operations,
|
||||||
|
std::map<wxString, double>* categories);
|
||||||
|
|
||||||
void KillMe(User* user);
|
void KillMe(User* user);
|
||||||
bool GetOperation(const wxString& id, Operation* op);
|
bool GetOperation(const wxString& id, Operation* op);
|
||||||
std::map<wxString, wxString> getSharedAccountOwners(const wxString& account);
|
std::map<wxString, wxString> getSharedAccountOwners(const wxString& account);
|
||||||
|
|
|
@ -151,14 +151,17 @@ void StatsPanel::UpdateStats(int monthFrom, int yearFrom, int monthTo, int yearT
|
||||||
{
|
{
|
||||||
std::map<wxString, std::map<int, std::map<int, double> > > accountAmounts;
|
std::map<wxString, std::map<int, std::map<int, double> > > accountAmounts;
|
||||||
std::map<wxString, double> categories;
|
std::map<wxString, double> categories;
|
||||||
|
std::map<wxString, std::vector<double> > operations;
|
||||||
|
std::map<wxString, std::vector<double> >::iterator accountIdIt2;
|
||||||
std::map<wxString, double>::iterator categoriesIt;
|
std::map<wxString, double>::iterator categoriesIt;
|
||||||
std::map<wxString, std::map<int, std::map<int, double> > >::iterator accountIdIt;
|
std::map<wxString, std::map<int, std::map<int, double> > >::iterator accountIdIt;
|
||||||
std::map<int, std::map<int, double> >::iterator accountYearIt;
|
std::map<int, std::map<int, double> >::iterator accountYearIt;
|
||||||
double total;
|
double total;
|
||||||
int size, i, a, b, percents, account;
|
int size, i, a, b, percents, account, nbDays;
|
||||||
double *amounts;
|
double *amounts;
|
||||||
wxString value;
|
wxString value;
|
||||||
User* user = _kiss->GetUser();
|
User* user = _kiss->GetUser();
|
||||||
|
wxDateTime date;
|
||||||
|
|
||||||
if (_chart)
|
if (_chart)
|
||||||
{
|
{
|
||||||
|
@ -167,14 +170,55 @@ void StatsPanel::UpdateStats(int monthFrom, int yearFrom, int monthTo, int yearT
|
||||||
delete _chart;
|
delete _chart;
|
||||||
}
|
}
|
||||||
|
|
||||||
_kiss->GetStats(monthFrom, yearFrom, monthTo, yearTo, &accountAmounts, &categories);
|
|
||||||
|
|
||||||
// first step: create plot
|
// first step: create plot
|
||||||
_plot = new XYPlot();
|
_plot = new XYPlot();
|
||||||
|
|
||||||
// create dataset
|
// create dataset
|
||||||
XYSimpleDataset *dataset = new XYSimpleDataset();
|
XYSimpleDataset *dataset = new XYSimpleDataset();
|
||||||
|
|
||||||
|
if (monthFrom == monthTo && yearFrom == yearTo)
|
||||||
|
{
|
||||||
|
nbDays = date.GetLastMonthDay((wxDateTime::Month)monthFrom, yearFrom).GetDay();
|
||||||
|
|
||||||
|
_kiss->GetMonthStats(monthFrom, yearFrom, nbDays, &operations, &categories);
|
||||||
|
|
||||||
|
// Line on 0 all over the years
|
||||||
|
amounts = new double[nbDays*2];
|
||||||
|
for (a=0; a<nbDays; a++)
|
||||||
|
{
|
||||||
|
amounts[a*2+0] = a;
|
||||||
|
amounts[a*2+1] = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
dataset->AddSerie((double *) amounts, nbDays);
|
||||||
|
delete[] amounts;
|
||||||
|
|
||||||
|
for (account = 0, i = 0, accountIdIt2 = operations.begin(); accountIdIt2 != operations.end();
|
||||||
|
accountIdIt2++, i++, account++)
|
||||||
|
{
|
||||||
|
if (!((wxCheckListBox*)_account)->IsChecked(account))
|
||||||
|
{
|
||||||
|
i-- ;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
amounts = new double[nbDays*2];
|
||||||
|
size = 0;
|
||||||
|
for (a=0; a<nbDays; a++)
|
||||||
|
{
|
||||||
|
amounts[a*2+0] = a;
|
||||||
|
amounts[a*2+1] = operations[accountIdIt2->first][a];
|
||||||
|
}
|
||||||
|
dataset->AddSerie((double *) amounts, nbDays);
|
||||||
|
// set serie names to be displayed on legend
|
||||||
|
dataset->SetSerieName(i+1, user->GetAccountName(accountIdIt2->first));
|
||||||
|
delete[] amounts;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
_kiss->GetStats(monthFrom, yearFrom, monthTo, yearTo, &accountAmounts, &categories);
|
||||||
|
|
||||||
// Line on 0 all over the years
|
// Line on 0 all over the years
|
||||||
size = ((yearTo - yearFrom) + 1) * 12;
|
size = ((yearTo - yearFrom) + 1) * 12;
|
||||||
amounts = new double[size*2];
|
amounts = new double[size*2];
|
||||||
|
@ -220,6 +264,7 @@ void StatsPanel::UpdateStats(int monthFrom, int yearFrom, int monthTo, int yearT
|
||||||
dataset->SetSerieName(i+1, user->GetAccountName(accountIdIt->first));
|
dataset->SetSerieName(i+1, user->GetAccountName(accountIdIt->first));
|
||||||
delete[] amounts;
|
delete[] amounts;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// create line renderer and set it to dataset
|
// create line renderer and set it to dataset
|
||||||
XYLineRenderer *renderer = new XYLineRenderer(true, true);
|
XYLineRenderer *renderer = new XYLineRenderer(true, true);
|
||||||
|
@ -296,9 +341,8 @@ void StatsPanel::OnRangeChange(wxCommandEvent& event)
|
||||||
_yearTo->GetStringSelection().ToLong(&yearTo);
|
_yearTo->GetStringSelection().ToLong(&yearTo);
|
||||||
|
|
||||||
if (yearTo > yearFrom ||
|
if (yearTo > yearFrom ||
|
||||||
(yearFrom == yearTo && monthFrom >= monthTo))
|
(yearFrom == yearTo && monthFrom > monthTo))
|
||||||
{
|
{
|
||||||
std::cout << monthFrom << " " << monthTo << " " << _yearFrom->GetStringSelection().mb_str() << " " << yearFrom << " " << yearTo << "\n" ;
|
|
||||||
wxMessageBox(_("Invalide date range"), _("KissCount"), wxICON_ERROR | wxOK);
|
wxMessageBox(_("Invalide date range"), _("KissCount"), wxICON_ERROR | wxOK);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
DATE=`date +%d.%m.%Y`
|
DATE=`date +%d.%m.%Y`
|
||||||
DIR="KissCount_build_$DATE"
|
ARCH=`uname -m`
|
||||||
|
DIR="KissCount_build_${DATE}_${ARCH}"
|
||||||
FILE="$DIR.tar.bz2"
|
FILE="$DIR.tar.bz2"
|
||||||
|
|
||||||
rm -f $FILE
|
rm -f $FILE
|
||||||
|
|
Loading…
Reference in New Issue
Block a user