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>.
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
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){
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",
74 flagsrequired
=> {editcatalogue
=> '*'},
78 my $BASE_CALLNUMBER_RE = qr/^(\w+) (\w+)$/;
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+)?$/);
84 my $pad_len = 4 - length($num);
87 my $num_padded = $num_num;
88 $num_padded .= "0" x
($pad_len - 1) if $pad_len > 1;
90 my $padded = "$alpha $num_alpha" . $num_padded;
92 my $dbh = C4
::Context
->dbh;
93 if ( my $first = $dbh->selectrow_array("SELECT itemcallnumber
95 WHERE itemcallnumber = ?", undef, $padded) ) {
96 my $icn = $dbh->selectcol_arrayref("SELECT DISTINCT itemcallnumber
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);
104 my ($num1) = ( m/(\d+)$/o );
105 if ($num1 > $next) { # a hole in numbering found, stop
110 $ret = "$alpha $num_alpha" . sprintf("%0${len}d", $next) if length($next) <= $len; # no overflow
119 return => $ret || $code
121 output_html_with_http_headers
$input, $cookie, $template->output;
124 return { builder
=> $builder, launcher
=> $launcher };