From a3831981fa28a7769eb713585307b3f1b4d3955b 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 16ab994ef1..a359a45636 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.30.1 (Apple Git-130)