[koha-commits] main Koha release repository branch new/bug_6984 created. v3.06.00-492-g6782563

Git repo owner gitmaster at git.koha-community.org
Fri Feb 3 14:17:16 CET 2012


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "main Koha release repository".

The branch, new/bug_6984 has been created
        at  67825637beb8ce3fabb7f34548f6962dec2993e5 (commit)

- Log -----------------------------------------------------------------
commit 67825637beb8ce3fabb7f34548f6962dec2993e5
Author: Garry Collum <gcollum at gmail.com>
Date:   Wed Feb 1 10:15:46 2012 -0500

    Bug 6984 - Holds statistics doesn't work.
    
    This patch fixes several errors in reserves_stats.pl and reserves_stats.tt.
    
    Testing -
    To test this patch, data must be in either the reserves table or old_reserves or both.  The following SQL will give you the raw data that is used by the report.
    
    SELECT priority, found, reservedate, notificationdate, reminderdate,
    waitingdate, cancellationdate, borrowers.categorycode, items.itype,
    reserves.branchcode, holdingbranch, items.homebranch, items.ccode,
    items.location, items.itemcallnumber, borrowers.sort1, borrowers.sort2
    FROM reserves
    LEFT JOIN borrowers on (borrowers.borrowernumber = reserves.borrowernumber)
    LEFT JOIN items on (items.itemnumber = reserves.itemnumber)
    UNION SELECT priority, found, reservedate, notificationdate, reminderdate,
    waitingdate, cancellationdate, borrowers.categorycode, items.itype,
    old_reserves.branchcode, holdingbranch, items.homebranch, items.ccode,
    items.location, items.itemcallnumber, borrowers.sort1, borrowers.sort2
    FROM old_reserves
    LEFT JOIN borrowers on (borrowers.borrowernumber = old_reserves.borrowernumber)
    LEFT JOIN items on (items.itemnumber = old_reserves.itemnumber)
    
    To test the notificationdate and reminderdate, I added data to the old_reserves table, since I have never run notices on my test machine.
    
    Ex:
    UPDATE old_reserves
    SET notificationdate = "2012-01-29",
    reminderdate = "2012-01-29"
    WHERE timestamp = "2012-01-29 20:09:34";
    
    Signed-off-by: Liz Rea <wizzyrea at gmail.com>
    Confirm original bug -- Reports work as expected now!
    prove t xt t/db_dependent no different from master.

-----------------------------------------------------------------------


hooks/post-receive
-- 
main Koha release repository


More information about the koha-commits mailing list