Merge branch 'MT1105' into public_master
[koha.git] / cataloguing / value_builder / marc21_field_008_authorities.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 with
18 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
19 # Suite 330, Boston, MA  02111-1307 USA
20
21 use strict;
22 use C4::Auth;
23 use CGI;
24 use C4::Context;
25
26 use C4::Search;
27 use C4::Output;
28
29 =head1
30
31 plugin_parameters : other parameters added when the plugin is called by the dopop function
32
33 =cut
34
35 # find today's date
36 my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) = localtime(time); 
37
38 $year +=1900; $mon +=1;
39 my $dateentered = substr($year,2,2).sprintf ("%0.2d", $mon).sprintf ("%0.2d",$mday);
40 sub plugin_parameters {
41         my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
42         return "";
43 }
44
45 sub plugin_javascript {
46         my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
47         my $function_name= $field_number;
48         my $res="
49 <script type=\"text/javascript\">
50 //<![CDATA[
51
52 function Focus$function_name(subfield_managed) {
53     if (!document.getElementById(\"$field_number\").value) {
54         document.getElementById(\"$field_number\").value='$dateentered' + '|| aca||aabn           | a|a     d';
55     }
56     return 1;
57 }
58
59 function Blur$function_name(subfield_managed) {
60         return 1;
61 }
62
63 function Clic$function_name(i) {
64         defaultvalue=document.getElementById(\"$field_number\").value;
65         newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=marc21_field_008_authorities.pl&index=$field_number&result=\"+defaultvalue,\"unimarc field 100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
66
67 }
68 //]]>
69 </script>
70 ";
71
72         return ($function_name,$res);
73 }
74 sub plugin {
75         my ($input) = @_;
76         my $index= $input->param('index');
77         my $result= $input->param('result');
78
79
80         my $dbh = C4::Context->dbh;
81
82         my ($template, $loggedinuser, $cookie)
83     = get_template_and_user({template_name => "cataloguing/value_builder/marc21_field_008_authorities.tmpl",
84                              query => $input,
85                              type => "intranet",
86                              authnotrequired => 0,
87                              flagsrequired => {editcatalogue => '*'},
88                              debug => 1,
89                              });
90         $result = "$dateentered".'|| aca||aabn           | a|a     d' unless $result;
91         my $f1 = substr($result,0,6);
92         my $f6 = substr($result,6,1);
93         my $f7 = substr($result,7,1);
94         my $f8 = substr($result,8,1);
95         my $f9 = substr($result,9,1);
96         my $f10 = substr($result,10,1);
97         my $f11 = substr($result,11,1);
98         my $f12 = substr($result,12,1);
99         my $f13 = substr($result,13,1);
100         my $f14 = substr($result,14,1);
101         my $f15 = substr($result,15,1);
102         my $f16 = substr($result,16,1);
103         my $f17 = substr($result,17,1);
104         my $f28 = substr($result,28,1);
105         my $f29 = substr($result,29,1);
106         my $f31 = substr($result,31,1);
107         my $f32 = substr($result,32,2);
108         my $f33 = substr($result,33,1);
109         my $f38 = substr($result,38,1);
110         my $f39 = substr($result,39,1);
111
112 if ((!$f1) ||($f1 =~ m/ /)){
113         $f1=$dateentered;
114 }
115
116         $template->param(                               index => $index,
117                                                         f1 => $f1,
118                                                         f6 => $f6,
119                                                         "f6$f6" => $f6,
120                             f7 => $f7,
121                             "f7$f7" => $f7,
122                             f8 => $f8,
123                             "f8$f8" => $f8,
124                             f9 => $f9,
125                             "f9$f9" => $f9,
126                             f10 => $f10,
127                             "f10$f10" => $f10,
128                             f11 => $f11,
129                             "f11$f11" => $f11,
130                             f12 => $f12,
131                             "f12$f12" => $f12,
132                             f13 => $f13,
133                             "f13$f13" => $f13,
134                             f14 => $f14,
135                             "f14$f14" => $f14,
136                             f15 => $f15,
137                             "f15$f15" => $f15,
138                             f16 => $f16,
139                             "f16$f16" => $f16,
140                             f17 => $f17,
141                             "f17$f17" => $f17,
142                             f28 => $f28,
143                             "f28$f28" => $f28,
144                             f29 => $f29,
145                             "f29$f29" => $f29,
146                             f31 => $f31,
147                             "f31$f31" => $f31,
148                             f32 => $f32,
149                             "f32$f32" => $f32,
150                             f33 => $f33,
151                             "f33$f33" => $f33,
152                             f38 => $f38,
153                             "f38$f38" => $f38,
154                             f39 => $f39,
155                             "f39$f39" => $f39,
156                                         );
157         output_html_with_http_headers $input, $cookie, $template->output;
158 }
159
160 1;