Fix statistcs not displaying oximetery data

This commit is contained in:
LoudSnorer 2024-02-18 21:18:58 -05:00
parent 4768a02272
commit 216471227e
2 changed files with 18 additions and 12 deletions

View File

@ -48,7 +48,6 @@ QString htmlMachines = ""; // Devices used in this profile
QString htmlReportFooter = ""; // Page footer QString htmlReportFooter = ""; // Page footer
SummaryInfo summaryInfo; SummaryInfo summaryInfo;
QSet<QDate> noDaysInPeriod;
QString alternatingColor(int& counter) { QString alternatingColor(int& counter) {
counter++; counter++;
int offset = counter %= 3; int offset = counter %= 3;
@ -773,11 +772,14 @@ Statistics::Statistics(QObject *parent) :
rows.push_back(StatisticsRow("IPAPSet", SC_MIN, MT_CPAP)); rows.push_back(StatisticsRow("IPAPSet", SC_MIN, MT_CPAP));
rows.push_back(StatisticsRow("IPAPSet", SC_MAX, MT_CPAP)); rows.push_back(StatisticsRow("IPAPSet", SC_MAX, MT_CPAP));
rows.push_back(StatisticsRow("", SC_HEADING, MT_OXIMETER)); // Just adds some space rows.push_back(StatisticsRow("", SC_SPACE, MT_OXIMETER)); // Just adds some space
rows.push_back(StatisticsRow(tr("Oximeter Statistics"), SC_HEADING, MT_OXIMETER)); rows.push_back(StatisticsRow(tr("Oximeter Statistics"), SC_HEADING, MT_OXIMETER));
rows.push_back(StatisticsRow("", SC_DAYS, MT_OXIMETER)); rows.push_back(StatisticsRow("", SC_DAYS, MT_OXIMETER));
rows.push_back(StatisticsRow("", SC_COLUMNHEADERS, MT_OXIMETER)); rows.push_back(StatisticsRow("", SC_COLUMNHEADERS, MT_OXIMETER));
rows.push_back(StatisticsRow(tr("Oximeter Usage"), SC_SUBHEADING, MT_CPAP));
rows.push_back(StatisticsRow(tr("Total Days"), SC_TOTAL_DAYS , MT_OXIMETER));
rows.push_back(StatisticsRow(tr("Used Days"), SC_DAYS_W_DATA , MT_OXIMETER));
rows.push_back(StatisticsRow(tr("Blood Oxygen Saturation"), SC_SUBHEADING, MT_CPAP)); rows.push_back(StatisticsRow(tr("Blood Oxygen Saturation"), SC_SUBHEADING, MT_CPAP));
rows.push_back(StatisticsRow("SPO2", SC_WAVG, MT_OXIMETER)); rows.push_back(StatisticsRow("SPO2", SC_WAVG, MT_OXIMETER));
rows.push_back(StatisticsRow("SPO2", SC_MIN, MT_OXIMETER)); rows.push_back(StatisticsRow("SPO2", SC_MIN, MT_OXIMETER));
@ -1345,7 +1347,6 @@ QString Statistics::GenerateCPAPUsage()
// Compute number of monthly periods for a monthly rather than standard time distribution // Compute number of monthly periods for a monthly rather than standard time distribution
int number_periods = 0; int number_periods = 0;
noDaysInPeriod.clear();
if (p_profile->general->statReportMode() == STAT_MODE_MONTHLY) { if (p_profile->general->statReportMode() == STAT_MODE_MONTHLY) {
QDate startMonth = lastcpap.addMonths(-12); QDate startMonth = lastcpap.addMonths(-12);
// Go to the the start of the next months // Go to the the start of the next months
@ -1368,7 +1369,6 @@ QString Statistics::GenerateCPAPUsage()
firstcpap = lastcpap.addYears(-1).addDays(1); firstcpap = lastcpap.addYears(-1).addDays(1);
adjustRange(firstcpap,lastcpap); adjustRange(firstcpap,lastcpap);
} }
QDate last = lastcpap, first = lastcpap; QDate last = lastcpap, first = lastcpap;
QList<Period> periods; QList<Period> periods;
@ -1514,6 +1514,11 @@ QString Statistics::GenerateCPAPUsage()
html+=QString("<tr><td colspan=%1 align=center>%2</th></tr>"). html+=QString("<tr><td colspan=%1 align=center>%2</th></tr>").
arg(periods.size()+1).arg(text); arg(periods.size()+1).arg(text);
continue; continue;
} else if (row.calc == SC_SPACE) {
// if (CPAP HAS rows and OXI has rows then add space
html+=QString("<tr bgcolor='%1'><th colspan=%2 align=center><font size='+2'>%3</font></th></tr>").
arg(heading_color).arg(periods.size()+1).arg(row.src);
continue;
} else { } else {
ChannelID id = schema::channel[row.src].id(); ChannelID id = schema::channel[row.src].id();
if ((id == NoChannel) || (!p_profile->channelAvailable(id))) { if ((id == NoChannel) || (!p_profile->channelAvailable(id))) {
@ -1536,7 +1541,6 @@ QString Statistics::GenerateCPAPUsage()
} }
QString bgColor = alternatingColor(alternatingColorCounter); QString bgColor = alternatingColor(alternatingColorCounter);
line += QString("<tr class=datarow bgcolor='%3'><td width='%1%'>%2</td>").arg(headerWidth).arg(name).arg(bgColor); line += QString("<tr class=datarow bgcolor='%3'><td width='%1%'>%2</td>").arg(headerWidth).arg(name).arg(bgColor);
//line += QString("<tr class=datarow><td width='%1%'>%2</td>").arg(headerWidth).arg(name);
for (int j=0; j < np; j++) { for (int j=0; j < np; j++) {
width = j < np-1 ? dataWidth : 100 - (headerWidth + dataWidth*(np-1)); width = j < np-1 ? dataWidth : 100 - (headerWidth + dataWidth*(np-1));
line += QString("<td width='%1%'>").arg(width); line += QString("<td width='%1%'>").arg(width);
@ -1938,7 +1942,6 @@ QString Statistics::UpdateRecordsBox()
QString StatisticsRow::value(QDate start, QDate end) QString StatisticsRow::value(QDate start, QDate end)
{ {
if (noDaysInPeriod.contains(start) ) return "-";
const int decimals=2; const int decimals=2;
QString value; QString value;
float days = p_profile->countDays(type, start, end); float days = p_profile->countDays(type, start, end);
@ -1975,12 +1978,10 @@ QString StatisticsRow::value(QDate start, QDate end)
} else if (calc == SC_DAYS_W_DATA) { } else if (calc == SC_DAYS_W_DATA) {
int daysUsed = p_profile->countDays(type, start, end); int daysUsed = p_profile->countDays(type, start, end);
value = QString::number(daysUsed); value = QString::number(daysUsed);
if (daysUsed==0) { return value; // always display days used.
noDaysInPeriod.insert(start);
return value;
};
} else if (calc == SC_TOTAL_DAYS) { } else if (calc == SC_TOTAL_DAYS) {
value = QString::number(1+start.daysTo(end)); value = QString::number(1+start.daysTo(end));
return value; // always display total days
} else if (calc == SC_DAYS_LT_COMPLAINCE_HOURS) { } else if (calc == SC_DAYS_LT_COMPLAINCE_HOURS) {
int daysUsed = p_profile->countDays(type, start, end); int daysUsed = p_profile->countDays(type, start, end);
int value1 = ( daysUsed - p_profile->countCompliantDays(type, start, end ) ); int value1 = ( daysUsed - p_profile->countCompliantDays(type, start, end ) );
@ -2058,7 +2059,10 @@ QString StatisticsRow::value(QDate start, QDate end)
value = fmt.arg(val, 0, 'f', decimals); value = fmt.arg(val, 0, 'f', decimals);
} }
} }
if (value.contains("nan",Qt::CaseInsensitive) ) value='-'; if ( (p_profile->countDays(type, start, end) == 0) ||
(value.contains("nan",Qt::CaseInsensitive) ) ) {
value='-';
}
return value; return value;
} }

