From e9de34a2f3746081c512a9d0cce23abd23ad2b8f Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Wed, 11 Dec 2024 22:34:23 +0000 Subject: [PATCH] Bug 38680: Dont convert the copynumber Follow the test plan from Bug 38326. Signed-off-by: Brendan Lawlor Signed-off-by: Emily Lamancusa --- acqui/addorderiso2709.pl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/acqui/addorderiso2709.pl b/acqui/addorderiso2709.pl index 4948beaab0..84e3949527 100755 --- a/acqui/addorderiso2709.pl +++ b/acqui/addorderiso2709.pl @@ -532,10 +532,9 @@ sub import_biblios_list { my $quantity = delete $iteminfos->{quantity} || 1; # Handle incorrectly named original parameters for MarcItemFieldsToOrder - $iteminfos->{location} = delete $iteminfos->{loc} if $iteminfos->{loc}; - $iteminfos->{copynumber} = delete $iteminfos->{copyno} if $iteminfos->{copyno}; + $iteminfos->{location} = delete $iteminfos->{loc} if $iteminfos->{loc}; # Price is handled as "itemprice" in the UI form to distinguish from MarcFieldsToOrder - $iteminfos->{itemprice} = delete $iteminfos->{price} if $iteminfos->{itemprice}; + $iteminfos->{itemprice} = delete $iteminfos->{price} if $iteminfos->{itemprice}; # Convert budge code to a budget id my $item_budget_code = delete $iteminfos->{budget_code}; -- 2.34.1