diff --git a/oscar/statistics.cpp b/oscar/statistics.cpp
index 49fd9d53..1799fc17 100644
--- a/oscar/statistics.cpp
+++ b/oscar/statistics.cpp
@@ -1530,38 +1530,31 @@ QString Statistics::UpdateRecordsBox()
if (cpap) {
QDate first = p_profile->FirstGoodDay(MT_CPAP);
QDate last = p_profile->LastGoodDay(MT_CPAP);
- if (last > p_profile->general->statReportDate() ) {
- last = p_profile->general->statReportDate();
- }
/////////////////////////////////////////////////////////////////////////////////////
/// Compliance and usage information
/////////////////////////////////////////////////////////////////////////////////////
- int realTotal = 1+first.daysTo(last);
- int totaldays = p_profile->countDays(MT_CPAP, first, last);
+ int totalDays = 1+first.daysTo(last);
+ int daysUsed = p_profile->countDays(MT_CPAP, first, last);
+ int daysSkipped = totalDays - daysUsed;
int compliant = p_profile->countCompliantDays(MT_CPAP, first, last);
- int lowUsed = totaldays - compliant;
- int daysSkipped = realTotal -(compliant+lowUsed);
-
- //float comperc = (100.0 / float(totaldays)) * float(compliant);
- float comperc = (100.0 / float(realTotal)) * float(compliant);
- html += ""+tr("Period:")+" ";
- html += first.toString(Qt::SystemLocaleShortDate) + " - " + last.toString(Qt::SystemLocaleShortDate) + "
";
+ int lowUsed = daysUsed - compliant;
+ float comperc = (100.0 / float(totalDays)) * float(compliant);
html += ""+tr("CPAP Usage")+"
";
- if (realTotal != totaldays) {
- html += tr("Total Days: %1").arg(realTotal) + "
";
- html += tr("No Data Days: %1").arg(daysSkipped) + "
";
+ html += first.toString(Qt::SystemLocaleShortDate) + " - " + last.toString(Qt::SystemLocaleShortDate) + "
";
+ if (daysSkipped > 0) {
+ html += tr("Total Days: %1").arg(totalDays) + "
";
+ html += tr("Days Not Used: %1").arg(daysSkipped) + "
";
}
- html += tr("Days Used: %1").arg(totaldays) + "
";
- html += tr("Low Use Days: %1").arg(lowUsed) + "
";
- //html += tr("compliant Days: %1").arg(compliant) + "
";
+ html += tr("Days Used: %1").arg(daysUsed) + "
";
+ html += tr("Days %1 %2 Hours: %3").arg(">=") .arg(p_profile->cpap->complianceHours(),0,'f',1) .arg(compliant) + "
";
+ html += tr("Days %1 %2 Hours: %3").arg("<").arg(p_profile->cpap->complianceHours(),0,'f',1) .arg(lowUsed) + "
";
html += tr("Compliance: %1%").arg(comperc, 0, 'f', 1) + "
";
/////////////////////////////////////////////////////////////////////////////////////
/// AHI Records
/////////////////////////////////////////////////////////////////////////////////////
-
if (p_profile->session->preloadSummaries()) {
const int show_records = 5;
QMultiMap::iterator it;