https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=40062

--- Comment #2 from Kyle M Hall (khall) <k...@bywatersolutions.com> ---
I think the issue is with how we select the holds:

    # get whats left
    my $query = "
        SELECT reserve_id, borrowernumber, reservedate
        FROM   reserves
        WHERE  biblionumber   = ?
          AND  ((found <> 'W' AND found <> 'T' AND found <> 'P') OR found IS
NULL)
        ORDER BY priority ASC
    ";

If we change the ORDER BY to "priority ASC, reserve_id ASC" I think it will
behave more intuitively!

-- 
You are receiving this mail because:
You are watching all bug changes.
You are the assignee for the bug.
_______________________________________________
Koha-bugs mailing list
Koha-bugs@lists.koha-community.org
https://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs
website : http://www.koha-community.org/
git : http://git.koha-community.org/
bugs : http://bugs.koha-community.org/

Reply via email to