From efa894e625b4097ca0c1b41380a8d8afec5dc273 Mon Sep 17 00:00:00 2001 From: Josef Moravec Date: Mon, 19 Feb 2018 22:43:32 +0000 Subject: [PATCH] Bug 12001: (QA follow-up) Fix showing links to items on boraccount page Test plan: Go to the Fines -> Account page of a patron with fees linked to items --> without patch there is no link to related item --> with patch the link is presented in description column Signed-off-by: Josef Moravec Signed-off-by: Jonathan Druart --- members/boraccount.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/members/boraccount.pl b/members/boraccount.pl index 22fc699802..4abb5714b5 100755 --- a/members/boraccount.pl +++ b/members/boraccount.pl @@ -106,7 +106,7 @@ while ( my $line = $accts->next ) { if ( $accountline->{itemnumber} ) { # Because we will not have access to the object from the template - $accountline->{item} = { biblionumber => $line->item->biblionumber, }; + $accountline->{item} = $line->item; } push @accountlines, $accountline; } -- 2.39.2