@@ -, +, @@ columns 1) Make a few holds and head over to "Circulations->Holds to pull". 2) Ensure that pickup place and earliest hold date are 3) Apply the patch. 4) Check "Circulations->Holds to pull list" again, this time --- .../prog/en/modules/circ/pendingreserves.tt | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -64,6 +64,7 @@ Available item types Available locations Earliest hold date + Pickup location Action @@ -157,7 +158,10 @@ - [% hold.reservedate | $KohaDates %] in [% Branches.GetName ( hold.branchcode ) | html %] + [% hold.reservedate | $KohaDates %] + + + [% Branches.GetName ( hold.branchcode ) | html %]
@@ -219,6 +223,7 @@ + @@ -326,6 +331,12 @@ holdst.fnFilter( $(this).val(), 11 ); }); }); + $("#pickup-location").each( function () { + $(this).html( createSelect( holdst.fnGetColumnData(13) ) ); + $('select', this).change( function () { + holdst.fnFilter( $(this).val(), 13 ); + }); + }); }); [% END %] --