Format cmH2O properly in machine settings on Daily page. Needed only for ResMed and because formatted data is saved in database at original import.

This commit is contained in:
Seeker4 2019-05-21 15:12:42 -07:00
parent efc03004a6
commit 7fc534f75b

View File

@ -964,12 +964,11 @@ QString Daily::getMachineSettings(Day * day) {
ChannelID cpapmode = loader->CPAPModeChannel(); ChannelID cpapmode = loader->CPAPModeChannel();
schema::Channel & chan = schema::channel[cpapmode]; schema::Channel & chan = schema::channel[cpapmode];
first[cpapmode] = QString("<tr><td><p tiltle='%2'>%1</p></td><td colspan=4>%3</td></tr>") first[cpapmode] = QString("<tr><td><p title='%2'>%1</p></td><td colspan=4>%3</td></tr>")
.arg(chan.label()) .arg(chan.label())
.arg(chan.description()) .arg(chan.description())
.arg(day->getCPAPMode()); .arg(day->getCPAPMode());
if (sess) for (; it != it_end; ++it) { if (sess) for (; it != it_end; ++it) {
ChannelID code = it.key(); ChannelID code = it.key();
@ -991,12 +990,14 @@ QString Daily::getMachineSettings(Day * day) {
data = it.value().toString() + " "+ chan.units(); data = it.value().toString() + " "+ chan.units();
} }
if (code ==0xe202) // Format EPR relief correctly
data = formatRelief(data);
QString tmp = QString("<tr><td><p title='%2'>%1</p></td><td colspan=4>%3</td></tr>") QString tmp = QString("<tr><td><p title='%2'>%1</p></td><td colspan=4>%3</td></tr>")
.arg(schema::channel[code].label()) .arg(schema::channel[code].label())
.arg(schema::channel[code].description()) .arg(schema::channel[code].description())
.arg(data); .arg(data);
if ((code == CPAP_IPAP) if ((code == CPAP_IPAP)
|| (code == CPAP_EPAP) || (code == CPAP_EPAP)
|| (code == CPAP_IPAPHi) || (code == CPAP_IPAPHi)