From 6500caa34b52361c224fa92557ffd93250bef8f8 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 --- 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 516b04f322..da7edb9108 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 -%] @@ -210,6 +211,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 a6d269f71f..891c4d029d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/reserve/request.tt @@ -1644,6 +1644,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.20.1