Fixes #333: ExportCSV now exports statistics data on Session export properly

Previously, it was exporting statistics only for days that had been
  viewed on the Daily page because it was not loading event data before
  computing the statistics, resulting in values of 0.0 instead of correct values.
This commit is contained in:
Guy Scharf 2022-02-02 11:27:39 -07:00
parent 7d1d1faeb6
commit d38d2c8404
2 changed files with 2 additions and 0 deletions

View File

@ -20,6 +20,7 @@
<li>DreamStation 2 Auto CPAP Advanced (520X110C, 520X150C)</li>
</ul>
</li>
<li>[fix] File Export Sessions now exports statistics session data properly.</li>
<li>[new] Test Mantis integration.</li>
</ul>
<p>

View File

@ -292,6 +292,7 @@ void ExportCSV::on_exportButton_clicked()
QDateTime start = QDateTime::fromTime_t(sess->first() / 1000L);
QDateTime end = QDateTime::fromTime_t(sess->last() / 1000L);
sess->OpenEvents();
data = date.toString(Qt::ISODate);
data += sep + QString::number(sess->session(), 10);
data += sep + start.toString(Qt::ISODate);