From 6c040abf83fb367e4443fcd69919a65bd188848f Mon Sep 17 00:00:00 2001 From: James Staub Date: Thu, 11 Jul 2024 16:04:50 -0500 Subject: [PATCH] Nashville: Adds item-level holds to Holds Report --- code/web/Drivers/Nashville.php | 68 ++++++++++++++++++++++++------ code/web/release_notes/24.08.00.MD | 2 + 2 files changed, 57 insertions(+), 13 deletions(-) diff --git a/code/web/Drivers/Nashville.php b/code/web/Drivers/Nashville.php index e990cb6181..5f4c790377 100644 --- a/code/web/Drivers/Nashville.php +++ b/code/web/Drivers/Nashville.php @@ -466,6 +466,7 @@ public function getCollectionReportData($location, $date): array { public function getHoldsReportData($location): array { $this->initDatabaseConnection(); $sql = <<dbConnection, $sql); // consider using oci_set_prefetch to improve performance diff --git a/code/web/release_notes/24.08.00.MD b/code/web/release_notes/24.08.00.MD index 950cbd63cb..0d3b4d43f9 100644 --- a/code/web/release_notes/24.08.00.MD +++ b/code/web/release_notes/24.08.00.MD @@ -19,6 +19,8 @@ // lucas // James Staub +### Reports +- Nashville-specific: Circulation Holds Report now includes item-level holds (*JStaub*) // other