]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/XXXX.data.lp1705302-update-receipt-template-setting-descriptions.sql
ae4c590b2b1f231bb15e72ef11d6de1aaf727a1a
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / XXXX.data.lp1705302-update-receipt-template-setting-descriptions.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
4
5 UPDATE config.org_unit_setting_type 
6         SET description = oils_i18n_gettext(
7             'circ.staff_client.receipt.alert_text',
8             'Text to be inserted into Print Templates in place of {{includes.alert_text}}',
9             'cwst', 'label') 
10         WHERE name = 'circ.staff_client.receipt.alert_text';
11 UPDATE config.org_unit_setting_type 
12         SET description = oils_i18n_gettext(
13             'circ.staff_client.receipt.event_text',
14             'Text to be inserted into Print Templates in place of {{includes.event_text}}',
15             'cwst', 'label') 
16         WHERE name = 'circ.staff_client.receipt.event_text';
17 UPDATE config.org_unit_setting_type 
18         SET description = oils_i18n_gettext(
19             'circ.staff_client.receipt.footer_text',
20             'Text to be inserted into Print Templates in place of {{includes.footer_text}}',
21             'cwst', 'label') 
22         WHERE name = 'circ.staff_client.receipt.footer_text';
23 UPDATE config.org_unit_setting_type 
24         SET description = oils_i18n_gettext(
25             'circ.staff_client.receipt.header_text',
26             'Text to be inserted into Print Templates in place of {{includes.header_text}}',
27             'cwst', 'label') 
28         WHERE name = 'circ.staff_client.receipt.header_text';
29 UPDATE config.org_unit_setting_type 
30         SET description = oils_i18n_gettext(
31             'circ.staff_client.receipt.notice_text',
32             'Text to be inserted into Print Templates in place of {{includes.notice_text}}',
33             'cwst', 'label') 
34         WHERE name = 'circ.staff_client.receipt.notice_text';
35
36 COMMIT;