https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=20002
--- Comment #7 from Jonathan Druart <[email protected]> --- I am sorry I have no idea then. Do you have something else in the log? Maybe your item does not have an item type defined? Make sure your items have an item type correctly defined. Otherwise you could apply this change: diff --git a/members/summary-print.pl b/members/summary-print.pl index a6a0e36194..bb57ee0d00 100755 --- a/members/summary-print.pl +++ b/members/summary-print.pl @@ -100,6 +100,7 @@ sub build_issue_data { if ( $issue->{replacementprice} ); #find the charge for an item + warn "Getting charges for " . $issue->{itemnumber}; my ( $charge, $itemtype ) = GetIssuingCharges( $issue->{itemnumber}, $borrowernumber ); Restart plack, then reload the page. In the log you should see the "Getting charges for " line with the itemnumber that cause problem. -- You are receiving this mail because: You are the assignee for the bug. You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
