From: dbs Date: Mon, 11 Jan 2010 20:06:49 +0000 (+0000) Subject: Limit patrons by their fine totals, not the number of overdue items. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=05980cba6ff1a8ea4758ee7028671e358b47053e;p=contrib%2FConifer.git 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. git-svn-id: svn://svn.open-ils.org/ILS-Contrib/conifer/trunk@750 6d9bc8c9-1ec2-4278-b937-99fde70a366f --- diff --git a/circ/circ_groups.js b/circ/circ_groups.js index 00dfbfa1b3..c41de654b4 100755 --- a/circ/circ_groups.js +++ b/circ/circ_groups.js @@ -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 },