[Koha-bugs] [Bug 8137] Checkout limit by patron category for all libraries

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Mon Sep 24 15:59:31 CEST 2012


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

Koha Team Lyon 3 <koha at univ-lyon3.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |koha at univ-lyon3.fr

--- Comment #7 from Koha Team Lyon 3 <koha at univ-lyon3.fr> ---
The Circcontrol had to take into account the table default_borrower_circ_rules.
This table is filled with values added in smart-rules.pl when selected
libraries is "all libraries".

I'm not sure that we have to check circcontrol here cause the limit is true for
all the libraries so you don't matter if it's the library of patrons or items.

In Circulation.pm, we can read :
"maxissueqty - maximum number of loans that a patron of the given category can
have at the given branch.  If the value is undef, no limit.
This will first check for a specific branch and category match from
branch_borrower_circ_rules. If no rule is found, it will then check
default_branch_circ_rules (same branch, default category).  If no rule is
found, it will then check default_borrower_circ_rules (default branch, same
category), then failing that, default_circ_rules default branch, default
category)."

The problem is in "if no rule is found". I think the level defined for all
libraries must win on the level for each library.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list