Bug 21982: Circulation statistics wizard does not count deleted items
authorJérémy Breuillard <jeremy.breuillard@biblibre.com>
Wed, 24 Nov 2021 15:56:09 +0000 (16:56 +0100)
committerTomas Cohen Arazi <tomascohen@theke.io>
Tue, 26 Jul 2022 12:10:28 +0000 (09:10 -0300)
By default statistic assistant filter is set on the
existing items and doesn't mind about deleted items.
The patch corrects this. Items belong to the same library.

Test plan:
1)Make sure to have at least 1 or more item(s) in deleteditems database table
2)Home > Reports > Circulation statistics
3)Fill up 'Issuing library', 'Home library' and 'Holding library'
4)Submit
5)Notice that only statistics for active items are shown
6)Apply patch and repeat from 2) to 5)
7)Now active items and deleted items are shown

Signed-off-by: Sally <sally.healey@cheshiresharedservices.gov.uk>
Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de>
Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io>
reports/issues_stats.pl

index ca0b8ec100427ea21ef3ffb3921cac5f2561f88d..6b541f7b28b6b4a7101ceb8fdd1bd28914a1c23a 100755 (executable)
@@ -506,7 +506,7 @@ sub calculate {
             $strcalc .= " LEFT JOIN borrower_attributes AS attribute_$_ ON (statistics.borrowernumber = attribute_$_.borrowernumber AND attribute_$_.code = '$_') ";
         }
     }
-    $strcalc .= "LEFT JOIN items ON statistics.itemnumber=items.itemnumber "
+    $strcalc .= "LEFT JOIN (SELECT * FROM items UNION SELECT * FROM deleteditems) items ON statistics.itemnumber=items.itemnumber "
       if ( $linefield =~ /^items\./
         or $colfield =~ /^items\./
         or $process == 5