mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-04 18:20:42 +00:00
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:
parent
7d1d1faeb6
commit
d38d2c8404
@ -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>
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user