@@ -, +, @@ boraccount page --> without patch there is no link to related item --> with patch the link is presented in description column --- members/boraccount.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/members/boraccount.pl +++ a/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; } --