Bugzilla – Attachment 128462 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.40 KB, created by
Jonathan Druart
on 2021-12-13 13:38:54 UTC
(
hide
)
Description:
Bug 28216: Fix vendor list group by in serials statistics wizard
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2021-12-13 13:38:54 UTC
Size:
1.40 KB
patch
obsolete
>From 4a403c12917f0de91144873e994f1254e80c663c 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 > >Signed-off-by: Samu Heiskanen <samu.heiskanen@hypernova.fi> > >Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >--- > reports/serials_stats.pl | 1 + > 1 file changed, 1 insertion(+) > >diff --git a/reports/serials_stats.pl b/reports/serials_stats.pl >index a3b12b55b38..f0c150532e3 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.25.1
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