From: Jane Sandberg Date: Sat, 29 Oct 2022 04:25:34 +0000 (-0700) Subject: LP1829418 release notes X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=a9868050d41c453952ceed3e8500a4e3c9610593;p=evergreen%2Fmasslnc.git LP1829418 release notes Signed-off-by: Jane Sandberg --- diff --git a/docs/RELEASE_NOTES_NEXT/Circulation/opac-visible-stat-cats.adoc b/docs/RELEASE_NOTES_NEXT/Circulation/opac-visible-stat-cats.adoc new file mode 100644 index 0000000000..2bbad00754 --- /dev/null +++ b/docs/RELEASE_NOTES_NEXT/Circulation/opac-visible-stat-cats.adoc @@ -0,0 +1,24 @@ +== OPAC-visible statisitical categories are now visible in the OPAC == + +This release restores a previously available feature: the ability to +display statistical categories (stat cats) in the OPAC. If an +item stat cat has "OPAC Visibility" set to true, its values will +display in the record page's item table, underneath the call number. +If a patron stat cat has "OPAC Visibility" set to true, its values +will display in the patron's account under Preferences -> +Personal Information (below the account expiration date). + +Since these values have not been visible for some time, Evergreen +libraries may wish to review them before making them public. To +set all stat cats to private, so that OPAC visibility can be +restored on a case-by-case basis after review, you can use the +following SQL: + +[,sql] +---- +-- Item stat cats +UPDATE asset.stat_cat SET opac_visible=false WHERE opac_visible=true; + +-- Patron stat cats +UPDATE actor.stat_cat SET opac_visible=false WHERE opac_visible=true; +---- \ No newline at end of file