mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Export only CPAP sessions in the sessions CSV export.
This fixes the mystery sessions that were appearing in CSV exports.
This commit is contained in:
parent
104633b492
commit
1976795cb9
@ -233,7 +233,7 @@ void ExportCSV::on_exportButton_clicked()
|
||||
ui->progressBar->setValue(ui->progressBar->value() + 1);
|
||||
QApplication::processEvents();
|
||||
|
||||
Day *day = p_profile->GetDay(date, MT_CPAP);
|
||||
Day *day = p_profile->GetDay(date, MT_CPAP); // Only export days with CPAP data.
|
||||
|
||||
if (day) {
|
||||
QString data;
|
||||
@ -280,6 +280,9 @@ void ExportCSV::on_exportButton_clicked()
|
||||
} else if (ui->rb1_Sessions->isChecked()) {
|
||||
for (int i = 0; i < day->size(); i++) {
|
||||
Session *sess = (*day)[i];
|
||||
if (sess->type() != MT_CPAP) {
|
||||
continue; // Not every session in a day with CPAP data will be a CPAP session.
|
||||
}
|
||||
QDateTime start = QDateTime::fromTime_t(sess->first() / 1000L);
|
||||
QDateTime end = QDateTime::fromTime_t(sess->last() / 1000L);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user