b6f1979627008299775fb161130e765d98dcd89f
[koha-equinox.git] / cataloguing / value_builder / stocknumber.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
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
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20 use strict;
21 use warnings;
22 use C4::Context;
23
24 sub plugin_javascript {
25         my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
26         my $function_name= "inventory".(int(rand(100000))+1);
27
28         my $branchcode = C4::Context->userenv->{'branch'};
29
30         my $query = "SELECT MAX(CAST(SUBSTRING_INDEX(stocknumber,'_',-1) AS SIGNED))+1 FROM items WHERE homebranch = ? AND stocknumber LIKE ?";
31         my $sth=$dbh->prepare($query);
32
33         $sth->execute($branchcode,$branchcode."_%");
34         my ($nextnum) = $sth->fetchrow;
35         $nextnum = $branchcode.'_'.$nextnum;
36
37     my $scr = <<END_OF_JS;
38 if (\$('#' + id).val() == '' || force) {
39     \$('#' + id).val('$nextnum');
40 }
41 END_OF_JS
42
43     my $js  = <<END_OF_JS;
44 <script type="text/javascript">
45 //<![CDATA[
46
47 function Focus$function_name(subfield_managed, id, force) {
48 $scr
49     return 0;
50 }
51
52 function Clic$function_name(id) {
53     return Focus$function_name('not_relavent', id, 1);
54 }
55 //]]>
56 </script>
57 END_OF_JS
58     return ($function_name, $js);
59 }