From 8fe3bfa7ba1f9332fb848b59fc8862ac4467ed15 Mon Sep 17 00:00:00 2001 From: Barton Chittenden Date: Thu, 9 Jul 2015 13:23:49 -0700 Subject: [PATCH] [SIGNED-OFF] Bug 14515: Add biblioitems to messages in C4/Reserves.pm http://bugs.koha-community.org/show_bug.cgi?id=14515 Signed-off-by: Danielle Aloia --- C4/Reserves.pm | 60 +++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 51 insertions(+), 9 deletions(-) diff --git a/C4/Reserves.pm b/C4/Reserves.pm index 80ebf0a..1f4af7c 100644 --- a/C4/Reserves.pm +++ b/C4/Reserves.pm @@ -147,6 +147,16 @@ BEGIN { AddReserve($branch,$borrowernumber,$biblionumber,$bibitems,$priority,$resdate,$expdate,$notes,$title,$checkitem,$found) +Adds reserve and generates HOLDPLACED message. + +The following tables are available witin the HOLDPLACED message: + + branches + borrowers + biblio + biblioitems + items + =cut sub AddReserve { @@ -204,10 +214,11 @@ sub AddReserve { letter_code => 'HOLDPLACED', branchcode => $branch, tables => { - 'branches' => $branch_details, - 'borrowers' => $borrower, - 'biblio' => $biblionumber, - 'items' => $checkitem, + 'branches' => $branch_details, + 'borrowers' => $borrower, + 'biblio' => $biblionumber, + 'biblioitems' => $biblionumber, + 'items' => $checkitem, }, ) ) { @@ -1922,6 +1933,25 @@ sub _Findgroupreserve { Sends a notification to the patron that their hold has been filled (through ModReserveAffect, _not_ ModReserveFill) +The letter code for this notice may be found using the following query: + + select distinct letter_code + from message_transports + inner join message_attributes using (message_attribute_id) + where message_name = 'Hold_Filled' + +This will probably sipmly be 'HOLD', but because it is defined in the database, +it is subject to addition or change. + +The following tables are availalbe witin the notice: + + branches + borrowers + biblio + biblioitems + reserves + items + =cut sub _koha_notify_reserve { @@ -1954,10 +1984,11 @@ sub _koha_notify_reserve { module => 'reserves', branchcode => $reserve->{branchcode}, tables => { - 'branches' => $branch_details, - 'borrowers' => $borrower, - 'biblio' => $biblionumber, - 'reserves' => $reserve, + 'branches' => $branch_details, + 'borrowers' => $borrower, + 'biblio' => $biblionumber, + 'biblioitems' => $biblionumber, + 'reserves' => $reserve, 'items', $reserve->{'itemnumber'}, }, substitute => { today => C4::Dates->new()->output() }, @@ -2291,7 +2322,17 @@ sub GetReserveId { ReserveSlip($branchcode, $borrowernumber, $biblionumber) - Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef +Returns letter hash ( see C4::Letters::GetPreparedLetter ) or undef + +The letter code will be RESERVESLIP, and the following tables are +available within the slip: + + reserves + branches + borrowers + biblio + biblioitems + items =cut @@ -2315,6 +2356,7 @@ sub ReserveSlip { 'branches' => $reserve->{branchcode}, 'borrowers' => $reserve->{borrowernumber}, 'biblio' => $reserve->{biblionumber}, + 'biblioitems' => $reserve->{biblionumber}, 'items' => $reserve->{itemnumber}, }, ); -- 1.7.10.4