refining barcode plugin, two new options
[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 $dbh = C4::Context->dbh;
75         my $date = "$year";
76
77         my ($tag,$subfield) =  GetMarcFromKohaField("items.barcode");
78
79         my $nextnum;
80         my $query;
81         my $autoBarcodeType = C4::Context->preference("autoBarcode");
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 function Focus$function_name(subfield_managed) {
114                 for (i=0 ; i<document.f.field_value.length ; i++) {
115                         if (document.f.tag[i].value == '$tag' && document.f.subfield[i].value == '$subfield') {
116                                 if (document.f.field_value[i].value == '') {
117                                         document.f.field_value[i].value = '$nextnum';
118                                 }
119                         }
120                 }
121 return 0;
122 }
123
124 function Clic$function_name(subfield_managed) {
125 }
126 //]]>
127 </script>
128 ";
129
130         # don't return a value unless we have the appropriate syspref set
131         return ($function_name,$res);
132         }
133         else {
134                 return ($function_name,"<script type=\"text/javascript\">function Focus$function_name() { return 0;}</script>");
135         }
136 }
137
138 =head1
139
140 plugin : the true value_builded. The screen that is open in the popup window.
141
142 =cut
143
144 sub plugin {
145 my ($input) = @_;
146 return "";
147 }
148
149 1;