Adds a default 'non-system' billing type if there are no other such billing types...
authorphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Sat, 26 Sep 2009 03:38:28 +0000 (03:38 +0000)
committerphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Sat, 26 Sep 2009 03:38:28 +0000 (03:38 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@14170 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/0024.data.default_billing_type.sql [new file with mode: 0644]

index b94b121..c28fb1c 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 ('0022'); --miker
+INSERT INTO config.upgrade_log (version) VALUES ('0024'); -- phasefx
 
 CREATE TABLE config.bib_source (
        id              SERIAL  PRIMARY KEY,
index b97ee0e..d1319b7 100644 (file)
@@ -873,6 +873,7 @@ INSERT INTO config.billing_type (id, name, owner) VALUES
 
 SELECT SETVAL('config.billing_type_id_seq'::TEXT, 100);
 
+INSERT INTO config.billing_type (name, owner) VALUES ( oils_i18n_gettext('Misc', 'Misc', 'cbt', 'name'), 1);
 
 --006.data.permissions.sql:
 INSERT INTO permission.perm_list VALUES 
diff --git a/Open-ILS/src/sql/Pg/upgrade/0024.data.default_billing_type.sql b/Open-ILS/src/sql/Pg/upgrade/0024.data.default_billing_type.sql
new file mode 100644 (file)
index 0000000..f24a7a2
--- /dev/null
@@ -0,0 +1,8 @@
+BEGIN;
+
+INSERT INTO config.upgrade_log (version) VALUES ('0024');
+
+-- This only gets inserted if there are no other id > 100 billing types
+INSERT INTO config.billing_type (name, owner) SELECT DISTINCT oils_i18n_gettext('Misc', 'Misc', 'cbt', 'name'), 1 FROM config.billing_type_id_seq WHERE last_value < 101;
+
+COMMIT;