@@ -, +, @@ CART or PROC --- cataloguing/additem.pl | 2 ++ 1 file changed, 2 insertions(+) --- a/cataloguing/additem.pl +++ a/cataloguing/additem.pl @@ -70,6 +70,8 @@ sub get_item_from_barcode { } sub set_item_default_location { + return if $item->{location} eq 'CART' + or $item->{location} eq 'PROC'; my $itemnumber = shift; my $item = GetItem( $itemnumber ); if ( C4::Context->preference('NewItemsDefaultLocation') ) { --