mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 19:20:45 +00:00
Fix maskon/off vs session count comparison for deciding when to re-import a day
This commit is contained in:
parent
7c350068e0
commit
8f3971cb09
@ -719,13 +719,20 @@ void ResmedLoader::checkSummaryDay( ResMedDay & resday, QDate date, Machine * ma
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "Have summary and details for this date!";
|
qDebug() << "Have summary and details for this date!";
|
||||||
if (day->size() == (resday.str.maskevents/2) ) {
|
QList<Session *> sessions = day->getSessions(MT_CPAP, true);
|
||||||
qDebug() << "No new sessions -- skipping";
|
if (sessions.length() == (resday.str.maskevents/2) ) {
|
||||||
|
qDebug() << "No new sessions -- skipping. Sessions now in day:";
|
||||||
|
qDebug() << " i sessionID s_first from - to";
|
||||||
|
for (int i=0; i < sessions.length(); i++) {
|
||||||
|
qDebug().noquote() << i << sessions[i]->session()
|
||||||
|
<< sessions[i]->first()
|
||||||
|
<< QDateTime::fromMSecsSinceEpoch(sessions[i]->first()).toString(" hh:mm:ss")
|
||||||
|
<< "-" << QDateTime::fromMSecsSinceEpoch(sessions[i]->last()).toString("hh:mm:ss");
|
||||||
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
qDebug() << "Maskevent count" << resday.str.maskevents << "is not twice the existing session count" << day->size();
|
qDebug() << "Maskevent count" << resday.str.maskevents << "is not twice the existing session count" << day->size();
|
||||||
qDebug() << "Clean the day and re-import it";
|
qDebug() << "Clean the day and re-import it";
|
||||||
QList<Session *> sessions = day->getSessions(MT_CPAP);
|
|
||||||
for (auto & sess : sessions) {
|
for (auto & sess : sessions) {
|
||||||
day->removeSession(sess);
|
day->removeSession(sess);
|
||||||
delete sess;
|
delete sess;
|
||||||
|
Loading…
Reference in New Issue
Block a user