bug_7458: A call number plugin
[koha.git] / cataloguing / value_builder / normarc_field_008.pl
1 #!/usr/bin/perl
2
3 # Copyright 2009 Magnus Enger Libriotech
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
15 #
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
19
20 use strict;
21 use C4::Auth;
22 use CGI;
23 use C4::Context;
24
25 use C4::Search;
26 use C4::Output;
27
28 =head1
29
30 plugin_parameters : other parameters added when the plugin is called by the dopop function
31
32 =cut
33
34 # find today's date
35 my ($sec, $min, $hour, $mday, $mon, $year, $wday, $yday, $isdst) = localtime(time);
36
37 $year += 1900;
38 $mon  += 1;
39 my $dateentered = substr($year, 2, 2) . sprintf("%0.2d", $mon) . sprintf("%0.2d", $mday);
40
41 sub plugin_parameters {
42     my ($dbh, $record, $tagslib, $i, $tabloop) = @_;
43     return "";
44 }
45
46 sub plugin_javascript {
47     my ($dbh, $record, $tagslib, $field_number, $tabloop) = @_;
48     my $function_name = $field_number;
49     my $res           = "
50 <script type=\"text/javascript\">
51 //<![CDATA[
52
53 function Focus$function_name(subfield_managed) {
54
55         if ( document.getElementById(\"$field_number\").value ) {
56         }
57         else {
58                 document.getElementById(\"$field_number\").value='$dateentered' + 't        xxu||||| |||| 00| 0 eng d';
59         }
60     return 1;
61 }
62
63 function Blur$function_name(subfield_managed) {
64         return 1;
65 }
66
67 function Clic$function_name(i) {
68         defaultvalue=document.getElementById(\"$field_number\").value;
69         defaultvalue=defaultvalue.replace(/ /g, \"+\");
70         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');
71
72 }
73 //]]>
74 </script>
75 ";
76
77     return ($function_name, $res);
78 }
79
80 sub plugin {
81     my ($input) = @_;
82     my $index   = $input->param('index');
83     my $result  = $input->param('result');
84
85     my $dbh = C4::Context->dbh;
86
87     my ($template, $loggedinuser, $cookie) = get_template_and_user(
88         {   template_name   => "cataloguing/value_builder/normarc_field_008.tmpl",
89             query           => $input,
90             type            => "intranet",
91             authnotrequired => 0,
92             flagsrequired   => { editcatalogue => 1 },
93             debug           => 1,
94         }
95     );
96
97     #   $result = "      t        xxu           00  0 eng d" unless $result;
98     $result = "$dateentered" . "t        xxu||||| |||| 00| 0 eng d" unless $result;
99     my $f1    = substr($result, 0,  6);
100     my $f6    = substr($result, 6,  1);
101     my $f710  = substr($result, 7,  4);
102     my $f1114 = substr($result, 11, 4);
103     my $f1517 = substr($result, 15, 3);
104     my $f18   = substr($result, 18, 1);
105     my $f19   = substr($result, 19, 1);
106     my $f20   = substr($result, 20, 1);
107     my $f21   = substr($result, 21, 1);
108     my $f22   = substr($result, 22, 1);
109     my $f23   = substr($result, 23, 1);
110     my $f24   = substr($result, 24, 1);
111     my $f25   = substr($result, 25, 1);
112     my $f26   = substr($result, 26, 1);
113     my $f27   = substr($result, 27, 1);
114     my $f28   = substr($result, 28, 1);
115     my $f29   = substr($result, 29, 1);
116     my $f30   = substr($result, 30, 1);
117     my $f31   = substr($result, 31, 1);
118     my $f32   = substr($result, 32, 1);
119     my $f33   = substr($result, 33, 1);
120     my $f34   = substr($result, 34, 1);
121     my $f3537 = substr($result, 35, 3);
122     my $f38   = substr($result, 38, 1);
123     my $f39   = substr($result, 39, 1);
124
125     # bug 2563
126     $f710  = "" if ($f710  =~ /^\s*$/);
127     $f1114 = "" if ($f1114 =~ /^\s*$/);
128
129     if ((!$f1) || ($f1 =~ m/ /)) {
130         $f1 = $dateentered;
131     }
132
133     $template->param(
134         index       => $index,
135         f1          => $f1,
136         f6          => $f6,
137         "f6$f6"     => $f6,
138         f710        => $f710,
139         f1114       => $f1114,
140         f1517       => $f1517,
141         f18         => $f18,
142         "f18$f18"   => $f18,
143         f19         => $f19,
144         "f19$f19"   => $f19,
145         f20         => $f20,
146         "f20$f20"   => $f20,
147         f21         => $f21,
148         "f21$f21"   => $f21,
149         f22         => $f22,
150         "f22$f22"   => $f22,
151         f23         => $f23,
152         "f23$f23"   => $f23,
153         f24         => $f24,
154         "f24$f24"   => $f24,
155         f25         => $f25,
156         "f25$f25"   => $f25,
157         f26         => $f26,
158         "f26$f26"   => $f26,
159         f27         => $f27,
160         "f27$f27"   => $f27,
161         f28         => $f28,
162         "f28$f28"   => $f28,
163         f29         => $f29,
164         "f29$f29"   => $f29,
165         f30         => $f30,
166         "f30$f30"   => $f30,
167         f31         => $f31,
168         "f31$f31"   => $f31,
169         f32         => $f32,
170         "f32$f32"   => $f32,
171         f33         => $f33,
172         "f33$f33"   => $f33,
173         f34         => $f34,
174         "f34$f34"   => $f34,
175         f3537       => $f3537,
176         f38         => $f38,
177         "f38$f38"   => $f38,
178         f39         => $f39,
179         "f39$f39"   => $f39,
180     );
181     output_html_with_http_headers $input, $cookie, $template->output;
182 }
183
184 1;