mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 18:20:42 +00:00
Warning message when no cpap data and validate oximeter data
This commit is contained in:
parent
89eec381c8
commit
0334dd792b
@ -1114,6 +1114,7 @@ QString Daily::getSessionInformation(Day * day)
|
|||||||
|
|
||||||
QString Daily::getMachineSettings(Day * day) {
|
QString Daily::getMachineSettings(Day * day) {
|
||||||
QString html;
|
QString html;
|
||||||
|
|
||||||
Machine * cpap = day->machine(MT_CPAP);
|
Machine * cpap = day->machine(MT_CPAP);
|
||||||
if (cpap && day->hasEnabledSessions(MT_CPAP)) {
|
if (cpap && day->hasEnabledSessions(MT_CPAP)) {
|
||||||
CPAPLoader * loader = qobject_cast<CPAPLoader *>(cpap->loader());
|
CPAPLoader * loader = qobject_cast<CPAPLoader *>(cpap->loader());
|
||||||
@ -1821,7 +1822,6 @@ void Daily::Load(QDate date)
|
|||||||
mode=(CPAPMode)(int)day->settings_max(CPAP_Mode);
|
mode=(CPAPMode)(int)day->settings_max(CPAP_Mode);
|
||||||
|
|
||||||
modestr=schema::channel[CPAP_Mode].m_options[mode];
|
modestr=schema::channel[CPAP_Mode].m_options[mode];
|
||||||
|
|
||||||
if (hours>0) {
|
if (hours>0) {
|
||||||
htmlLeftAHI= getAHI(day,isBrick);
|
htmlLeftAHI= getAHI(day,isBrick);
|
||||||
|
|
||||||
@ -1861,16 +1861,34 @@ void Daily::Load(QDate date)
|
|||||||
htmlLeftNoHours+="</table><hr/>\n";
|
htmlLeftNoHours+="</table><hr/>\n";
|
||||||
}
|
}
|
||||||
|
|
||||||
} // if (!CPAP)
|
} else { // if (!CPAP)
|
||||||
else htmlLeftSleepTime = getSleepTime(day);
|
|
||||||
|
htmlLeftSleepTime = getSleepTime(day);
|
||||||
|
}
|
||||||
|
if (day) {
|
||||||
|
htmlLeftOximeter = getOximeterInformation(day);
|
||||||
|
htmlLeftMachineSettings = getMachineSettings(day);
|
||||||
|
htmlLeftSessionInfo= getSessionInformation(day);
|
||||||
|
}
|
||||||
|
|
||||||
if ((cpap && !isBrick && (day->hours()>0)) || oxi || posit) {
|
if ((cpap && !isBrick && (day->hours()>0)) || oxi || posit) {
|
||||||
|
|
||||||
|
if ( (!cpap) && (!isBrick) ) {
|
||||||
|
// add message when there is no cpap data but there exists oximeter data.
|
||||||
|
QString msg = tr("No CPAP data is available for this day");
|
||||||
|
QString beg = "<table cellspacing=0 cellpadding=0 border=0 width='100%'>"
|
||||||
|
"<tr><td colspan=5 bgcolor='#89abcd' align=center><p title=''> <b><font size=+0 color=white>";
|
||||||
|
htmlLeftAHI = QString("%1 %2 </b></td></tr></table>").arg(beg).arg(msg);
|
||||||
|
}
|
||||||
|
|
||||||
htmlLeftStatistics = getStatisticsInfo(day);
|
htmlLeftStatistics = getStatisticsInfo(day);
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
if (cpap && day->hours(MT_CPAP)<0.0000001) {
|
if (cpap && day->hours(MT_CPAP)<0.0000001) {
|
||||||
} else if (!isBrick) {
|
} else if (!isBrick) {
|
||||||
|
htmlLeftAHI.clear(); // clear AHI (no cpap data) msg when there is no oximeter data
|
||||||
|
htmlLeftSessionInfo.clear(); // clear session info
|
||||||
|
|
||||||
htmlLeftStatistics ="<table cellspacing=0 cellpadding=0 border=0 height=100% width=100%>";
|
htmlLeftStatistics ="<table cellspacing=0 cellpadding=0 border=0 height=100% width=100%>";
|
||||||
htmlLeftStatistics+="<tr height=25%><td align=center></td></tr>";
|
htmlLeftStatistics+="<tr height=25%><td align=center></td></tr>";
|
||||||
htmlLeftStatistics+="<tr><td align=center><font size='+3'>"+tr("\"Nothing's here!\"")+"</font></td></tr>";
|
htmlLeftStatistics+="<tr><td align=center><font size='+3'>"+tr("\"Nothing's here!\"")+"</font></td></tr>";
|
||||||
@ -1882,11 +1900,6 @@ void Daily::Load(QDate date)
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
if (day) {
|
|
||||||
htmlLeftOximeter = getOximeterInformation(day);
|
|
||||||
htmlLeftMachineSettings = getMachineSettings(day);
|
|
||||||
htmlLeftSessionInfo= getSessionInformation(day);
|
|
||||||
}
|
|
||||||
|
|
||||||
htmlLeftFooter ="</body></html>";
|
htmlLeftFooter ="</body></html>";
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user