From 8c5206b9a95b2b0c75433e60fa7501b2b4d23f02 Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Thu, 7 Dec 2023 21:56:18 -0500 Subject: [PATCH] Statistics Monthly report: include months than have no days used. --- oscar/statistics.cpp | 22 +++++++++++++++------- 1 file changed, 15 insertions(+), 7 deletions(-) diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp index 8d29752f..6d3a1c8d 100644 --- a/oscar/statistics.cpp +++ b/oscar/statistics.cpp @@ -23,6 +23,7 @@ server= red 30+ #include #include #include +#include #include #include @@ -46,6 +47,7 @@ QString htmlMachineSettings = ""; // Device (formerly Rx) changes QString htmlMachines = ""; // Devices used in this profile QString htmlReportFooter = ""; // Page footer +QSet noDaysInPeriod; QString alternatingColor(int& counter) { counter++; int offset = counter %= 3; @@ -1328,6 +1330,7 @@ QString Statistics::GenerateCPAPUsage() // Compute number of monthly periods for a monthly rather than standard time distribution int number_periods = 0; + noDaysInPeriod.clear(); if (p_profile->general->statReportMode() == STAT_MODE_MONTHLY) { int firstMonth = firstcpap.month(); int lastMonth = lastcpap.month(); @@ -1344,7 +1347,6 @@ QString Statistics::GenerateCPAPUsage() if (number_periods > 12) { number_periods = 12; } -// } else if (p_profile->general->statReportMode() == STAT_MODE_RANGE) { } QDate last = lastcpap, first = lastcpap; @@ -1380,11 +1382,11 @@ QString Statistics::GenerateCPAPUsage() //done = true; s = first; } - if (p_profile->countDays(row.type, s, l) > 0) { - periods.push_back(Period(s, l, s.toString("MMMM
yyyy"))); - j++; - } - l = s.addDays(-1); + + // all periods must be displayed to indicate that it is not used. + periods.push_back(Period(s, l, s.toString("MMMM
yyyy"))); + j++; + l = s.addDays(-1); } while ((l > first) && (j < number_periods)); for (; j < number_periods; ++j) { @@ -1924,6 +1926,7 @@ QString Statistics::UpdateRecordsBox() QString StatisticsRow::value(QDate start, QDate end) { + if (noDaysInPeriod.contains(start) ) return "-"; const int decimals=2; QString value; float days = p_profile->countDays(type, start, end); @@ -1958,7 +1961,12 @@ QString StatisticsRow::value(QDate start, QDate end) value = 0.0 ; } } else if (calc == SC_DAYS_W_DATA) { - value = QString::number(p_profile->countDays(type, start, end)); + int daysUsed = p_profile->countDays(type, start, end); + value = QString::number(daysUsed); + if (daysUsed==0) { + noDaysInPeriod.insert(start); + return value; + }; } else if (calc == SC_SELECTED_DAYS) { value = QString::number(1+start.daysTo(end)); } else if (calc == SC_NON_COMPLIANCE_DAYS) {