@@ -, +, @@ suggestor_search --- koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt | 2 +- .../suggestion/tables/{suggestion_search.tt => suggestor_search.tt} | 0 koha-tmpl/intranet-tmpl/prog/js/suggestions.js | 4 ++-- suggestion/{suggestion_search.pl => suggestor_search.pl} | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/tables/{suggestion_search.tt => suggestor_search.tt} (100%) rename suggestion/{suggestion_search.pl => suggestor_search.pl} (96%) --- a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt +++ a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt @@ -370,7 +370,7 @@ [% INCLUDE 'date-format.inc' %] [% IF ( suggestedby_borrowernumber ) %][% suggestedby_surname | html %], [% suggestedby_firstname | html %] ([% suggestedby_cardnumber | html %]) [% Branches.GetName( suggestedby_branchcode ) | html %] ([% suggestedby_description | html %])[% END %] - Set to patron + Set to patron --- a/koha-tmpl/intranet-tmpl/prog/js/suggestions.js +++ a/koha-tmpl/intranet-tmpl/prog/js/suggestions.js @@ -9,9 +9,9 @@ function select_user(borrowernumber, borrower) { } $(document).ready(function(){ - $('body').on('click', '#suggestion_search', function(e) { + $('body').on('click', '#suggestor_search', function(e) { e.preventDefault(); - var newin = window.open('suggestion_search.pl','popup','width=600,height=400,resizable=no,toolbar=false,scrollbars=yes,top'); + var newin = window.open('suggestor_search.pl','popup','width=600,height=400,resizable=no,toolbar=false,scrollbars=yes,top'); }); }); --- a/suggestion/suggestion_search.pl +++ a/suggestion/suggestion_search.pl @@ -48,7 +48,7 @@ my $patron_categories = Koha::Patron::Categories->search_limited; $template->param( view => ( $input->request_method() eq "GET" ) ? "show_form" : "show_results", columns => ['cardnumber', 'name', 'dateofbirth', 'address', 'action' ], - json_template => 'suggestion/tables/suggestion_search.tt', + json_template => 'suggestion/tables/suggestor_search.tt', selection_type => 'select', alphabet => ( C4::Context->preference('alphabet') || join ' ', 'A' .. 'Z' ), categories => $patron_categories, --