Bugzilla – Attachment 14139 Details for
Bug 9281
Impossible to create an order from a staged file
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 9281: FIX add an order from a staged file
Bug-9281-FIX-add-an-order-from-a-staged-file.patch (text/plain), 1.39 KB, created by
Kyle M Hall (khall)
on 2012-12-14 16:25:00 UTC
(
hide
)
Description:
Bug 9281: FIX add an order from a staged file
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2012-12-14 16:25:00 UTC
Size:
1.39 KB
patch
obsolete
>From afc8cae3f9f38bec7a5b2521b4e59c8e9d48c158 Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@biblibre.com> >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 <kyle@bywatersolutions.com> >--- > acqui/addorderiso2709.pl | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > >diff --git a/acqui/addorderiso2709.pl b/acqui/addorderiso2709.pl >index 4942571..c4f889f 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; >-- >1.7.2.5
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 9281
:
14070
|
14139
|
14143
|
14738
|
14767