Bug 15933: Add cataloguing plugin to search for existing publishers in other records
[koha.git] / cataloguing / value_builder / marc21_field_260b.pl
blob406feb41221bc9bac4c09740f8c7e8ad0eb029ac
1 #!/usr/bin/perl
3 # Copyright 2020 Athens County Public Libraries
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 =head1 SYNOPSIS
22 This plugin is used to fill 260$a with a value already existing in
23 biblioitems.publishercode
25 =cut
27 use Modern::Perl;
28 use C4::Context;
30 my $builder = sub {
31 my ( $params ) = @_;
32 my $function_name = $params->{id};
34 my $res = "
35 <script>
36 function Focus$function_name(event) {
37 var tagfield = jQuery( this );
38 tagfield.autocomplete({
39 source: '/cgi-bin/koha/cataloguing/ysearch.pl?table=biblioitems&field=publishercode',
40 minLength: 3,
41 select: function( event, ui ) {
42 tagfield.val( ui.item.fieldvalue );
43 return false;
46 .data( 'ui-autocomplete' )._renderItem = function( ul, item ) {
47 return jQuery( '<li></li>' )
48 .data( 'ui-autocomplete-item', item )
49 .append( '<a>' + item.fieldvalue + '</a>' )
50 .appendTo( ul );
52 return 1;
54 </script>
56 return $res;
59 return { builder => $builder };