[GIT] Evergreen ILS branch main updated. 951eec731369ffa6225cef12c3fb4473c35874a9

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, main has been updated via 951eec731369ffa6225cef12c3fb4473c35874a9 (commit) from fe5463be4ce73b6cc3cd6031165fba2878addf5f (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 951eec731369ffa6225cef12c3fb4473c35874a9 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 0c338abcc4..6cb7278be5 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 @@ -313,7 +313,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