Lines 70-75
sub get_item_from_barcode {
Link Here
|
70 |
} |
70 |
} |
71 |
|
71 |
|
72 |
sub set_item_default_location { |
72 |
sub set_item_default_location { |
|
|
73 |
return if $item->{location} eq 'CART' |
74 |
or $item->{location} eq 'PROC'; |
73 |
my $itemnumber = shift; |
75 |
my $itemnumber = shift; |
74 |
my $item = GetItem( $itemnumber ); |
76 |
my $item = GetItem( $itemnumber ); |
75 |
if ( C4::Context->preference('NewItemsDefaultLocation') ) { |
77 |
if ( C4::Context->preference('NewItemsDefaultLocation') ) { |
76 |
- |
|
|