Limit patrons by their fine totals, not the number of overdue items.
authordbs <dbs@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Mon, 11 Jan 2010 20:06:49 +0000 (20:06 +0000)
committerdbs <dbs@6d9bc8c9-1ec2-4278-b937-99fde70a366f>
Mon, 11 Jan 2010 20:06:49 +0000 (20:06 +0000)
A limit of "1" meant that the fine totals in practice meant nothing.

git-svn-id: svn://svn.open-ils.org/ILS-Contrib/conifer/trunk@750 6d9bc8c9-1ec2-4278-b937-99fde70a366f

circ/circ_groups.js

index 00dfbfa..c41de65 100755 (executable)
@@ -15,37 +15,37 @@ var GROUP_CONFIG = {
        'Patron' : {
                maxItemsOut         : 50,
                fineThreshold       : 10,
-               overdueThreshold    : 1,
+               overdueThreshold    : 100,
                maxHolds            : -1
        },
        'Faculty' : {
                maxItemsOut         : 60,
                fineThreshold       : 10,
-               overdueThreshold    : 1,
+               overdueThreshold    : 100,
                maxHolds            : -1
        },
        'Graduate' : {
                maxItemsOut         : 60,
                fineThreshold       : 10,
-               overdueThreshold    : 1,
+               overdueThreshold    : 100,
                maxHolds            : -1
        },
        'Undergraduate' : {
                maxItemsOut         : 30,
                fineThreshold       : 10,
-               overdueThreshold    : 1,
+               overdueThreshold    : 100,
                maxHolds            : -1
        },
        'Staff members' : {
                maxItemsOut         : 30,
                fineThreshold       : 10,
-               overdueThreshold    : 1,
+               overdueThreshold    : 100,
                maxHolds            : -1
        },
        'Readers' : {
                maxItemsOut         : 15,
                fineThreshold       : 10,
-               overdueThreshold    : 1,
+               overdueThreshold    : 100,
                maxHolds            : -1
        },