Bug 19600: Move admin templates JavaScript to the footer: Other catalog pages
[koha.git] / cataloguing / value_builder / stocknumberam123.pl
blob17d64ac790796a5d54161bfbe2dd44aa065066b3
1 #!/usr/bin/perl
3 # Converted to new plugin style (Bug 13437)
5 # Copyright 2010 BibLibre SARL
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use Modern::Perl;
23 use CGI qw ( -utf8 );
25 use C4::Auth;
26 use C4::Context;
27 use C4::Output;
29 =head1 DESCRIPTION
31 This plugin is specific to AM123 but could be used as a base for similar operations.
32 It is used for stocknumber computation.
34 If the user send an empty string, we return a simple incremented stocknumber.
35 If a prefix is submited, we look for the highest stocknumber with this prefix, and return it incremented.
36 In this case, a stocknumber has this form : "PREFIX 0009678570".
37 - PREFIX is an upercase word
38 - a space separator
39 - 10 digits, with leading 0s if needed
41 =cut
43 my $builder = sub {
44 my ( $params ) = @_;
45 my $res="
46 <script type='text/javascript'>
47 function Blur$params->{id}() {
48 var code = document.getElementById('$params->{id}');
49 var url = '../cataloguing/plugin_launcher.pl?plugin_name=stocknumberam123.pl&code=' + code.value;
50 var req = \$.get(url);
51 req.done(function(resp){
52 code.value = resp;
53 return 1;
54 });
55 return 1;
57 </script>
60 return $res;
63 my $launcher = sub {
64 my ( $params ) = @_;
65 my $input = $params->{cgi};
66 my $code = $input->param('code');
68 my ($template, $loggedinuser, $cookie) = get_template_and_user({
69 template_name => "cataloguing/value_builder/ajax.tt",
70 query => $input,
71 type => "intranet",
72 authnotrequired => 0,
73 flagsrequired => {editcatalogue => '*'},
74 debug => 1,
75 });
77 my $dbh = C4::Context->dbh;
78 # If the textbox is empty, we return a simple incremented stocknumber
79 if ( $code eq "" ) {
80 my $sth = $dbh->prepare("SELECT MAX(CAST(stocknumber AS SIGNED)) FROM items");
81 $sth->execute;
83 if ( my $max = $sth->fetchrow ) {
84 $template->param(
85 return => $max+1,
88 # If a prefix is submited, we look for the highest stocknumber with this prefix, and return it incremented
89 } elsif ( $code =~ m/^[A-Z]+$/ ) {
90 my $sth = $dbh->prepare("SELECT MAX(CAST(SUBSTRING_INDEX(stocknumber,' ',-1) AS SIGNED)) FROM items WHERE stocknumber LIKE ?");
91 $sth->execute($code.' %');
93 if ( my $max = $sth->fetchrow ) {
94 $template->param(
95 return => $code.' '.sprintf('%010s',($max+1)),
98 # The user entered a custom value, we don't touch it, this could be handled in js
99 } else {
100 $template->param(
101 return => $code,
104 output_html_with_http_headers $input, $cookie, $template->output;
107 return { builder => $builder, launcher => $launcher };