Bugzilla – Attachment 84679 Details for
Bug 21622
Incorrect GROUP BY clause in acqui/ scripts
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 21622: Adjust incorrect GROUP BY clauses in acqui script
Bug-21622-Adjust-incorrect-GROUP-BY-clauses-in-acq.patch (text/plain), 2.27 KB, created by
Katrin Fischer
on 2019-02-03 10:35:20 UTC
(
hide
)
Description:
Bug 21622: Adjust incorrect GROUP BY clauses in acqui script
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2019-02-03 10:35:20 UTC
Size:
2.27 KB
patch
obsolete
>From 1ed4c494f3224704af46edb41179dbcec229d23d Mon Sep 17 00:00:00 2001 >From: Jonathan Druart <jonathan.druart@bugs.koha-community.org> >Date: Fri, 19 Oct 2018 12:18:19 -0300 >Subject: [PATCH] Bug 21622: Adjust incorrect GROUP BY clauses in acqui script > >acqui/ordered.pl: GROUP BY aqorders.ordernumber >acqui/spent.pl: GROUP BY aqorders.ordernumbe > >'koha_kohadev.aqorders.biblionumber' isn't in GROUP BY > >Test plan: >- Create orders for different basket and using different funds >- Receive some of them >- Hit the ordered and spent pages (from the acqui home page) >=> The tables must contain the same data with and without this patch > >Signed-off-by: Jasmine Amohia <jasmineamohia.student@wegc.school.nz> > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >--- > acqui/ordered.pl | 8 +++++++- > acqui/spent.pl | 14 +++++++++++++- > 2 files changed, 20 insertions(+), 2 deletions(-) > >diff --git a/acqui/ordered.pl b/acqui/ordered.pl >index 75291d9f5c..7366cca04d 100755 >--- a/acqui/ordered.pl >+++ b/acqui/ordered.pl >@@ -74,7 +74,13 @@ WHERE > (datecancellationprinted IS NULL OR > datecancellationprinted='0000-00-00') AND > (quantity > quantityreceived OR quantityreceived IS NULL) >- GROUP BY aqorders.ordernumber >+ GROUP BY aqorders.biblionumber, aqorders.basketno, aqorders.ordernumber, >+ tleft, >+ ecost, budgetdate, entrydate, >+ aqbasket.booksellerid, >+ aqbooksellers.name, >+ itype, >+ title > EOQ > > my $sth = $dbh->prepare($query); >diff --git a/acqui/spent.pl b/acqui/spent.pl >index 69a25379f9..6a47161a90 100755 >--- a/acqui/spent.pl >+++ b/acqui/spent.pl >@@ -83,7 +83,19 @@ WHERE > (datecancellationprinted IS NULL OR > datecancellationprinted='0000-00-00') AND > datereceived IS NOT NULL >- GROUP BY aqorders.ordernumber >+ GROUP BY aqorders.biblionumber, aqorders.basketno, aqorders.ordernumber, >+ tleft, >+ ecost, budgetdate, entrydate, >+ aqbasket.booksellerid, >+ itype, >+ title, >+ aqorders.invoiceid, >+ aqinvoices.invoicenumber, >+ quantityreceived, >+ unitprice, >+ datereceived, >+ aqbooksellers.name >+ > EOQ > my $sth = $dbh->prepare($query); > $sth->execute($bookfund); >-- >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 21622
:
80943
|
81596
|
81724
|
81725
|
84101
| 84679 |
86973
|
86974