http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=8364

          Priority: P5 - low
 Change sponsored?: ---
            Bug ID: 8364
                CC: [email protected], [email protected]
          Assignee: [email protected]
           Summary: Inconsistency in hold count
          Severity: normal
    Classification: Unclassified
                OS: All
          Reporter: [email protected]
          Hardware: All
            Status: NEW
           Version: master
         Component: Circulation
           Product: Koha

If a Koha is set with ReservesControlBranch syspref set to ItemHomeLibrary
item-level-itype=yes, a patron placing a "first available" hold won't be
counted in the total number of reserves placed.
The SQL is SELECT 
  count(*) as count
  FROM reserves
  LEFT JOIN items USING (itemnumber)
  LEFT JOIN biblioitems ON (reserves.biblionumber=biblioitems.biblionumber)
  LEFT JOIN borrowers USING (borrowernumber)
WHERE ...
  AND items.homebranch = ?

=> items is not defined, the hold is not counted

-- 
You are receiving this mail because:
You are the assignee for the bug.
You are watching all bug changes.
_______________________________________________
Koha-bugs mailing list
[email protected]
http://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