Bugzilla – Attachment 102401 Details for
Bug 24940
Serials statistics wizard: order vendor list alphabetically
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 24940: Serials statistics wizard: order vendor list alphabetically
Bug-24940-Serials-statistics-wizard-order-vendor-l.patch (text/plain), 1.41 KB, created by
Devinim
on 2020-04-04 20:13:25 UTC
(
hide
)
Description:
Bug 24940: Serials statistics wizard: order vendor list alphabetically
Filename:
MIME Type:
Creator:
Devinim
Created:
2020-04-04 20:13:25 UTC
Size:
1.41 KB
patch
obsolete
>From 6085583632450e249cea9e973cf278d14f97e2f6 Mon Sep 17 00:00:00 2001 >From: David Roberts <david@koha-ptfs.co.uk> >Date: Fri, 3 Apr 2020 15:23:01 +0000 >Subject: [PATCH] Bug 24940: Serials statistics wizard: order vendor list > alphabetically > >This patch changes the dropdown from being sorted by aqbookseller.id to >aqbookseller.name > >To test: >1) Add at least 2 vendors: > - First: ZZZZ > - Second: AAAA >2) Add subscriptions for each of the vendors >3) Check the pull down in the serials statistics wizard and verify it >lists them as ZZZZ, AAAA >4) Apply the patch >5) Re-check the pull down in the wizard and check that the vendors are >now listed AAAA,ZZZZ > >Signed-off-by: Devinim <kohadevinim@devinim.com.tr> >--- > reports/serials_stats.pl | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/reports/serials_stats.pl b/reports/serials_stats.pl >index 0c5ed28331e..a27c4042922 100755 >--- a/reports/serials_stats.pl >+++ b/reports/serials_stats.pl >@@ -138,7 +138,8 @@ if($do_it){ > my $sth = $dbh->prepare("SELECT aqbooksellerid, aqbooksellers.name > FROM subscription > LEFT JOIN aqbooksellers ON (subscription.aqbooksellerid=aqbooksellers.id ) >- GROUP BY aqbooksellerid"); >+ ORDER BY aqbooksellers.name ASC >+ "); > $sth->execute(); > > while(my $row = $sth->fetchrow_hashref){ >-- >2.11.0
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 24940
:
102390
|
102401
|
102533