View | Details | Raw Unified | Return to bug 29554
Collapse All | Expand All

(-)a/acqui/neworderempty.pl (-4 / +1 lines)
Lines 364-372 if ($basketobj->effective_create_items eq 'ordering' && !$ordernumber) { Link Here
364
    );
364
    );
365
}
365
}
366
366
367
# Get the item types list, but only if item_level_itype is YES. Otherwise, it will be in the item, no need to display it in the biblio
367
my @itemtypes = Koha::ItemTypes->search->as_list;
368
my @itemtypes;
369
@itemtypes = Koha::ItemTypes->search->as_list unless C4::Context->preference('item-level_itypes');
370
368
371
if ( defined $from_subscriptionid ) {
369
if ( defined $from_subscriptionid ) {
372
    # Get the last received order for this subscription
370
    # Get the last received order for this subscription
373
- 

Return to bug 29554