@@ -, +, @@ 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 | 11 +++++++++++ 1 file changed, 11 insertions(+) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/pendingreserves.tt @@ -79,6 +79,7 @@ Available locations Earliest hold date Reserve notes + Pickup location Action @@ -179,6 +180,9 @@ [% hold.reservedate | $KohaDates %] in [% Branches.GetName ( hold.branchcode ) | html %] [% hold.reservenotes | html %] + + [% Branches.GetName ( hold.branchcode ) | html %] +
@@ -239,6 +243,7 @@ + @@ -347,6 +352,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 %] --