Bug 24083: (follow-up) Include SelfCheckInModule
[koha.git] / cataloguing / value_builder / callnumber.pl
1 #!/usr/bin/perl
2
3 # Converted to new plugin style (Bug 13437)
4
5 # Copyright 2010 BibLibre SARL
6 #
7 # This file is part of Koha.
8 #
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.
13 #
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.
18 #
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>.
21
22 use Modern::Perl;
23 use CGI qw ( -utf8 );
24
25 use C4::Auth;
26 use C4::Context;
27 use C4::Output;
28
29 =head1 DESCRIPTION
30
31 Is used for callnumber computation.
32
33 If the user send an empty string, we return a simple incremented callnumber.
34 If a prefix is submited, we look for the highest callnumber with this prefix, and return it incremented.
35 In this case, a callnumber has this form : "PREFIX 0009678570".
36  - PREFIX is an upercase word
37  - a space separator
38  - 10 digits, with leading 0s if needed
39
40 =cut
41
42 my $builder = sub {
43     my ( $params ) = @_;
44     my $res="
45     <script>
46         function Blur$params->{id}() {
47                 var code = document.getElementById('$params->{id}');
48                 var url = '../cataloguing/plugin_launcher.pl?plugin_name=callnumber.pl&code=' + code.value;
49                 var req = \$.get(url);
50                 req.done(function(resp){
51                     code.value = resp;
52                     return 1;
53                 });
54                 return 1;
55         }
56
57     </script>
58     ";
59     return $res;
60 };
61
62 my $launcher = sub {
63     my ( $params ) = @_;
64     my $input = $params->{cgi};
65     my $code = $input->param('code');
66
67     my ($template, $loggedinuser, $cookie) = get_template_and_user({
68         template_name   => "cataloguing/value_builder/ajax.tt",
69         query           => $input,
70         type            => "intranet",
71         flagsrequired   => {editcatalogue => '*'},
72         debug           => 1,
73     });
74
75     my $dbh = C4::Context->dbh;
76     # If the textbox is empty, we return a simple incremented callnumber
77     if ( $code eq "" ) {
78         my $sth = $dbh->prepare("SELECT MAX(CAST(itemcallnumber AS SIGNED)) FROM items");
79         $sth->execute;
80     
81         if ( my $max = $sth->fetchrow ) {
82             $template->param(
83                 return => $max+1,
84             );
85         }
86     # If a prefix is submitted, we look for the highest itemcallnumber with this prefix, and return it incremented
87     } elsif ( $code =~ m/^[A-Z.\-']+$/ ) {
88         my $sth = $dbh->prepare("SELECT MAX(CAST(SUBSTRING_INDEX(itemcallnumber,' ',-1) AS SIGNED)) FROM items WHERE itemcallnumber LIKE ?");
89         $sth->execute($code.' %');
90         if ( my $max = $sth->fetchrow ) {
91             $template->param(
92                 return => $code.' '.($max+1)
93             );
94         }
95         else {
96             $template->param(
97                 return => $code.' 1'
98             );
99         }
100
101     # The user entered a custom value, we don't touch it, this could be handled in js
102     } else {
103         $template->param(
104             return => $code
105         );
106     }
107     output_html_with_http_headers $input, $cookie, $template->output;
108 };
109
110 return { builder => $builder, launcher => $launcher };