From: Dan Scott Date: Tue, 20 Sep 2011 17:01:32 +0000 (-0400) Subject: OSBO really did want $0.25/hour for all reserve periods X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=77306557cea25696b290c1a2865ecef72fed923f;p=contrib%2FConifer.git OSBO really did want $0.25/hour for all reserve periods Signed-off-by: Dan Scott --- diff --git a/Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js b/Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js index 6225838752..96929d230a 100644 --- a/Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js +++ b/Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js @@ -47,7 +47,7 @@ res_day_match = res_day_re.exec(copy.circ_modifier); res_hour_match = res_hour_re.exec(copy.circ_modifier); if (res_day_match) { result.durationRule = res_day_match[1] + '_days_0_renew'; - result.recurringFinesRule = '25_cent_per_day'; + result.recurringFinesRule = '25_cent_per_hour'; } else if (res_hour_match) { result.durationRule = res_hour_match[1] + '_hours_0_renew'; result.recurringFinesRule = '25_cent_per_hour';