]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0584.data.org-setting-ui.circ.billing.uncheck_bills_and_unfocus_payment_box.sql
Merge remote branch 'working/user/shadowspar/ttopac-altcleanup' into template-toolkit...
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0584.data.org-setting-ui.circ.billing.uncheck_bills_and_unfocus_payment_box.sql
1 -- Evergreen DB patch XXXX.data.org-setting-ui.circ.billing.uncheck_bills_and_unfocus_payment_box.sql
2 --
3 -- New org setting ui.circ.billing.uncheck_bills_and_unfocus_payment_box
4 --
5 BEGIN;
6
7 -- check whether patch can be applied
8 SELECT evergreen.upgrade_deps_block_check('0584', :eg_version);
9
10 INSERT INTO config.org_unit_setting_type ( name, label, description, datatype ) 
11     VALUES ( 
12         'ui.circ.billing.uncheck_bills_and_unfocus_payment_box',
13         oils_i18n_gettext(
14             'ui.circ.billing.uncheck_bills_and_unfocus_payment_box',
15             'GUI: Uncheck bills by default in the patron billing interface',
16             'coust',
17             'label'
18         ),
19         oils_i18n_gettext(
20             'ui.circ.billing.uncheck_bills_and_unfocus_payment_box',
21             'Uncheck bills by default in the patron billing interface,'
22             || ' and focus on the Uncheck All button instead of the'
23             || ' Payment Received field.',
24             'coust',
25             'description'
26         ),
27         'bool'
28     );
29
30 COMMIT;