Clean up before final commits
[koha.git] / value_builder / marc21_008_holdings.pl
1 #!/usr/bin/perl
2
3 # $Id$
4
5 # Copyright 2000-2002 Katipo Communications
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along with
19 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
20 # Suite 330, Boston, MA  02111-1307 USA
21
22 use strict;
23 use C4::Auth;
24 use CGI;
25 use C4::Context;
26 use HTML::Template;
27 use C4::Search;
28 use C4::Output;
29
30 =head1
31
32 plugin_parameters : other parameters added when the plugin is called by the dopop function
33
34 =cut
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= "100".(int(rand(100000))+1);
48 my $res="
49 <script>
50 function Focus$function_name(subfield_managed) {
51     for (i=0 ; i<document.f.field_value.length ; i++) {
52         if (document.f.tag[i].value == '008') {
53             if (!document.f.field_value[i].value) {
54                 document.f.field_value[i].value = '$dateentered' + '1p||||8|||401ab|||0000000';
55             }
56         }
57     }
58 return 1;
59 }
60
61 function Blur$function_name(subfield_managed) {
62         return 1;
63 }
64
65 function Clic$function_name(i) {
66 return;
67         defaultvalue=document.forms['f'].field_value[i].value;
68         newin=window.open(\"../plugin_launcher.pl?plugin_name=marc21_008_holdings.pl&index=\"+i+\"&result=\"+defaultvalue,\"008\",'width=400,height=600,toolbar=false,scrollbars=yes');
69
70 }
71 </script>
72 ";
73
74 return ($function_name,$res);
75 }
76 sub plugin {
77 my ($input) = @_;
78         my %env;
79
80 #       my $input = new CGI;
81         my $index= $input->param('index');
82         my $result= $input->param('result');
83
84
85         my $dbh = C4::Context->dbh;
86
87 my ($template, $loggedinuser, $cookie)
88     = get_template_and_user({template_name => "value_builder/marc21_008_holdings.tmpl",
89                              query => $input,
90                              type => "intranet",
91                              authnotrequired => 0,
92                              flagsrequired => {editcatalogue => 1},
93                              debug => 1,
94                              });
95         $result = '$dateentered' + '1p||||8|||401ab|||0000000';
96         my $f1 = substr($result,0,6);
97         my $f6 = substr($result,6,1);
98         my $f710 = substr($result,7,4);
99         my $f1114 = substr($result,11,4);
100         my $f1517 = substr($result,15,3);
101         my $f1821 = substr($result,18,4);
102         my $f22 = substr($result,22,1);
103         my $f23 = substr($result,23,1);
104         my $f2427 = substr($result,24,4);
105         my $f28 = substr($result,28,1);
106         my $f29 = substr($result,29,1);
107         my $f30 = substr($result,30,1);
108         
109 if (!$f1){
110         $f1=$dateentered
111 }
112
113         $template->param(                               index => $index,
114                                                         f1 => $f1,
115                                                         f6 => $f6,
116                                                         "f6$f6" => $f6,
117                                                         f710 => $f710,
118                                                         f1114 => $f1114,
119                                                         f1517 => $f1517,
120                                                         f1821 => $f1821,
121                                                         f22 => $f22,
122                                                         "f22$f22" => $f22,
123                                                         f23 => $f23,
124                                                         "f23$f23" => $f23,
125                                                         f2427 => $f2427,
126                                                         "f24$f2427" => $f2427,
127                                                         f28 => $f28,
128                                                         "f28$f28" => $f28,
129                                                         f29 => $f29,
130                                                         "f29$f29" => $f29,
131                                                         f30 => $f30,
132                                                         "f30$f30" => $f30,
133                                 
134                                                       
135                                         );
136         print $input->header(-cookie => $cookie),$template->output;
137 }
138
139 1;