From: Cesar Velez <cesar.velez@equinoxinitiative.org> Date: Mon, 18 Dec 2017 21:10:10 +0000 (-0500) Subject: LP#1732275 - Add Notices Data to Patron Itemsout X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=99fc86c8cff8a3db0566e6769c0c4cfff0b84906;p=contrib%2FConifer.git LP#1732275 - Add Notices Data to Patron Itemsout Prep upgrade script for new YAOUS: 'webstaff.circ.itemsout_notice_count_excludes_courtesies' Signed-off-by: Cesar Velez <cesar.velez@equinoxinitiative.org> Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org> Signed-off-by: Kathy Lussier <klussier@masslnc.org> Conflicts: Open-ILS/src/sql/Pg/950.data.seed-values.sql Signed-off-by: Kathy Lussier <klussier@masslnc.org> --- diff --git a/Open-ILS/src/sql/Pg/950.data.seed-values.sql b/Open-ILS/src/sql/Pg/950.data.seed-values.sql index f6c7d19a93..720a359111 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -5432,6 +5432,20 @@ INSERT into config.org_unit_setting_type 'Maximum number of duplicate title or metarecord holds allowed per patron.', 'coust', 'description'), 'integer', null) +,( 'webstaff.circ.itemsout_notice_count_excludes_courtesies', 'circ', + oils_i18n_gettext( + 'webstaff.circ.itemsout_notice_count_excludes_courtesies', + 'Exclude Courtesy Notices from Patrons Itemsout Notices Count', + 'coust', + 'label' + ), + oils_i18n_gettext( + 'webstaff.circ.itemsout_notice_count_excludes_courtesies', + 'Exclude Courtesy Notices from Patrons Itemsout Notices Count', + 'coust', + 'description' + ), + 'bool', null) ; UPDATE config.org_unit_setting_type diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.schema.webstaff.circ.itemsout_notice_count_excludes_courtesies.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.schema.webstaff.circ.itemsout_notice_count_excludes_courtesies.sql new file mode 100644 index 0000000000..dd43cfdd5b --- /dev/null +++ b/Open-ILS/src/sql/Pg/upgrade/XXXX.schema.webstaff.circ.itemsout_notice_count_excludes_courtesies.sql @@ -0,0 +1,9 @@ +BEGIN; + +-- SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version); + +INSERT into config.org_unit_setting_type (name, label, grp, description, datatype) +values ('webstaff.circ.itemsout_notice_count_excludes_courtesies','Exclude Courtesy Notices from Patrons Itemsout Notices Count', + 'circ', 'Exclude Courtesy Notices from Patron Itemsout Notices Count', 'bool'); + +COMMIT;