From 2dd587d6e33c4035f541e92287daa09e65430405 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 Signed-off-by: Martin Renvoize --- 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.20.1