From 23663e4cc1dabeaf7afe7eb7525c914364091d6c Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Fri, 13 Oct 2023 13:29:30 +0000 Subject: [PATCH] Bug 34355: Rebase changes made in bug 33170 --- Koha/MarcOrder.pm | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Koha/MarcOrder.pm b/Koha/MarcOrder.pm index e904d8cf14..a943a87cf3 100644 --- a/Koha/MarcOrder.pm +++ b/Koha/MarcOrder.pm @@ -831,10 +831,7 @@ sub import_biblios_list { ); my $marcrecord = $import_record->get_marc_record || die "couldn't translate marc information"; - my $infos = _get_MarcFieldsToOrder_syspref_data( - 'MarcFieldsToOrder', $marcrecord, - [ 'price', 'quantity', 'budget_code', 'discount', 'sort1', 'sort2', 'replacementprice' ] - ); + my $infos = _get_MarcFieldsToOrder_syspref_data( $marcrecord ); my $price = $infos->{price}; my $replacementprice = $infos->{replacementprice}; my $quantity = $infos->{quantity}; -- 2.37.1 (Apple Git-137.1)