From 0cceec35c638f97f1a3b1d8c7741b59f166fc8f8 Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 12 Nov 2020 12:29:33 -0500 Subject: [PATCH] Bug 26351: (QA follow-up) Fix Checkouts.t --- Koha/Item.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Koha/Item.pm b/Koha/Item.pm index af8e01fa59..8150653f61 100644 --- a/Koha/Item.pm +++ b/Koha/Item.pm @@ -89,7 +89,7 @@ sub store { $self->itype($self->biblio->biblioitem->itemtype); } - $self->barcode( barcodedecode( $self->barcode ) ); + $self->barcode( C4::Circulation::barcodedecode( $self->barcode ) ); my $today = dt_from_string; my $action = 'create'; -- 2.24.1 (Apple Git-126)