Bugzilla – Attachment 120163 Details for
Bug 28216
Fix vendor list group by in serials statistics wizard
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 28216: Fix vendor list group by in serials statistics wizard
Bug-28216-Fix-vendor-list-group-by-in-serials-stat.patch (text/plain), 1.25 KB, created by
Fridolin Somers
on 2021-04-26 07:43:11 UTC
(
hide
)
Description:
Bug 28216: Fix vendor list group by in serials statistics wizard
Filename:
MIME Type:
Creator:
Fridolin Somers
Created:
2021-04-26 07:43:11 UTC
Size:
1.25 KB
patch
obsolete
>From ff1ede0161ddfaf202ce04efa527d121b1fd40af Mon Sep 17 00:00:00 2001 >From: Fridolin Somers <fridolin.somers@biblibre.com> >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 9a0a071ff7..6d4d059ea6 100755 >--- a/reports/serials_stats.pl >+++ b/reports/serials_stats.pl >@@ -137,6 +137,7 @@ if($do_it){ > my $sth = $dbh->prepare("SELECT aqbooksellerid, aqbooksellers.name > FROM subscription > LEFT JOIN aqbooksellers ON (subscription.aqbooksellerid=aqbooksellers.id ) >+ GROUP BY aqbooksellers.id > ORDER BY aqbooksellers.name ASC > "); > $sth->execute(); >-- >2.30.2
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 28216
:
120163
|
120755
|
125446
|
128424
|
128462