@@ -, +, @@ select --- koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc | 2 +- koha-tmpl/intranet-tmpl/prog/js/holds.js | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/holds_table.inc @@ -125,7 +125,7 @@ [% Branches.GetName(hold.branchcode) | html %] [% ELSE %] [% END %] [% END %] --- a/koha-tmpl/intranet-tmpl/prog/js/holds.js +++ a/koha-tmpl/intranet-tmpl/prog/js/holds.js @@ -74,6 +74,7 @@ $(document).ready(function() { for ( var i=0; i < oObj.branches.length; i++ ){ var selectedbranch; var setbranch; + if ( oObj.branches[i].pickup_location == 0 ) { continue; } if( oObj.branches[i].selected ){ selectedbranch = " selected='selected' "; --