[GIT] Evergreen ILS branch rel_3_13 updated. 87d7b6c85a97ad5164e8839127ff0ad4860804b2

This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Evergreen ILS". The branch, rel_3_13 has been updated via 87d7b6c85a97ad5164e8839127ff0ad4860804b2 (commit) from b1d1c2bacc38777a87c44c57ce2526acfe373b8e (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 87d7b6c85a97ad5164e8839127ff0ad4860804b2 Author: Tiffany Little <tlittle@georgialibraries.org> Date: Mon Jan 13 13:20:48 2025 -0500 LP2091178 Fix Acq providers codes in comboboxes Returns acq providers combobox display to use code rather than name. Release-note: Restores acquisitions provider codes in select boxes. Signed-off-by: Tiffany Little <tlittle@georgialibraries.org> Signed-off-by: Jason Stephenson <jason@sigio.com> Signed-off-by: Stephanie Leary <stephanie.leary@equinoxoli.org> diff --git a/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.ts b/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.ts index 88fa446631..011cb62d7b 100644 --- a/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.ts +++ b/Open-ILS/src/eg2/src/app/share/combobox/combobox.component.ts @@ -302,7 +302,7 @@ implements ControlValueAccessor, OnInit, AfterViewInit, OnChanges { return fm.name() + ' (' + this.getOrgShortname(fm.owning_lib()) + ')'; break; case 'acqpro': - return fm.name() + ' (' + this.getOrgShortname(fm.owner()) + ')'; + return fm.code() + ' (' + this.getOrgShortname(fm.owner()) + ')'; break; default: const field = this.idlField; diff --git a/Open-ILS/src/eg2/src/app/share/fm-editor/fm-editor.component.ts b/Open-ILS/src/eg2/src/app/share/fm-editor/fm-editor.component.ts index 9ccde4e069..9eb692ce32 100644 --- a/Open-ILS/src/eg2/src/app/share/fm-editor/fm-editor.component.ts +++ b/Open-ILS/src/eg2/src/app/share/fm-editor/fm-editor.component.ts @@ -480,7 +480,7 @@ export class FmRecordEditorComponent return fm.name() + ' (' + this.getOrgShortname(fm.owning_lib()) + ')'; break; case 'acqpro': - return fm.name() + ' (' + this.getOrgShortname(fm.owner()) + ')'; + return fm.code() + ' (' + this.getOrgShortname(fm.owner()) + ')'; break; default: // no equivalent of idlIncludeLibraryInLabel yet ----------------------------------------------------------------------- Summary of changes: Open-ILS/src/eg2/src/app/share/combobox/combobox.component.ts | 2 +- Open-ILS/src/eg2/src/app/share/fm-editor/fm-editor.component.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) hooks/post-receive -- Evergreen ILS
participants (1)
-
Git User