@@ -, +, @@ --- Koha/Item.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/Koha/Item.pm +++ a/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 $plugin_action = 'create'; --