From: Dan Wells Date: Fri, 21 Jun 2019 15:36:44 +0000 (-0400) Subject: LP#1759343 Clean up data seed values X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=bb5163cb9ffa8269717898bccc84b5f3dab9aec3;p=working%2FEvergreen.git LP#1759343 Clean up data seed values 1) Add missing translation wrapper for new annotatepayment setting. 2) While we are at it, try to stem the proliferation of workstation setting INSERT chunks. (More could be done here...) Signed-off-by: Dan Wells Signed-off-by: Chris Sharp --- 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 399b4d1186..f956571d82 100644 --- a/Open-ILS/src/sql/Pg/950.data.seed-values.sql +++ b/Open-ILS/src/sql/Pg/950.data.seed-values.sql @@ -18485,6 +18485,13 @@ VALUES ( 'cwst', 'label' ) ), ( + 'eg.circ.bills.annotatepayment', 'circ', 'bool', + oils_i18n_gettext( + 'eg.circ.bills.annotatepayment', + 'Bills: Annotate Payment', + 'cwst', 'label' + ) +), ( 'circ.renew.strict_barcode', 'circ', 'bool', oils_i18n_gettext( 'circ.renew.strict_barcode', @@ -18555,6 +18562,13 @@ VALUES ( 'cwst', 'label' ) ), ( + 'catalog.record.holds.prefetch', 'cat', 'bool', + oils_i18n_gettext( + 'catalog.record.holds.prefetch', + 'Pre-Fetch Record Holds', + 'cwst', 'label' + ) +), ( 'eg.circ.patron.search.include_inactive', 'circ', 'bool', oils_i18n_gettext( 'eg.circ.patron.search.include_inactive', @@ -18863,6 +18877,13 @@ VALUES ( 'cwst', 'label' ) ), ( + 'eg.grid.circ.patron.group_members', 'gui', 'object', + oils_i18n_gettext( + 'eg.grid.circ.patron.group_members', + 'Grid Config: circ.patron.group_members', + 'cwst', 'label' + ) +), ( 'eg.grid.serials.mfhd_grid', 'gui', 'object', oils_i18n_gettext( 'eg.grid.serials.mfhd_grid', @@ -19457,16 +19478,3 @@ VALUES ( oils_i18n_gettext(30, 'Generic Verify', 'cuat', 'label') ); - -INSERT INTO config.workstation_setting_type - (name, grp, datatype, label) -VALUES ( - 'eg.grid.circ.patron.group_members', 'gui', 'object', - oils_i18n_gettext( - 'eg.grid.circ.patron.group_members', - 'Grid Config: circ.patron.group_members', - 'cwst', 'label') -); - -INSERT INTO config.workstation_setting_type (name,label,grp,datatype) -VALUES ('eg.circ.bills.annotatepayment','Bills: Annotate Payment', 'circ', 'bool');