From 126605b095dc93226ba4ac501c1e23d31051c895 Mon Sep 17 00:00:00 2001 From: Marcel de Rooy Date: Fri, 13 Jan 2017 11:27:08 +0100 Subject: [PATCH] Bug 17196: [QA Follow-up] Additional fix on acqui/basketgroup Content-Type: text/plain; charset=utf-8 acqui/basketgroup calls GetOrders and expects marcxml in the results. Fixing it by an additional call of GetXmlBiblio. Signed-off-by: Marcel de Rooy --- acqui/basketgroup.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/acqui/basketgroup.pl b/acqui/basketgroup.pl index bd4c6bf..9ca84e9 100755 --- a/acqui/basketgroup.pl +++ b/acqui/basketgroup.pl @@ -183,6 +183,7 @@ sub printbasketgrouppdf{ # Editor Number my $en; my $edition; + my $ord->{marcxml} = C4::Biblio::GetXmlBiblio( $ord->{biblionumber} ); my $marcrecord=eval{MARC::Record::new_from_xml( $ord->{marcxml},'UTF-8' )}; if ($marcrecord){ if ( C4::Context->preference("marcflavour") eq 'UNIMARC' ) { -- 2.1.4