From f732852b740fd97b59e34d4470ceb40a6c0535eb Mon Sep 17 00:00:00 2001 From: Fred Gleason Date: Thu, 3 Aug 2023 13:39:43 -0400 Subject: [PATCH] 2023-08-03 Fred Gleason * Fixed a regression in rdlogmanager(1) that caused records to be omitted from reports using the 'CBSI DeltaFlex Traffic Reconciliation v2.01' export filter. Signed-off-by: Fred Gleason --- ChangeLog | 4 ++++ lib/export_deltaflex.cpp | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 29a02d10..e650a9b4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -24314,3 +24314,7 @@ 2023-08-02 Fred Gleason * Changed the tree view widget on the main window of rdcastmananger(1) to be a table view. +2023-08-03 Fred Gleason + * Fixed a regression in rdlogmanager(1) that caused records to be + omitted from reports using the 'CBSI DeltaFlex Traffic Reconciliation + v2.01' export filter. diff --git a/lib/export_deltaflex.cpp b/lib/export_deltaflex.cpp index 915c9fd8..d3dc199a 100644 --- a/lib/export_deltaflex.cpp +++ b/lib/export_deltaflex.cpp @@ -69,7 +69,7 @@ bool RDReport::ExportDeltaflex(const QString &filename,const QDate &startdate, "`ELR_LINES`.`EXT_CART_NAME` "+ // 10 "from `ELR_LINES` left join `CART` "+ "on `ELR_LINES`.`CART_NUMBER`=`CART`.`NUMBER` where "+ - "`ELR_LINES`.`SERVICE_NAME`=`"+RDEscapeString(mixtable)+"` "+ + "`ELR_LINES`.`SERVICE_NAME`='"+RDEscapeString(mixtable)+"' "+ "order by EVENT_DATETIME"; q=new RDSqlQuery(sql);