Added org setting for turning on/off the cap-max-circ-fines-at-item-price functionality
authorerickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 13 Nov 2009 16:20:06 +0000 (16:20 +0000)
committererickson <erickson@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 13 Nov 2009 16:20:06 +0000 (16:20 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@14900 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/002.schema.config.sql
Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/0080.data.org-setting-max-fine-price-cap.sql [new file with mode: 0644]

index 8e18b2b..e20f1b7 100644 (file)
@@ -51,7 +51,7 @@ CREATE TABLE config.upgrade_log (
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
 
-INSERT INTO config.upgrade_log (version) VALUES ('0079'); -- senator
+INSERT INTO config.upgrade_log (version) VALUES ('0080'); -- berick
 
 CREATE TABLE config.bib_source (
        id              SERIAL  PRIMARY KEY,
index 7e982f8..243246a 100644 (file)
@@ -2476,3 +2476,11 @@ INSERT INTO config.org_unit_setting_type (name, label, description, datatype, fm
         'ccs', 
     );
 
+INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 
+    VALUES ( 
+        'circ.max_fine.cap_at_price',
+        oils_i18n_gettext('circ.max_fine.cap_at_price', 'Circ: Cap Max Fine at Item Price', 'coust', 'label'),
+        oils_i18n_gettext('circ.max_fine.cap_at_price', 'This prevents the system from charging more than the item price in overdue fines', 'coust', 'description'),
+        'bool' 
+    );
+
diff --git a/Open-ILS/src/sql/Pg/upgrade/0080.data.org-setting-max-fine-price-cap.sql b/Open-ILS/src/sql/Pg/upgrade/0080.data.org-setting-max-fine-price-cap.sql
new file mode 100644 (file)
index 0000000..b55bce5
--- /dev/null
@@ -0,0 +1,13 @@
+BEGIN;
+
+INSERT INTO config.upgrade_log (version) VALUES ('0080');
+
+INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 
+    VALUES ( 
+        'circ.max_fine.cap_at_price',
+        oils_i18n_gettext('circ.max_fine.cap_at_price', 'Circ: Cap Max Fine at Item Price', 'coust', 'label'),
+        oils_i18n_gettext('circ.max_fine.cap_at_price', 'This prevents the system from charging more than the item price in overdue fines', 'coust', 'description'),
+        'bool' 
+    );
+
+COMMIT;