BEFORE INSERT OR UPDATE ON config.db_patch_dependencies
FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check ('deprecates');
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1252', :eg_version); -- sandbergja/rhamby/gmcharlt
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1253', :eg_version); -- berick/terranm/gmcharlt
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1253', :eg_version);
+
+INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
+VALUES (
+ 'eg.print.template_context.booking_capture', 'gui', 'string',
+ oils_i18n_gettext(
+ 'eg.print.template_context.booking_capture',
+ 'Print Template Context: booking_capture',
+ 'cwst', 'label'
+ )
+);
+
+COMMIT;
+++ /dev/null
-
-BEGIN;
-
--- SELECT evergreen.upgrade_deps_block_check('TODO', :eg_version);
-
-INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
-VALUES (
- 'eg.print.template_context.booking_capture', 'gui', 'string',
- oils_i18n_gettext(
- 'eg.print.template_context.booking_capture',
- 'Print Template Context: booking_capture',
- 'cwst', 'label'
- )
-);
-
-COMMIT;
* The staff catalog now has the ability to add all search results (up to
1,000 titles) to the basket in one fell swoop.
* Add 'All Videos' as a search format.
+ * Server-side print templates can now have print contexts set.
+ * Add ability to set the print context for a print template to "No-Print"
+ to specify, well, that a given receipt should never be printed.
For acknowledgments: Carmen Oleskevich (French translations; staff member at BC Coop)