diff --git a/oscar/daily.cpp b/oscar/daily.cpp index 871b1239..0082376c 100644 --- a/oscar/daily.cpp +++ b/oscar/daily.cpp @@ -1114,6 +1114,7 @@ QString Daily::getSessionInformation(Day * day) QString Daily::getMachineSettings(Day * day) { QString html; + Machine * cpap = day->machine(MT_CPAP); if (cpap && day->hasEnabledSessions(MT_CPAP)) { CPAPLoader * loader = qobject_cast(cpap->loader()); @@ -1821,7 +1822,6 @@ void Daily::Load(QDate date) mode=(CPAPMode)(int)day->settings_max(CPAP_Mode); modestr=schema::channel[CPAP_Mode].m_options[mode]; - if (hours>0) { htmlLeftAHI= getAHI(day,isBrick); @@ -1861,16 +1861,34 @@ void Daily::Load(QDate date) htmlLeftNoHours+="
\n"; } - } // if (!CPAP) - else htmlLeftSleepTime = getSleepTime(day); + } else { // if (!CPAP) + + 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) ) { + // 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 = "" + "

  "; + htmlLeftAHI = QString("%1 %2

").arg(beg).arg(msg); + } + htmlLeftStatistics = getStatisticsInfo(day); } else { if (cpap && day->hours(MT_CPAP)<0.0000001) { } else if (!isBrick) { + htmlLeftAHI.clear(); // clear AHI (no cpap data) msg when there is no oximeter data + htmlLeftSessionInfo.clear(); // clear session info + htmlLeftStatistics =""; htmlLeftStatistics+=""; htmlLeftStatistics+=""; @@ -1882,11 +1900,6 @@ void Daily::Load(QDate date) } } - if (day) { - htmlLeftOximeter = getOximeterInformation(day); - htmlLeftMachineSettings = getMachineSettings(day); - htmlLeftSessionInfo= getSessionInformation(day); - } htmlLeftFooter ="";
"+tr("\"Nothing's here!\"")+"