From ddddb9b6f1897abf8081007cda62174bc54a928a Mon Sep 17 00:00:00 2001 From: Nick Clemens Date: Wed, 25 Jan 2017 17:00:34 +0000 Subject: [PATCH] Bug 17995 - HOLDPLACED notice should have access to the reserves table To test: 1 - Add reserves.reservenotes to HOLDPLACED message 2 - Enable emailLibrarianWhenHoldIsPlaced OpacHoldNotes sysprefs 3 - Place a hold via OPAC with a note 4 - view the messagequeue and note the reservenotes is blank 5 - Apply patch 6 - Place a hold with a note 7 - view the messagequeue and note the reservenotes is populated --- C4/Reserves.pm | 2 ++ 1 file changed, 2 insertions(+) diff --git a/C4/Reserves.pm b/C4/Reserves.pm index 3f124a6..248fa80 100644 --- a/C4/Reserves.pm +++ b/C4/Reserves.pm @@ -165,6 +165,7 @@ The following tables are available witin the HOLDPLACED message: biblio biblioitems items + reserves =cut @@ -238,6 +239,7 @@ sub AddReserve { 'biblio' => $biblionumber, 'biblioitems' => $biblionumber, 'items' => $checkitem, + 'reserves' => $hold->unblessed, }, ) ) { -- 2.1.4