From a4760c63bf75ffd29636b9c0a18ae7f57dfdf675 Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 27 Oct 2021 21:58:44 +0000 Subject: [PATCH] Bug 29338: Add print hold/transfer button to request.tt 1. Apply patch 2. Make some holds, have some item level and some bib level 3. On request.tt notice a new column on the holds_table called 'Print hold/transfer slip' 4. Make sure the button works and takes you to the proper hold/transfer slip 5. Make sure it works well with both item/bib level holds Signed-off-by: Sally --- koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc | 2 ++ koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc index be1f6458ca..2ad46b0819 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc @@ -21,6 +21,7 @@ [% END %]     + Print hold/transfer slip [%- SET first_priority = 0 -%] [%- SET found_holds = 0 -%] @@ -221,6 +222,7 @@ [%- END -%] + [% END %] diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt index 306b8eaca0..068cbb8d38 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -1607,6 +1607,11 @@ }); }); + $('.printholdslip').click(function(){ + var reserve_id = $(this).attr('data-reserve_id'); + window.open("/cgi-bin/koha/circ/hold-transfer-slip.pl?reserve_id=" + reserve_id); + return false; + }) [% END %] -- 2.30.2