From: Dan Scott Date: Thu, 11 Aug 2011 13:42:30 +0000 (-0400) Subject: Add LEDL MISC 1 year 0 renew rule X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=51b79fdb8bed153c69c6c519f00eee479e2846c2;p=contrib%2FConifer.git Add LEDL MISC 1 year 0 renew rule This had been working in production, but apparently never got checked into git? Signed-off-by: Dan Scott --- diff --git a/Open-ILS/src/javascript/backend/circ/circ_duration_OWA.js b/Open-ILS/src/javascript/backend/circ/circ_duration_OWA.js index d3f589f023..3b8e7d913e 100644 --- a/Open-ILS/src/javascript/backend/circ/circ_duration_OWA.js +++ b/Open-ILS/src/javascript/backend/circ/circ_duration_OWA.js @@ -61,6 +61,9 @@ if (isValidPatron(patronProfile)) { case 'ILL-BOOK': result.durationRule = '3_weeks_0_renew'; break; + case 'LEDL MISC': + result.durationRule = '1_year_0_renew'; + break; case 'MEDIA': result.durationRule = 'OWA_' + profileFirst; break;