Bug 17117: Patron personal details not displayed unless branch update request is...
[koha.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
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.
11 #
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.
16 #
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>.
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 }