LP#1777675: Add inventory checkin modifier setting to server storage
authorKathy Lussier <klussier@masslnc.org>
Tue, 21 Aug 2018 17:04:13 +0000 (13:04 -0400)
committerKathy Lussier <klussier@masslnc.org>
Tue, 4 Sep 2018 18:49:56 +0000 (14:49 -0400)
Allows the inventory checkin modifier value to be stored on the server instead
of the browser as is done with other checkin modifier settings.

Signed-off-by: Kathy Lussier <klussier@masslnc.org>
Signed-off-by: Dan Wells <dbw2@calvin.edu>
Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/XXXX-create-inventory-workstation-and-date.sql

index 7973a4d..d9e75eb 100644 (file)
@@ -18455,6 +18455,13 @@ VALUES (
         'cwst', 'label'
     )
 ), (
+    'eg.circ.checkin.do_inventory_update', 'circ', 'bool',
+    oils_i18n_gettext (
+             'eg.circ.checkin.do_inventory_update',
+             'Checkin: Update Inventory',
+             'cwst', 'label'
+    )
+), (
     'eg.circ.patron.summary.collapse', 'circ', 'bool',
     oils_i18n_gettext(
         'eg.circ.patron.summary.collapse',
index b4dcdf8..9465a68 100644 (file)
@@ -26,4 +26,14 @@ CREATE CONSTRAINT TRIGGER inherit_asset_last_copy_inventory_copy_fkey
         AFTER UPDATE OR INSERT ON asset.last_copy_inventory
         DEFERRABLE FOR EACH ROW EXECUTE PROCEDURE evergreen.asset_last_copy_inventory_copy_inh_fkey();
 
-COMMIT;
\ No newline at end of file
+INSERT into config.workstation_setting_type (name, grp, datatype, label)
+VALUES (
+    'eg.circ.checkin.do_inventory_update', 'circ', 'bool',
+    oils_i18n_gettext (
+             'eg.circ.checkin.do_inventory_update',
+             'Checkin: Update Inventory',
+             'cwst', 'label'
+    )
+);
+
+COMMIT;