Bugzilla – Attachment 178028 Details for
Bug 19113
Barcode value builder not working with numeric branchcode
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19113: Barcode value builder not working with numeric branchcode
Bug-19113-Barcode-value-builder-not-working-with-n.patch (text/plain), 2.27 KB, created by
William Lavoie
on 2025-02-13 15:43:22 UTC
(
hide
)
Description:
Bug 19113: Barcode value builder not working with numeric branchcode
Filename:
MIME Type:
Creator:
William Lavoie
Created:
2025-02-13 15:43:22 UTC
Size:
2.27 KB
patch
obsolete
>From 93c50de0ac7c2fbae1529b5e3ac7fba4e5c09c08 Mon Sep 17 00:00:00 2001 >From: William Lavoie <william.lavoie@inLibro.com> >Date: Thu, 13 Feb 2025 10:30:03 -0500 >Subject: [PATCH] Bug 19113: Barcode value builder not working with numeric > branchcode > >The regexp for the value builder 'hbyymmincr' doesn't allow for numerics in the branchcode, >so the nextnum found is always 0 and multiple Add always generate the same barcode. >This simply allow for numerics within the regex. > >Test >- It's a bit complicated. You need > - all your branchcodes to be numerics (01,02,71...) > - all barcodes to already be a bunch of numbers >- Modify the syspref 'autobarcode' to hbyymmincr, the home branch + date one. >- Find an item in the pro-search, >- New -> New Item >- Click on the 'p' to have the value builder create the next barcode. > - Without the patch, the query won't have found anything, so it'll suggest xxxxxx0001 >- Click Add. It reprensent the form to enter another one. > - Click on the 'p' edit box, it'll offer you again xxxxxx0001 >With the patch, it'll offer valid ones everytime. >--- > C4/Barcodes/ValueBuilder.pm | 12 ++++++------ > 1 file changed, 6 insertions(+), 6 deletions(-) > >diff --git a/C4/Barcodes/ValueBuilder.pm b/C4/Barcodes/ValueBuilder.pm >index b4684103bf..ad5f35c7a1 100644 >--- a/C4/Barcodes/ValueBuilder.pm >+++ b/C4/Barcodes/ValueBuilder.pm >@@ -45,12 +45,12 @@ use C4::Context; > sub get_barcode { > my ($args) = @_; > my $nextnum = 0; >- my $year = substr( $args->{year}, -2 ); >- my $month = $args->{mon}; >- my $query = "SELECT MAX(CAST(SUBSTRING(barcode,-4) AS signed)) AS number FROM items WHERE barcode REGEXP ?"; >- my $sth = C4::Context->dbh->prepare($query); >- $sth->execute("^[-a-zA-Z]{1,}$year$month"); >- while ( my ($count) = $sth->fetchrow_array ) { >+ my $year = substr($args->{year}, -2); >+ my $month = $args->{mon}; >+ my $query = "SELECT MAX(CAST(SUBSTRING(barcode,-4) AS signed)) AS number FROM items WHERE barcode REGEXP ?"; >+ my $sth = C4::Context->dbh->prepare($query); >+ $sth->execute("^[-a-zA-Z0-9]{1,}$year$month"); >+ while (my ($count)= $sth->fetchrow_array) { > $nextnum = $count if $count; > $nextnum = 0 if $nextnum == 9999; # this sequence only allows for cataloging 9999 items per month > } >-- >2.43.0
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 19113
:
66019
|
67981
|
75509
|
177659
|
178026
|
178028
|
178132