Bugzilla – Attachment 192586 Details for
Bug 41785
Add stocknumber plugin with spacing values
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 41785: Add stocknumber with incremental value with space
Bug-41785-Add-stocknumber-with-incremental-value-w.patch (text/plain), 5.45 KB, created by
Thibaud Guillot (thibaud_g)
on 2026-02-06 08:25:10 UTC
(
hide
)
Description:
Bug 41785: Add stocknumber with incremental value with space
Filename:
MIME Type:
Creator:
Thibaud Guillot (thibaud_g)
Created:
2026-02-06 08:25:10 UTC
Size:
5.45 KB
patch
obsolete
>From a87b416262480d811872df088e0f381a0e8940a9 Mon Sep 17 00:00:00 2001 >From: Thibaud Guillot <thibaud.guillot@biblibre.com> >Date: Fri, 13 Sep 2024 15:40:16 +0200 >Subject: [PATCH] Bug 41785: Add stocknumber with incremental value with space > >Test plan: >1) Add authorised values with "INVENTORY_SPACING" code >2) Link the plugin to a field/subfield in your framework >3) Use it during biblio or item edition >4) See that the plugin increment your value correctly > >Sponsored-by: BibLibre >--- > .../value_builder/stocknumberAV_spacing.pl | 138 ++++++++++++++++++ > 1 file changed, 138 insertions(+) > create mode 100755 cataloguing/value_builder/stocknumberAV_spacing.pl > >diff --git a/cataloguing/value_builder/stocknumberAV_spacing.pl b/cataloguing/value_builder/stocknumberAV_spacing.pl >new file mode 100755 >index 00000000000..59080fed76e >--- /dev/null >+++ b/cataloguing/value_builder/stocknumberAV_spacing.pl >@@ -0,0 +1,138 @@ >+#!/usr/bin/perl >+ >+# Converted to new plugin style (Bug 13437) >+ >+# Copyright 2012 BibLibre SARL >+# >+# This file is part of Koha. >+# >+# Koha is free software; you can redistribute it and/or modify it >+# under the terms of the GNU General Public License as published by >+# the Free Software Foundation; either version 3 of the License, or >+# (at your option) any later version. >+# >+# Koha is distributed in the hope that it will be useful, but >+# WITHOUT ANY WARRANTY; without even the implied warranty of >+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the >+# GNU General Public License for more details. >+# >+# You should have received a copy of the GNU General Public License >+# along with Koha; if not, see <http://www.gnu.org/licenses>. >+ >+use Modern::Perl; >+use CGI qw ( -utf8 ); >+ >+use C4::Auth qw( get_template_and_user ); >+use C4::Output qw( output_html_with_http_headers ); >+use C4::Koha qw( GetAuthorisedValues ); >+ >+=head1 DESCRIPTION >+ >+This plugin is based on authorised values from INVENTORY. >+It is used for stocknumber computation. >+ >+If no prefix is submitted, or the prefix does contain only >+numbers, it returns the inserted code (= keep the field unchanged). >+ >+If a prefix is submitted, we look for the highest stocknumber >+with this prefix and return it incremented. >+ >+In this case, a stocknumber has this form (e.g. "PREFIX 9678570"): >+PREFIX containing letters, a space separator and incremential value. >+ >+=cut >+ >+my $builder = sub { >+ my ($params) = @_; >+ >+ my @options_array; >+ my $av = GetAuthorisedValues("INVENTORY_SPACING"); >+ >+ push @options_array, "<option value=''>Select an authorised value</option>"; >+ for my $r (@$av) { >+ push @options_array, "<option value='$r->{authorised_value}'>$r->{authorised_value}</option>"; >+ } >+ >+ my $options = join '', @options_array; >+ >+ my $res = qq{ >+ <script> >+ function Click$params->{id}(ev) { >+ ev.preventDefault(); >+ >+ var select = document.createElement('select'); >+ const csrf_token = document.querySelector('meta[name="csrf-token"]').getAttribute('content'); >+ select.id = 'inventory_spacing_select'; >+ >+ select.innerHTML = "$options"; >+ var anchor = ev.target; >+ anchor.parentNode.replaceChild(select, anchor); >+ >+ select.addEventListener('click', function() { >+ var code = select.value; >+ \$.ajax({ >+ url: '/cgi-bin/koha/cataloguing/plugin_launcher.pl', >+ type: 'POST', >+ data: { >+ 'plugin_name': 'stocknumberAV_spacing.pl', >+ 'code': code, >+ 'csrf_token': csrf_token >+ }, >+ success: function(data) { >+ if (ev.data && ev.data.id) { >+ var field = document.getElementById(ev.data.id); >+ if (field) { >+ field.value = data; >+ return 1; >+ } >+ } >+ } >+ }); >+ }); >+ } >+ </script> >+ }; >+ >+ return $res; >+}; >+ >+my $launcher = sub { >+ my ($params) = @_; >+ my $input = $params->{cgi}; >+ my $code = $input->param('code'); >+ >+ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( >+ { >+ template_name => "cataloguing/value_builder/ajax.tt", >+ query => $input, >+ type => "intranet", >+ flagsrequired => { editcatalogue => '*' }, >+ } >+ ); >+ >+ # If a prefix is submited, we look for the highest stocknumber with this prefix, and return it incremented >+ $code =~ s/ *$//g; >+ if ( $code =~ m/^[a-zA-Z]+$/ ) { >+ my $av = Koha::AuthorisedValues->find( >+ { >+ 'category' => 'INVENTORY_SPACING', >+ 'authorised_value' => $code >+ } >+ ); >+ if ($av) { >+ $av->lib( $av->lib + 1 ); >+ $av->store; >+ $template->param( return => $code . ' ' . sprintf( '%s', ( $av->lib ) ), ); >+ } else { >+ $template->param( return => "There is no defined value for $code" ); >+ } >+ >+ # The user entered a custom value, we don't touch it, this could be handled in js >+ } else { >+ $template->param( return => $code, ); >+ } >+ >+ output_html_with_http_headers $input, $cookie, $template->output; >+}; >+ >+return { builder => $builder, launcher => $launcher }; >-- >2.39.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 41785
: 192586