@@ -, +, @@ hold - Apply the patch - Create hold for a record, define pickup branch different than your current branch. - Check in an item from your branch. - Click 'Print slip, transfer, and confirm' - See that the slip is TRANSFERSLIP - Change your branch same as hold's pickup branch - Check in the item again. - Click 'Print slip and confirm' - See that the slip is now HOLD_SLIP --- installer/data/mysql/en/mandatory/sample_notices.sql | 2 +- koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) --- a/installer/data/mysql/en/mandatory/sample_notices.sql +++ a/installer/data/mysql/en/mandatory/sample_notices.sql @@ -107,7 +107,7 @@ Date due: <>
', 1), ('circulation','HOLD_SLIP','Hold Slip','Hold Slip', '
Date: <>
-

Transfer to/Hold in <>

+

Hold in <>

<>, <>

--- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tt @@ -501,7 +501,7 @@ - [% ELSE %] @@ -894,6 +894,10 @@ Dopop('hold-transfer-slip.pl?borrowernumber=[% patron.borrowernumber | html %]&biblionumber=[% biblionumber | html %]'); }); + $(".print-transfer-slip").on('click', function(e) { + Dopop('transfer-slip.pl?transferitem=[% itemnumber | html %]&&branchcode=[% destbranch | html %]&op=slip'); + }); + [% IF print_slip %] Dopop('hold-transfer-slip.pl?borrowernumber=[% borrowernumber | html %]&biblionumber=[% biblionumber | html %]&itemnumber=[% itemnumber | html %]'); [% END %] --