From 7e069126a88094bf7fa5c6a770c1dd74264a79e8 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Sun, 11 Jun 2023 07:32:50 -0400 Subject: [PATCH] added date range to standard mode headers in statistics menu --- oscar/statistics.cpp | 34 ++++++++++++++++++++++++++++------ 1 file changed, 28 insertions(+), 6 deletions(-) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index ae6287b9..b49af188 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -986,6 +986,26 @@ struct Period { end=copy.end; header=copy.header; } + Period(QDate first,QDate last, int advance , bool month,QString name) { + // adds date range to header. + // replaces the following + // periods.push_back(Period(qMax(last.addDays(-6), first), last, tr("Last Week"))); + QDate start; + if (month) { + // note add days or addmonths returns the start of the next day or the next month. + // must subtract one day for Month. + start = qMax(last.addMonths(advance).addDays(-1),first);; + } else { + start = qMax(last.addDays(advance),first); + } + name = name + "
" + start.toString("ddMMMyy") ; + if (advance!=0) { + name = name + " - " + last.toString("ddMMMyy"); + } + this->header = name; + this->start = start ; + this->end = last ; + } Period& operator=(const Period&) = default; ~Period() {}; QDate start; @@ -1271,11 +1291,13 @@ QString Statistics::GenerateCPAPUsage() // Clear the periods (columns) periods.clear(); if (p_profile->general->statReportMode() == STAT_MODE_STANDARD) { - periods.push_back(Period(last,last,tr("Most Recent"))); - periods.push_back(Period(qMax(last.addDays(-6), first), last, tr("Last Week"))); - periods.push_back(Period(qMax(last.addDays(-29),first), last, tr("Last 30 Days"))); - periods.push_back(Period(qMax(last.addMonths(-6), first), last, tr("Last 6 Months"))); - periods.push_back(Period(qMax(last.addMonths(-12), first), last, tr("Last Year"))); + // note add days or addmonths returns the start of the next day or the next month. + // must subtract one day for each. Month executed in Period method + periods.push_back(Period(first,last, 0, false ,tr("Most Recent"))); + periods.push_back(Period(first,last, -6, false ,tr("Last Week"))); + periods.push_back(Period(first,last, -29,false, tr("Last 30 Days"))); + periods.push_back(Period(first,last, -6,true, tr("Last 6 Months"))); + periods.push_back(Period(first,last, -12,true,tr("Last Year"))); } else if (p_profile->general->statReportMode() == STAT_MODE_MONTHLY) { QDate l=last,s=last; @@ -1290,7 +1312,7 @@ QString Statistics::GenerateCPAPUsage() s = first; } if (p_profile->countDays(row.type, s, l) > 0) { - periods.push_back(Period(s, l, s.toString("MMMM yyyy"))); + periods.push_back(Period(s, l, s.toString("MMMM
yyyy"))); j++; } l = s.addDays(-1);