View File

@ -65,7 +65,7 @@ public:
//! \brief Type of calculation on one statistics row //! \brief Type of calculation on one statistics row
enum StatCalcType { enum StatCalcType {
SC_UNDEFINED=0, SC_COLUMNHEADERS, SC_HEADING, SC_SUBHEADING, SC_MEDIAN, SC_AVG, SC_WAVG, SC_90P, SC_MIN, SC_MAX, SC_CPH, SC_SPH, SC_AHI_RDI , SC_HOURS, SC_TOTAL_DAYS_PERCENT, SC_DAYS, SC_ABOVE, SC_BELOW , SC_WARNING , SC_MESSAGE , SC_UNDEFINED=0, SC_COLUMNHEADERS, SC_HEADING, SC_SUBHEADING, SC_MEDIAN, SC_AVG, SC_WAVG, SC_90P, SC_MIN, SC_MAX, SC_CPH, SC_SPH, SC_AHI_RDI , SC_HOURS, SC_TOTAL_DAYS_PERCENT, SC_DAYS, SC_ABOVE, SC_BELOW , SC_WARNING , SC_MESSAGE ,
SC_TOTAL_DAYS , SC_DAYS_W_DATA , SC_DAYS_WO_DATA , SC_DAYS_GE_COMPLIANCE_HOURS , SC_USED_DAY_PERCENT , SC_DAYS_LT_COMPLAINCE_HOURS , SC_MEDIAN_HOURS , SC_MEDIAN_AHI , SC_AHI_ONLY SC_TOTAL_DAYS , SC_DAYS_W_DATA , SC_DAYS_WO_DATA , SC_DAYS_GE_COMPLIANCE_HOURS , SC_USED_DAY_PERCENT , SC_DAYS_LT_COMPLAINCE_HOURS , SC_MEDIAN_HOURS , SC_MEDIAN_AHI , SC_AHI_ONLY , SC_SPACE
}; };
/*! \struct StatisticsRow /*! \struct StatisticsRow
@ -117,6 +117,7 @@ struct StatisticsRow {
return SC_AHI_RDI; return SC_AHI_RDI;
} else if (calc.compare("hours", Qt::CaseInsensitive)==0) { } else if (calc.compare("hours", Qt::CaseInsensitive)==0) {
return SC_HOURS; return SC_HOURS;
#if 0
} else if (calc.compare("compliance", Qt::CaseInsensitive)==0) { } else if (calc.compare("compliance", Qt::CaseInsensitive)==0) {
return SC_TOTAL_DAYS_PERCENT; return SC_TOTAL_DAYS_PERCENT;
} else if (calc.compare("days", Qt::CaseInsensitive)==0) { } else if (calc.compare("days", Qt::CaseInsensitive)==0) {
@ -125,6 +126,7 @@ struct StatisticsRow {
return SC_HEADING; return SC_HEADING;
} else if (calc.compare("subheading", Qt::CaseInsensitive)==0) { } else if (calc.compare("subheading", Qt::CaseInsensitive)==0) {
return SC_SUBHEADING; return SC_SUBHEADING;
#endif
} }
return SC_UNDEFINED; return SC_UNDEFINED;
} }