[open-ils-commits] r750 - conifer/trunk/circ (dbs)
svn at svn.open-ils.org
svn at svn.open-ils.org
Mon Jan 11 15:06:54 EST 2010
Author: dbs
Date: 2010-01-11 15:06:49 -0500 (Mon, 11 Jan 2010)
New Revision: 750
Modified:
conifer/trunk/circ/circ_groups.js
Log:
Limit patrons by their fine totals, not the number of overdue items.
A limit of "1" meant that the fine totals in practice meant nothing.
Modified: conifer/trunk/circ/circ_groups.js
===================================================================
--- conifer/trunk/circ/circ_groups.js 2009-12-28 17:43:34 UTC (rev 749)
+++ conifer/trunk/circ/circ_groups.js 2010-01-11 20:06:49 UTC (rev 750)
@@ -15,37 +15,37 @@
'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
},
More information about the open-ils-commits
mailing list