Bug 25858: Use bitwise OR for setting a bit in borrowers.flag
[koha.git] / cataloguing / value_builder / callnumber-KU.pl
blob5cbdd25905d9c27ef682fe51adfe30ce5b883604
1 #!/usr/bin/perl
3 # Converted to new plugin style (Bug 13437)
5 # Copyright 2012 CatalystIT Ltd
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 Is used for callnumber computation.
33 User must supply a letter prefix (unspecified length) followed by an empty space followed by a "number".
34 "Number" is 4 character long, and is either a number sequence which is 01 padded.
35 If input does not conform with this format any processing is omitted.
37 Some examples of legal values that trigger auto allocation:
39 AAA 0 - returns first unused number AAA 0xxx starting with AAA 0001
40 BBB 12 - returns first unused number BBB 12xx starting with BBB 1201
41 CCC QW - returns first unused number CCC QWxx starting with CCC QW01
43 =cut
45 my $builder = sub {
46 my ( $params ) = @_;
47 my $res="
48 <script type='text/javascript'>
49 function Click$params->{id}() {
50 var code = document.getElementById('$params->{id}');
51 var url = '../cataloguing/plugin_launcher.pl?plugin_name=callnumber-KU.pl&code=' + code.value;
52 var req = \$.get(url);
53 req.done(function(resp){
54 code.value = resp;
55 return 1;
56 });
57 return 1;
59 </script>
61 return $res;
64 my $launcher = sub {
65 my ( $params ) = @_;
66 my $input = $params->{cgi};
67 my $code = $input->param('code');
69 my ($template, $loggedinuser, $cookie) = get_template_and_user({
70 template_name => "cataloguing/value_builder/ajax.tt",
71 query => $input,
72 type => "intranet",
73 authnotrequired => 0,
74 flagsrequired => {editcatalogue => '*'},
75 debug => 1,
76 });
78 my $BASE_CALLNUMBER_RE = qr/^(\w+) (\w+)$/;
79 my $ret;
80 my ($alpha, $num) = ($code =~ $BASE_CALLNUMBER_RE);
81 if (defined $num) { # otherwise no point
82 my ($num_alpha, $num_num) = ($num =~ m/^(\D+)?(\d+)?$/);
83 $num_alpha ||= '';
84 my $pad_len = 4 - length($num);
86 if ($pad_len > 0) {
87 my $num_padded = $num_num;
88 $num_padded .= "0" x ($pad_len - 1) if $pad_len > 1;
89 $num_padded .= "1";
90 my $padded = "$alpha $num_alpha" . $num_padded;
92 my $dbh = C4::Context->dbh;
93 if ( my $first = $dbh->selectrow_array("SELECT itemcallnumber
94 FROM items
95 WHERE itemcallnumber = ?", undef, $padded) ) {
96 my $icn = $dbh->selectcol_arrayref("SELECT DISTINCT itemcallnumber
97 FROM items
98 WHERE itemcallnumber LIKE ?
99 AND itemcallnumber > ?
100 ORDER BY itemcallnumber", undef, "$alpha $num_alpha%", $first);
101 my $next = $num_padded + 1;
102 my $len = length($num_padded);
103 foreach (@$icn) {
104 my ($num1) = ( m/(\d+)$/o );
105 if ($num1 > $next) { # a hole in numbering found, stop
106 last;
108 $next++;
110 $ret = "$alpha $num_alpha" . sprintf("%0${len}d", $next) if length($next) <= $len; # no overflow
112 else {
113 $ret = $padded;
118 $template->param(
119 return => $ret || $code
121 output_html_with_http_headers $input, $cookie, $template->output;
124 return { builder => $builder, launcher => $launcher };