]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0011.data.org-setting-no-autoprint.sql
Stamping upgrade scripts for Vandelay default match set, with minor adjustments
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0011.data.org-setting-no-autoprint.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0011');
4
5 INSERT INTO config.org_unit_setting_type (name, label, description, datatype) VALUES (
6     'circ.staff_client.do_not_auto_attempt_print',
7     'Disable Automatic Print Attempt Type List',
8     'Disable automatic print attempts from staff client interfaces for the receipt types in this list.  Possible values: "Checkout", "Bill Pay", "Hold Slip", "Transit Slip", and "Hold/Transit Slip".  This is different from the Auto-Print checkbox in the pertinent interfaces in that it disables automatic print attempts altogether, rather than encouraging silent printing by suppressing the print dialog.  The Auto-Print checkbox in these interfaces have no effect on the behavior for this setting.  In the case of the Hold, Transit, and Hold/Transit slips, this also suppresses the alert dialogs that precede the print dialog (the ones that offer Print and Do Not Print as options).',
9     'array' 
10 );
11
12 COMMIT;