Bug 29554: Do not hide display of itemtypes on neworderempty
authorMarcel de Rooy <m.de.rooy@rijksmuseum.nl>
Mon, 22 Nov 2021 13:00:57 +0000 (13:00 +0000)
committerLucas Gass <lucas@bywatersolutions.com>
Mon, 5 Dec 2022 20:09:09 +0000 (20:09 +0000)
Hiding the list may lead to biblioitems.itemtype being NULL.
We do not want that, since 942$c is mandatory.

Test plan:
Create basket and set 'create items when' to receiving or
cataloging.
Create order from new empty record.
Check biblioitems.itemtype of created biblio.
Without this patch, it would have been NULL like this:
    select biblionumber,title from biblio;
    |            7 | Test 3                |
    select biblionumber,itemtype from biblioitems;
    |            7 | NULL     |

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: David Nind <david@davidnind.com>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
(cherry picked from commit 2e650fdd0cb48c8120b66a4c5c6318f674d2801b)

Signed-off-by: Lucas Gass <lucas@bywatersolutions.com>
acqui/neworderempty.pl

index 7c44314..e564635 100755 (executable)
@@ -363,9 +363,7 @@ if ($basketobj->effective_create_items eq 'ordering' && !$ordernumber) {
     );
 }
 
-# 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
-my @itemtypes;
-@itemtypes = Koha::ItemTypes->search->as_list unless C4::Context->preference('item-level_itypes');
+my @itemtypes = Koha::ItemTypes->search->as_list;
 
 if ( defined $from_subscriptionid ) {
     # Get the last received order for this subscription