3 # Copyright 2010 BibLibre SARL
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
28 Is used for callnumber computation.
30 If the user send an empty string, we return a simple incremented callnumber.
31 If a prefix is submited, we look for the highest callnumber with this prefix, and return it incremented.
32 In this case, a callnumber has this form : "PREFIX 0009678570".
33 - PREFIX is an upercase word
35 - 10 digits, with leading 0s if needed
39 sub plugin_parameters
{
42 sub plugin_javascript
{
43 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
45 <script type='text/javascript'>
46 function Focus$field_number() {
50 function Blur$field_number() {
51 var code = document.getElementById('$field_number');
52 var url = '../cataloguing/plugin_launcher.pl?plugin_name=callnumber.pl&code=' + code.value;
53 var blurcallbackcallnumber = {
54 success: function(o) {
55 var field = document.getElementById('$field_number');
56 field.value = o.responseText;
60 var transaction = YAHOO.util.Connect.asyncRequest('GET',url, blurcallbackcallnumber, null);
64 function Clic$field_number() {
70 return ($field_number,$res);
75 my $code = $input->param('code');
77 my ($template, $loggedinuser, $cookie) = get_template_and_user
({
78 template_name
=> "cataloguing/value_builder/ajax.tmpl",
82 flagsrequired
=> {editcatalogue
=> '*'},
86 my $dbh = C4
::Context
->dbh;
87 # If the textbox is empty, we return a simple incremented callnumber
89 my $sth = $dbh->prepare("SELECT MAX(CAST(itemcallnumber AS SIGNED)) FROM items");
92 if ( my $max = $sth->fetchrow ) {
97 # If a prefix is submited, we look for the highest itemcallnumber with this prefix, and return it incremented
98 } elsif ( $code =~ m/^[A-Z.\-]+$/ ) {
99 my $sth = $dbh->prepare("SELECT MAX(CAST(SUBSTRING_INDEX(itemcallnumber,' ',-1) AS SIGNED)) FROM items WHERE itemcallnumber LIKE ?");
100 $sth->execute($code.' %');
101 if ( my $max = $sth->fetchrow ) {
103 return => $code.' '.($max+1)
106 # The user entered a custom value, we don't touch it, this could be handled in js
112 output_html_with_http_headers
$input, $cookie, $template->output;