From 28d4b80f989a6662ed878289bbf65ea2ee1f83b7 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 13 Dec 2012 14:17:07 +0100 Subject: [PATCH] Bug 9281: FIX add an order from a staged file In GetMember the hash parameter contained 'C4::Members' => 'borrowernumber' XXX => undef Test plan: In the acquition module, try to add an order to a basket from a staged file. Without this patch, you get an error: DBD::mysql::st execute failed: called with 2 bind variables when 1 are needed at /home/koha/src/C4/Members.pm line 559 Signed-off-by: Kyle M Hall Signed-off-by: Katrin Fischer All tests pass, error only appearing in the log file. Test plan: 1) Create a basket 2) Add one or multiple order lines using a staged file and the 'batch' feature. This is done by using the "Save" button at the bottom of the page instead of the "Add order" link next to a single entry. 3) Check your koha-error_log for the error above. Signed-off-by: Jared Camins-Esakov --- acqui/addorderiso2709.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acqui/addorderiso2709.pl b/acqui/addorderiso2709.pl index 4942571952..c4f889fbe7 100755 --- a/acqui/addorderiso2709.pl +++ b/acqui/addorderiso2709.pl @@ -189,7 +189,7 @@ if ($op eq ""){ SetImportRecordStatus( $biblio->{'import_record_id'}, 'imported' ); } # 3rd add order - my $patron = C4::Members->GetMember( borrowernumber => $loggedinuser ); + my $patron = C4::Members::GetMember( borrowernumber => $loggedinuser ); my $branch = C4::Branch->GetBranchDetail( $patron->{branchcode} ); # get quantity in the MARC record (1 if none) my $quantity = GetMarcQuantity($marcrecord, C4::Context->preference('marcflavour')) || 1; -- 2.20.1