From 41bc648af1e803422c72306506345b6dc5909aaa Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Tue, 17 Aug 2021 17:15:49 -0400 Subject: [PATCH] LP1904036 Checkout grid title/barcode links Signed-off-by: Bill Erickson Signed-off-by: Jane Sandberg Signed-off-by: Galen Charlton --- .../src/eg2/src/app/staff/circ/patron/checkout.component.html | 11 +++++++++-- .../src/eg2/src/app/staff/circ/patron/checkout.component.ts | 2 ++ Open-ILS/src/eg2/src/app/staff/circ/patron/patron.service.ts | 2 ++ 3 files changed, 13 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.html b/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.html index df1d397865..408b5026a7 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.html +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.html @@ -72,9 +72,15 @@ + + + {{r.copy.barcode()}} + + + - {{r.title}} + {{r.title}} {{r.title}} @@ -112,7 +118,8 @@ timezoneContextOrg="circ.circ_lib" dateOnlyIntervalField="circ.duration" datatype="timestamp"> - + diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.ts b/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.ts index ed99cb5af3..804adadb9f 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/checkout.component.ts @@ -207,6 +207,8 @@ export class CheckoutComponent implements OnInit, AfterViewInit { dueDate: null, copyAlertCount: 0, nonCatCount: 0, + record: result.record, + volume: result.volume, title: result.title, author: result.author, isbn: result.isbn diff --git a/Open-ILS/src/eg2/src/app/staff/circ/patron/patron.service.ts b/Open-ILS/src/eg2/src/app/staff/circ/patron/patron.service.ts index db322644b4..cf4ce450bd 100644 --- a/Open-ILS/src/eg2/src/app/staff/circ/patron/patron.service.ts +++ b/Open-ILS/src/eg2/src/app/staff/circ/patron/patron.service.ts @@ -22,6 +22,8 @@ export interface CircGridEntry { isbn?: string; copy?: IdlObject; circ?: IdlObject; + volume?: IdlObject; + record?: IdlObject; dueDate?: string; copyAlertCount: number; nonCatCount: number; -- 2.11.0