Changed behavior of barcode.pl plugin to generate barcode onClick of the ... button
[koha.git] / cataloguing / value_builder / barcode.pl
1 #!/usr/bin/perl
2
3 # $Id: barcode.pl,v 1.1.2.2 2006/09/20 02:24:42 kados Exp $
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 require Exporter;
23 use C4::Context;
24
25 =head1
26
27 plugin_parameters : other parameters added when the plugin is called by the dopop function
28
29 =cut
30 sub plugin_parameters {
31 my ($dbh,$record,$tagslib,$i,$tabloop) = @_;
32 return "";
33 }
34
35 =head1
36
37 plugin_javascript : the javascript function called when the user enters the subfield.
38 contain 3 javascript functions :
39 * one called when the field is entered (OnFocus). Named FocusXXX
40 * one called when the field is leaved (onBlur). Named BlurXXX
41 * one called when the ... link is clicked (<a href="javascript:function">) named ClicXXX
42
43 returns :
44 * XXX
45 * a variable containing the 3 scripts.
46 the 3 scripts are inserted after the <input> in the html code
47
48 =cut
49 sub plugin_javascript {
50         my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
51         my $function_name= "barcode".(int(rand(100000))+1);
52
53         # find today's date
54         my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst) =
55                                                                localtime(time);
56         $year +=1900;
57         $mon +=1;
58         if (length($mon)==1) {
59                 $mon = "0".$mon;
60         }
61         if (length($mday)==1) {
62                 $mday = "0".$mday;
63         }
64         if (length($hour)==1) {
65              $hour = "0".$hour;
66         }
67         if (length($min)==1) {
68         $min = "0".$min;
69         }
70         if (length($sec)==1) {
71         $hour = "0".$sec;
72         }
73
74         my $date = "$year";
75
76         my ($tag,$subfield) =  GetMarcFromKohaField("items.barcode");
77
78         my $nextnum;
79         my $query;
80         my $autoBarcodeType = C4::Context->preference("autoBarcode");
81         warn "Barcode type = $autoBarcodeType";
82         unless ($autoBarcodeType eq 'OFF' or !$autoBarcodeType) {
83
84         if ($autoBarcodeType eq 'annual') {
85                 $query = "select max(cast( substring_index(barcode, '-',-1) as signed)) from items where barcode like ?";
86                 my $sth=$dbh->prepare($query);
87                 $sth->execute("$year%");
88                 while (my ($count)= $sth->fetchrow_array) {
89                 $nextnum = $count if $count;
90                 }
91                 $nextnum++;
92                 $nextnum = sprintf("%0*d", "4",$nextnum);
93                 $nextnum = "$year-$nextnum";
94         }
95         elsif ($autoBarcodeType eq 'incremental') {
96                 # not the best, two catalogers could add the same barcode easily this way :/
97                 $query = "select max(abs(barcode)) from items";
98         my $sth=$dbh->prepare($query);
99                 $sth->execute();
100                 while (my ($count)= $sth->fetchrow_array) {
101                         $nextnum = $count;
102                 }
103                 $nextnum++;
104         }
105                 my $res  = "
106 <script type=\"text/javascript\">
107 //<![CDATA[
108
109 //function Blur$function_name(index) {
110 //need this?
111 //}
112
113 // Commenting this out so that the user can enter their own text w/the script prefilling the field on-focus -fbcit
114 //function Focus$function_name(subfield_managed) {
115 //              for (i=0 ; i<document.f.field_value.length ; i++) {
116 //                      if (document.f.tag[i].value == '$tag' && document.f.subfield[i].value == '$subfield') {
117 //                              if (document.f.field_value[i].value == '') {
118 //                                      document.f.field_value[i].value = '$nextnum';
119 //                              }
120 //                      }
121 //              }
122 //return 0;
123 //}
124
125 function Clic$function_name(subfield_managed) {
126                 for (i=0 ; i<document.f.field_value.length ; i++) {
127                         if (document.f.tag[i].value == '$tag' && document.f.subfield[i].value == '$subfield') {
128                                 if (document.f.field_value[i].value == '') {
129                                         document.f.field_value[i].value = '$nextnum';
130                                 }
131                         }
132                 }
133 return 0;
134 }
135 //]]>
136 </script>
137 ";
138
139         # don't return a value unless we have the appropriate syspref set
140         return ($function_name,$res);
141         }
142         else {
143                 return ($function_name,"<script type=\"text/javascript\">function Focus$function_name() { return 0;}</script>");
144         }
145 }
146
147 =head1
148
149 plugin : the true value_builded. The screen that is open in the popup window.
150
151 =cut
152
153 sub plugin {
154 my ($input) = @_;
155 return "";
156 }
157
158 1;