From 46cd2433677e94541d6563a4690e5f71d2f2af2a 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 325f475694..c08be10bda 100644 --- a/Koha/Item.pm +++ b/Koha/Item.pm @@ -90,7 +90,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)