Bug 26180: Add descending option to rebuild_elasticsearch.pl
[koha.git] / cataloguing / value_builder / normarc_field_007.pl
blob89051a23566c1daf29086e462ca38ec0889defa8
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
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
20 use Modern::Perl;
21 use C4::Auth;
22 use CGI qw ( -utf8 );
23 use C4::Context;
25 use C4::Search;
26 use C4::Output;
28 sub plugin_javascript {
29 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
30 my $function_name= $field_number;
31 my $res="
32 <script>
34 function Clic$function_name(i) {
35 defaultvalue=document.getElementById(\"$field_number\").value;
36 newin=window.open(\"../cataloguing/plugin_launcher.pl?plugin_name=normarc_field_007.pl&index=$field_number&result=\"+defaultvalue,\"unimarc field 100\",'width=1000,height=600,toolbar=false,scrollbars=yes');
39 </script>
42 return ($function_name,$res);
44 sub plugin {
45 my ($input) = @_;
46 my $index= $input->param('index');
47 my $result= $input->param('result');
50 my $dbh = C4::Context->dbh;
52 my ($template, $loggedinuser, $cookie)
53 = get_template_and_user({template_name => "cataloguing/value_builder/normarc_field_007.tt",
54 query => $input,
55 type => "intranet",
56 flagsrequired => {editcatalogue => 1},
57 debug => 1,
58 });
59 $result = "ta" unless $result;
60 my $f0 = substr($result,0,1);
61 my $f1 = substr($result,1,4);
62 #added new parameters to allow for all material types
63 my $f2 = substr($result,2,1);
64 my $f3 = substr($result,3,1);
65 my $f4 = substr($result,4,1);
66 my $f5 = substr($result,5,1);
67 my $f6 = substr($result,6,1);
68 my $f7 = substr($result,7,1);
69 my $f8 = substr($result,8,1);
70 my $f9 = substr($result,9,1);
71 my $f10 = substr($result,10,1);
72 my $f11 = substr($result,11,1);
73 my $f12 = substr($result,12,1);
74 my $f13 = substr($result,13,1);
75 my $f14 = substr($result,14,1);
76 my $f15 = substr($result,15,1);
77 my $f16 = substr($result,16,1);
78 my $f17 = substr($result,17,1);
79 my $f18 = substr($result,18,1);
80 my $f19 = substr($result,19,1);
81 my $f20 = substr($result,20,1);
82 my $f21 = substr($result,21,1);
83 my $f22 = substr($result,22,1);
84 #FIXME: There is probably a more-elegant way to do this!
85 #FIXME: Two of the material types treat position 06, 07, and 08 as a single
86 #three-char field. This script works fine for creating values and sending them
87 #back to the MARC, but if there is already a value in the 007, it won't send
88 #it properly to the value builder for those two instances. Not sure how to solve.
89 $template->param( index => $index,
90 f0 => $f0,
91 "f0$f0" => $f0,
92 f1 => $f1,
93 "f1$f1" => $f1,
94 f2 => $f2,
95 "f2$f2" => $f2,
96 f3 => $f3,
97 "f3$f3" => $f3,
98 f4 => $f4,
99 "f4$f4" => $f4,
100 f5 => $f5,
101 "f5$f5" => $f5,
102 f6 => $f6,
103 "f6$f6" => $f6,
104 f7 => $f7,
105 "f7$f7" => $f7,
106 f8 => $f8,
107 "f8$f8" => $f8,
108 f9 => $f9,
109 "f9$f9" => $f9,
110 f10 => $f10,
111 "f10$f10" => $f10,
112 f11 => $f11,
113 "f11$f11" => $f11,
114 f12 => $f12,
115 "f12$f12" => $f12,
116 f13 => $f13,
117 "f13$f13" => $f13,
118 f14 => $f14,
119 "f14$f14" => $f14,
120 f15 => $f15,
121 "f15$f15" => $f15,
122 f16 => $f16,
123 "f16$f16" => $f16,
124 f17 => $f17,
125 "f17$f17" => $f17,
126 f18 => $f18,
127 "f18$f18" => $f18,
128 f19 => $f19,
129 "f19$f19" => $f19,
130 f20 => $f20,
131 "f20$f20" => $f20,
132 f21 => $f21,
133 "f21$f21" => $f21,
134 f22 => $f22,
135 "f22$f22" => $f22,
137 output_html_with_http_headers $input, $cookie, $template->output;