Bug 9727: Fix typo in variable name
[koha.git] / cataloguing / value_builder / normarc_field_008.pl
blob5efe9a8ee7fe00a6c0e13eec3f716fa0e8387024
1 #!/usr/bin/perl
3 # Copyright 2009 Magnus Enger Libriotech
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
20 use strict;
21 use C4::Auth;
22 use CGI;
23 use C4::Context;
25 use C4::Search;
26 use C4::Output;
28 =head1
30 plugin_parameters : other parameters added when the plugin is called by the dopop function
32 =cut
34 # find today's date
35 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime(time);
37 $year += 1900;
38 $mon += 1;
39 my $dateentered = substr($year, 2, 2) . sprintf("%0.2d", $mon) . sprintf("%0.2d", $mday);
41 sub plugin_parameters {
42 my ($dbh, $record, $tagslib, $i, $tabloop) = @_;
43 return "";
46 sub plugin_javascript {
47 my $lang = C4::Context->preference('DefaultLanguageField008' );
48 $lang = "eng" unless $lang;
49 $lang = pack("A3", $lang);
50 my ($dbh, $record, $tagslib, $field_number, $tabloop) = @_;
51 my $function_name = $field_number;
52 my $res = "
53 <script type=\"text/javascript\">
54 //<![CDATA[
56 function Focus$function_name(subfield_managed) {
58 if ( document.getElementById(\"$field_number\").value ) {
60 else {
61 document.getElementById(\"$field_number\").value='$dateentered' + 't xxu||||| |||| 00| 0 $lang d';
63 return 1;
66 function Blur$function_name(subfield_managed) {
67 return 1;
70 function Clic$function_name(i) {
71 defaultvalue=document.getElementById(\"$field_number\").value;
72 defaultvalue=defaultvalue.replace(/ /g, \"+\");
73 newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=normarc_field_008.pl&index=$field_number&result=\"+defaultvalue,\"unimarc field 100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
76 //]]>
77 </script>
80 return ($function_name, $res);
83 sub plugin {
84 my $lang = C4::Context->preference('DefaultLanguageField008' );
85 $lang = "eng" unless $lang;
86 $lang = pack("A3", $lang);
87 my ($input) = @_;
88 my $index = $input->param('index');
89 my $result = $input->param('result');
91 my $dbh = C4::Context->dbh;
93 my ($template, $loggedinuser, $cookie) = get_template_and_user(
94 { template_name => "cataloguing/value_builder/normarc_field_008.tmpl",
95 query => $input,
96 type => "intranet",
97 authnotrequired => 0,
98 flagsrequired => { editcatalogue => 1 },
99 debug => 1,
103 # $result = " t xxu 00 0 eng d" unless $result;
104 $result = "$dateentered" . "t xxu||||| |||| 00| 0 $lang d" unless $result;
105 my $f1 = substr($result, 0, 6);
106 my $f6 = substr($result, 6, 1);
107 my $f710 = substr($result, 7, 4);
108 my $f1114 = substr($result, 11, 4);
109 my $f1517 = substr($result, 15, 3);
110 my $f18 = substr($result, 18, 1);
111 my $f19 = substr($result, 19, 1);
112 my $f20 = substr($result, 20, 1);
113 my $f21 = substr($result, 21, 1);
114 my $f22 = substr($result, 22, 1);
115 my $f23 = substr($result, 23, 1);
116 my $f24 = substr($result, 24, 1);
117 my $f25 = substr($result, 25, 1);
118 my $f26 = substr($result, 26, 1);
119 my $f27 = substr($result, 27, 1);
120 my $f28 = substr($result, 28, 1);
121 my $f29 = substr($result, 29, 1);
122 my $f30 = substr($result, 30, 1);
123 my $f31 = substr($result, 31, 1);
124 my $f32 = substr($result, 32, 1);
125 my $f33 = substr($result, 33, 1);
126 my $f34 = substr($result, 34, 1);
127 my $f3537 = substr($result, 35, 3);
128 my $f38 = substr($result, 38, 1);
129 my $f39 = substr($result, 39, 1);
131 # bug 2563
132 $f710 = "" if ($f710 =~ /^\s*$/);
133 $f1114 = "" if ($f1114 =~ /^\s*$/);
135 if ((!$f1) || ($f1 =~ m/ /)) {
136 $f1 = $dateentered;
139 $template->param(
140 index => $index,
141 f1 => $f1,
142 f6 => $f6,
143 "f6$f6" => $f6,
144 f710 => $f710,
145 f1114 => $f1114,
146 f1517 => $f1517,
147 f18 => $f18,
148 "f18$f18" => $f18,
149 f19 => $f19,
150 "f19$f19" => $f19,
151 f20 => $f20,
152 "f20$f20" => $f20,
153 f21 => $f21,
154 "f21$f21" => $f21,
155 f22 => $f22,
156 "f22$f22" => $f22,
157 f23 => $f23,
158 "f23$f23" => $f23,
159 f24 => $f24,
160 "f24$f24" => $f24,
161 f25 => $f25,
162 "f25$f25" => $f25,
163 f26 => $f26,
164 "f26$f26" => $f26,
165 f27 => $f27,
166 "f27$f27" => $f27,
167 f28 => $f28,
168 "f28$f28" => $f28,
169 f29 => $f29,
170 "f29$f29" => $f29,
171 f30 => $f30,
172 "f30$f30" => $f30,
173 f31 => $f31,
174 "f31$f31" => $f31,
175 f32 => $f32,
176 "f32$f32" => $f32,
177 f33 => $f33,
178 "f33$f33" => $f33,
179 f34 => $f34,
180 "f34$f34" => $f34,
181 f3537 => $f3537,
182 f38 => $f38,
183 "f38$f38" => $f38,
184 f39 => $f39,
185 "f39$f39" => $f39,
187 output_html_with_http_headers $input, $cookie, $template->output;