From a3be6b98b9162d217b068b5735d9657e023f5474 Mon Sep 17 00:00:00 2001 From: Fridolin Somers Date: Mon, 26 Apr 2021 09:40:08 +0200 Subject: [PATCH] Bug 28216: Fix vendor list group by in serials statistics wizard Bug 24940 added sort vendor list by aqbookseller.name but removed accidentally the group by. Now vendors are repeated in the list. Test plan : 1) Create several subscriptions for same vendor 2) Go to Reports > Serials 3) Check list of vendors => Without patch you see the same vendor several times => With patch you seen it once 4) Check sort is still on vendor name --- reports/serials_stats.pl | 1 + 1 file changed, 1 insertion(+) diff --git a/reports/serials_stats.pl b/reports/serials_stats.pl index a3b12b55b3..f0c150532e 100755 --- a/reports/serials_stats.pl +++ b/reports/serials_stats.pl @@ -135,6 +135,7 @@ if($do_it){ my $sth = $dbh->prepare("SELECT aqbooksellerid, aqbooksellers.name FROM subscription LEFT JOIN aqbooksellers ON (subscription.aqbooksellerid=aqbooksellers.id ) + GROUP BY aqbooksellerid, aqbooksellers.name ORDER BY aqbooksellers.name ASC "); $sth->execute(); -- 2.32.0