Bug 6678 - Fix some problems with the standard NORMARC framework
[koha.git] / cataloguing / value_builder / stocknumberam123.pl
blobab88f61bb45dea62bf085e8926c272a26baa6da0
1 #!/usr/bin/perl
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
10 # version.
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.
20 use strict;
21 use warnings;
22 use C4::Auth;
23 use CGI;
24 use C4::Context;
26 =head1 DESCRIPTION
28 This plugin is specific to AM123 but could be used as a base for similar operations.
29 It is used for stocknumber computation.
31 If the user send an empty string, we return a simple incremented stocknumber.
32 If a prefix is submited, we look for the highest stocknumber with this prefix, and return it incremented.
33 In this case, a stocknumber has this form : "PREFIX 0009678570".
34 - PREFIX is an upercase word
35 - a space separator
36 - 10 digits, with leading 0s if needed
38 =cut
40 sub plugin_parameters {
43 sub plugin_javascript {
44 my ($dbh,$record,$tagslib,$field_number,$tabloop) = @_;
45 my $res="
46 <script type='text/javascript'>
47 function Focus$field_number() {
48 return 1;
51 function Blur$field_number() {
52 var code = document.getElementById('$field_number');
53 var url = '../cataloguing/plugin_launcher.pl?plugin_name=stocknumberam123.pl&code=' + code.value;
54 var blurcallbackstocknumber = {
55 success: function(o) {
56 var field = document.getElementById('$field_number');
57 field.value = o.responseText;
58 return 1;
61 var transaction = YAHOO.util.Connect.asyncRequest('GET',url, blurcallbackstocknumber, null);
62 return 1;
65 function Clic$field_number() {
66 return 1;
68 </script>
71 return ($field_number,$res);
74 sub plugin {
75 my ($input) = @_;
76 my $code = $input->param('code');
78 my ($template, $loggedinuser, $cookie) = get_template_and_user({
79 template_name => "cataloguing/value_builder/ajax.tmpl",
80 query => $input,
81 type => "intranet",
82 authnotrequired => 0,
83 flagsrequired => {editcatalogue => '*'},
84 debug => 1,
85 });
87 my $dbh = C4::Context->dbh;
88 # If the textbox is empty, we return a simple incremented stocknumber
89 if ( $code eq "" ) {
90 my $sth = $dbh->prepare("SELECT MAX(CAST(stocknumber AS SIGNED)) FROM items");
91 $sth->execute;
93 if ( my $max = $sth->fetchrow ) {
94 $template->param(
95 return => $max+1,
98 # If a prefix is submited, we look for the highest stocknumber with this prefix, and return it incremented
99 } elsif ( $code =~ m/^[A-Z]+$/ ) {
100 my $sth = $dbh->prepare("SELECT MAX(CAST(SUBSTRING_INDEX(stocknumber,' ',-1) AS SIGNED)) FROM items WHERE stocknumber LIKE ?");
101 $sth->execute($code.' %');
103 if ( my $max = $sth->fetchrow ) {
104 $template->param(
105 return => $code.' '.sprintf('%010s',($max+1)),
108 # The user entered a custom value, we don't touch it, this could be handled in js
109 } else {
110 $template->param(
111 return => $code,
114 output_html_with_http_headers $input, $cookie, $template->output;