Bug 12704: Remove CGI::scrolling_list from unimarc_field_225a.pl
[koha.git] / cataloguing / value_builder / unimarc_field_225a.pl
1 #!/usr/bin/perl
2
3
4 # Copyright 2000-2002 Katipo Communications
5 #
6 # This file is part of Koha.
7 #
8 # Koha is free software; you can redistribute it and/or modify it under the
9 # terms of the GNU General Public License as published by the Free Software
10 # Foundation; either version 2 of the License, or (at your option) any later
11 # version.
12 #
13 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
14 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
15 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License along
18 # with Koha; if not, write to the Free Software Foundation, Inc.,
19 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
20
21 =head1 SYNOPSIS
22
23 This plugin is used to map isbn/editor with collection.
24 It need :
25   in thesaurus, a category named EDITORS
26   in this category, datas must be entered like following :
27   isbn separator editor separator collection.
28   for example :
29   2204 -- Cerf -- Cogitatio fidei
30   2204 -- Cerf -- Le Magistere de l'Eglise
31   2204 -- Cerf -- Lectio divina
32   2204 -- Cerf -- Lire la Bible
33   2204 -- Cerf -- Pour lire
34   2204 -- Cerf -- Sources chretiennes
35
36   when the user clic on ... on 225a line, the popup shows the list of collections from the selected editor
37   if the biblio has no isbn, then the search if done on editor only
38   If the biblio ha an isbn, the search is done on isbn and editor. It's faster.
39
40 =cut
41
42 use strict;
43 #use warnings; FIXME - Bug 2505
44 use C4::Auth;
45 use CGI;
46 use C4::Context;
47
48 use C4::AuthoritiesMarc;
49 use C4::Output;
50
51 =head1 DESCRIPTION
52
53 plugin_parameters : other parameters added when the plugin is called by the dopop function
54
55 =cut
56
57 sub plugin_parameters {
58     my ( $dbh, $record, $tagslib, $i, $tabloop ) = @_;
59     return "";
60 }
61
62 sub plugin_javascript {
63     my ( $dbh, $record, $tagslib, $field_number, $tabloop ) = @_;
64     my $function_name = $field_number;
65     my $res = "
66     <script type=\"text/javascript\">
67         function Focus$function_name(subfield_managed) {
68             return 1;
69         }
70     
71         function Blur$function_name(subfield_managed) {
72             return 1;
73         }
74     
75         function Clic$function_name(index) {
76         // find the 010a value and the 210c. it will be used in the popup to find possibles collections
77             var isbn_found   = 0;
78             var editor_found = 0;
79             
80             var inputs = document.getElementsByTagName('input');
81             
82             for(var i=0 , len=inputs.length ; i \< len ; i++ ){
83                 if(inputs[i].id.match(/^tag_010_subfield_a_.*/)){
84                     isbn_found = inputs[i].value;
85                 }
86                 if(inputs[i].id.match(/^tag_210_subfield_c_.*/)){
87                     editor_found = inputs[i].value;
88                 }
89                 if(editor_found && isbn_found){
90                     break;
91                 }
92             }
93                     
94             defaultvalue = document.getElementById(\"$field_number\").value;
95             window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=unimarc_field_225a.pl&index=\"+index+\"&result=\"+defaultvalue+\"&editor_found=\"+editor_found,\"unimarc225a\",'width=500,height=400,toolbar=false,scrollbars=no');
96     
97         }
98     </script>
99 ";
100
101     return ( $function_name, $res );
102 }
103
104 sub plugin {
105     my ($input)      = @_;
106     my $index        = $input->param('index');
107     my $result       = $input->param('result');
108     my $editor_found = $input->param('editor_found');
109     my $AuthoritySeparator = C4::Context->preference("AuthoritySeparator");
110     
111     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
112         {
113             template_name =>
114               "cataloguing/value_builder/unimarc_field_225a.tt",
115             query           => $input,
116             type            => "intranet",
117             authnotrequired => 0,
118             flagsrequired   => { editcatalogue => '*' },
119             debug           => 1,
120         }
121     );
122
123 # builds collection list : search isbn and editor, in parent, then load collections from bibliothesaurus table
124 # if there is an isbn, complete search
125     my @collections;
126     
127     my @value     = ($editor_found,"","");
128     my @tags      = ("mainentry","","");
129     my @and_or    = ('and','','');
130     my @operator  = ('is','','');
131     my @excluding = ('','','');
132     
133     
134     my ($results,$total) = SearchAuthorities( \@tags,\@and_or,
135                                             \@excluding, \@operator, \@value,
136                                             0, 20,"EDITORS", "HeadingAsc");
137     foreach my $editor (@$results){
138         my $authority = GetAuthority($editor->{authid});
139         foreach my $col ($authority->subfield('200','c')){
140             push @collections, $col;
141         }
142             
143     } 
144     @collections = sort @collections;
145     # my @collections = ( "test" );
146     my $collection = {
147             values  => \@collections,
148             default => "$result",
149     };
150
151     $template->param(
152         index      => $index,
153         collection => $collection
154     );
155     output_html_with_http_headers $input, $cookie, $template->output;
156 }
157
158 1;