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:
LoudSnorer 2023-03-18 19:37:13 -04:00
parent d1504bb644
commit 95981dc3a3
8 changed files with 25 additions and 7 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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) {

View File

@ -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>

View File

@ -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>

View File

@ -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);
}
}