OSBO really did want $0.25/hour for all reserve periods
authorDan Scott <dscott@laurentian.ca>
Tue, 20 Sep 2011 17:01:32 +0000 (13:01 -0400)
committerDan Scott <dscott@laurentian.ca>
Fri, 30 Dec 2011 18:13:25 +0000 (13:13 -0500)
Signed-off-by: Dan Scott <dscott@laurentian.ca>
Open-ILS/src/javascript/backend/circ/circ_duration_OSBO.js

index 6225838..96929d2 100644 (file)
@@ -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';