mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Update summary cache so that purging oximetry persists between launches.
This commit is contained in:
parent
47c97721fb
commit
828d449aa4
@ -2587,16 +2587,19 @@ void MainWindow::on_actionPurgeCurrentDaysOximetry_triggered()
|
|||||||
}
|
}
|
||||||
|
|
||||||
QList<Session *> sessionlist=day->getSessions(MT_OXIMETER);
|
QList<Session *> sessionlist=day->getSessions(MT_OXIMETER);
|
||||||
|
QSet<Machine *> machines;
|
||||||
|
|
||||||
for (auto & sess : sessionlist) {
|
for (auto & sess : sessionlist) {
|
||||||
|
machines += sess->machine();
|
||||||
sess->Destroy();
|
sess->Destroy();
|
||||||
delete sess;
|
delete sess;
|
||||||
}
|
}
|
||||||
// TODO: Fix this. It deletes the underlying session data file in the machine,
|
|
||||||
// but not from the machine's summary cache. This results in future launches
|
// We have to update the summary cache for the affected machine(s),
|
||||||
// of OSCAR thinking the day has oximetry data, but then it isn't really there.
|
// otherwise OSCAR will still think this day has oximetry data at next launch.
|
||||||
// Currently this is only useful for reimporting a single day, which the purge
|
for (auto & mach : machines) {
|
||||||
// permits, and which in turn creates a new data file for that day.
|
mach->SaveSummaryCache();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
if (daily) {
|
if (daily) {
|
||||||
|
Loading…
Reference in New Issue
Block a user