mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Fix for Daily export trashing open records, plus added progress bar to export process
This commit is contained in:
parent
d6615d21e3
commit
dc157c2657
1
daily.h
1
daily.h
@ -42,6 +42,7 @@ public:
|
|||||||
gGraphView *SharedWidget() { return GraphView; }
|
gGraphView *SharedWidget() { return GraphView; }
|
||||||
void RedrawGraphs();
|
void RedrawGraphs();
|
||||||
void LoadDate(QDate date);
|
void LoadDate(QDate date);
|
||||||
|
QDate getDate() { return previous_date; }
|
||||||
private slots:
|
private slots:
|
||||||
|
|
||||||
void on_calendar_currentPageChanged(int year, int month);
|
void on_calendar_currentPageChanged(int year, int month);
|
||||||
|
@ -7,6 +7,9 @@
|
|||||||
#include "SleepLib/day.h"
|
#include "SleepLib/day.h"
|
||||||
#include "exportcsv.h"
|
#include "exportcsv.h"
|
||||||
#include "ui_exportcsv.h"
|
#include "ui_exportcsv.h"
|
||||||
|
#include "mainwindow.h"
|
||||||
|
|
||||||
|
extern MainWindow *mainwin;
|
||||||
|
|
||||||
ExportCSV::ExportCSV(QWidget *parent) :
|
ExportCSV::ExportCSV(QWidget *parent) :
|
||||||
QDialog(parent),
|
QDialog(parent),
|
||||||
@ -160,7 +163,14 @@ void ExportCSV::on_exportButton_clicked()
|
|||||||
header+=newline;
|
header+=newline;
|
||||||
file.write(header.toAscii());
|
file.write(header.toAscii());
|
||||||
QDate date=ui->startDate->date();
|
QDate date=ui->startDate->date();
|
||||||
|
Daily *daily=mainwin->getDaily();
|
||||||
|
QDate daily_date=daily->getDate();
|
||||||
|
|
||||||
|
ui->progressBar->setValue(0);
|
||||||
|
ui->progressBar->setMaximum(PROFILE.daylist.count());
|
||||||
|
|
||||||
do {
|
do {
|
||||||
|
ui->progressBar->setValue(ui->progressBar->value()+1);
|
||||||
Day *day=PROFILE.GetDay(date,MT_CPAP);
|
Day *day=PROFILE.GetDay(date,MT_CPAP);
|
||||||
if (day) {
|
if (day) {
|
||||||
QString data;
|
QString data;
|
||||||
@ -241,7 +251,8 @@ void ExportCSV::on_exportButton_clicked()
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
sess->TrashEvents();
|
if (daily_date!=date)
|
||||||
|
sess->TrashEvents();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -82,7 +82,7 @@
|
|||||||
</property>
|
</property>
|
||||||
</widget>
|
</widget>
|
||||||
</item>
|
</item>
|
||||||
<item row="11" column="0" colspan="2">
|
<item row="12" column="0" colspan="2">
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
<item>
|
<item>
|
||||||
<spacer name="horizontalSpacer">
|
<spacer name="horizontalSpacer">
|
||||||
@ -260,6 +260,13 @@
|
|||||||
</property>
|
</property>
|
||||||
</spacer>
|
</spacer>
|
||||||
</item>
|
</item>
|
||||||
|
<item row="11" column="0" colspan="2">
|
||||||
|
<widget class="QProgressBar" name="progressBar">
|
||||||
|
<property name="value">
|
||||||
|
<number>24</number>
|
||||||
|
</property>
|
||||||
|
</widget>
|
||||||
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
<resources/>
|
<resources/>
|
||||||
|
Loading…
Reference in New Issue
Block a user