3 # Converted to new plugin style (Bug 13437)
5 # Copyright 2012 BibLibre SARL
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 This plugin is based on authorised values INVENTORY.
32 It is used for stocknumber computation.
34 If the user send an empty string, we return a simple incremented stocknumber.
35 If a prefix is submited, we look for the highest stocknumber with this prefix, and return it incremented.
36 In this case, a stocknumber has this form : "PREFIX 0009678570".
37 - PREFIX is an upercase word
39 - 10 digits, with leading 0s if needed
46 <script type
='text/javascript'>
47 function Click
$params->{id
}() {
48 var code
= document
.getElementById
('$params->{id}');
50 url
: '/cgi-bin/koha/cataloguing/plugin_launcher.pl',
53 'plugin_name': 'stocknumberAV.pl',
56 success
: function
(data
){
57 var field
= document
.getElementById
('$params->{id}');
71 my $input = $params->{cgi
};
72 my $code = $input->param('code');
74 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
75 { template_name
=> "cataloguing/value_builder/ajax.tt",
79 flagsrequired
=> { editcatalogue
=> '*' },
84 my $dbh = C4
::Context
->dbh;
86 # If a prefix is submited, we look for the highest stocknumber with this prefix, and return it incremented
88 if ( $code =~ m/^[a-zA-Z]+$/ ) {
89 my $sth = $dbh->prepare("SELECT lib FROM authorised_values WHERE category='INVENTORY' AND authorised_value=?");
90 $sth->execute( $code);
92 if ( my $valeur = $sth->fetchrow ) {
93 $template->param( return => $code . ' ' . sprintf( '%010s', ( $valeur + 1 ) ), );
94 my $sth2 = $dbh->prepare("UPDATE authorised_values SET lib=? WHERE category='INVENTORY' AND authorised_value=?");
95 $sth2->execute($valeur+1,$code);
97 $template->param( return => "There is no defined value for $code");
99 # The user entered a custom value, we don't touch it, this could be handled in js
101 $template->param( return => $code, );
104 output_html_with_http_headers
$input, $cookie, $template->output;
107 return { builder
=> $builder, launcher
=> $launcher };