mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
day one issue. Duplicate sessions start/end time listed in event tab when there are bookmark or notes. Also add debug info
This commit is contained in:
parent
d1504bb644
commit
95981dc3a3
@ -7,6 +7,9 @@
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
* for more details. */
|
||||
|
||||
#define TEST_MACROS_ENABLEDoff
|
||||
#include <test_macros.h>
|
||||
|
||||
#include <QMultiMap>
|
||||
|
||||
#include <algorithm>
|
||||
|
@ -6,6 +6,9 @@
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
* for more details. */
|
||||
|
||||
#define TEST_MACROS_ENABLEDoff
|
||||
#include <test_macros.h>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QMessageBox>
|
||||
|
||||
|
@ -7,6 +7,9 @@
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
* for more details. */
|
||||
|
||||
#define TEST_MACROS_ENABLEDoff
|
||||
#include <test_macros.h>
|
||||
|
||||
#include "journal.h"
|
||||
#include "machine_common.h"
|
||||
#include <QDomDocument>
|
||||
|
@ -7,7 +7,7 @@
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
* for more details. */
|
||||
|
||||
#define TEST_MACROS_ENABLED
|
||||
#define TEST_MACROS_ENABLEDoff
|
||||
#include <test_macros.h>
|
||||
|
||||
#include <QApplication>
|
||||
|
@ -7,6 +7,9 @@
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
* for more details. */
|
||||
|
||||
#define TEST_MACROS_ENABLEDoff
|
||||
#include <test_macros.h>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QDir>
|
||||
#include <QDebug>
|
||||
@ -414,7 +417,6 @@ bool Machine::AddSession(Session *s, bool allowOldSessions)
|
||||
dit = day.insert(date, profile->addDay(date));
|
||||
}
|
||||
dd = dit.value();
|
||||
|
||||
dd->addSession(s);
|
||||
|
||||
if (combine_next_day) {
|
||||
|
@ -7,6 +7,9 @@
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
* for more details. */
|
||||
|
||||
#define TEST_MACROS_ENABLEDoff
|
||||
#include <test_macros.h>
|
||||
|
||||
#include <QApplication>
|
||||
#include <QFile>
|
||||
#include <QDir>
|
||||
|
@ -8,6 +8,9 @@
|
||||
* License. See the file COPYING in the main directory of the source code
|
||||
* for more details. */
|
||||
|
||||
#define TEST_MACROS_ENABLEDoff
|
||||
#include <test_macros.h>
|
||||
|
||||
#include "session.h"
|
||||
#include "version.h"
|
||||
#include <cmath>
|
||||
|
@ -837,16 +837,17 @@ void Daily::UpdateEventsTree(QTreeWidget *tree,Day *day)
|
||||
tree->insertTopLevelItem(cnt++ , start);
|
||||
tree->insertTopLevelItem(cnt++ , end);
|
||||
for (QList<Session *>::iterator s=day->begin(); s!=day->end(); ++s) {
|
||||
QDateTime st = QDateTime::fromMSecsSinceEpoch((*s)->first()); // Localtime
|
||||
QDateTime et = QDateTime::fromMSecsSinceEpoch((*s)->last()); // Localtime
|
||||
Session* sess = *s;
|
||||
if ( (sess->type() != MT_CPAP) && (sess->type() != MT_OXIMETER) && (sess->type() != MT_POSITION)) continue;
|
||||
QDateTime st = QDateTime::fromMSecsSinceEpoch(sess->first()); // Localtime
|
||||
QDateTime et = QDateTime::fromMSecsSinceEpoch(sess->last()); // Localtime
|
||||
|
||||
QTreeWidgetItem * item = new QTreeWidgetItem(QStringList(st.toString("HH:mm:ss")));
|
||||
item->setData(0,Qt::UserRole, (*s)->first());
|
||||
item->setData(0,Qt::UserRole, sess->first());
|
||||
start->addChild(item);
|
||||
|
||||
|
||||
item = new QTreeWidgetItem(QStringList(et.toString("HH:mm:ss")));
|
||||
item->setData(0,Qt::UserRole, (*s)->last());
|
||||
item->setData(0,Qt::UserRole, sess->last());
|
||||
end->addChild(item);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user