@@ -, +, @@ - Go to reports -> Acquisitions statistics - Populate with the following values: Acquisitions statistics Received on. Row: checked Column: checked From: 01/01/2015 To: Un-selected Cell value Count items Output: To screen into the browser: checked - Running the report will trigger the following error: Software error: Can't locate object method "field" via package "aqorders.datereceived" (perhaps you forgot to load "aqorders.datereceived"?) at /usr/share/koha/intranet/cgi-bin/reports/acquisitions_stats.pl line 293. - Apply the patch and repeat test - Verify the report now works correctly fix on the bug report, written by Barton Chittenden. --- reports/acquisitions_stats.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/reports/acquisitions_stats.pl +++ a/reports/acquisitions_stats.pl @@ -284,7 +284,7 @@ sub calculate { } elsif ( $rodsp == 3 ) { $field{$a} = "Year($a)"; } else { - field{$a} = $a; + $field{$a} = $a; } } elsif ( $_ =~ /bookseller/ ) { --