From a3e9b1833f0242c408264f35569f322296068806 Mon Sep 17 00:00:00 2001 From: Michele Morgan Date: Thu, 8 Aug 2019 14:01:00 -0400 Subject: [PATCH] LP1787415: Item Status checkout date and checkout workstation for renewed items Fixes Item Status Quick Summary and Recent Circ History to show the original checkout date and original checkout workstation for renewed items, instead of values from the most recent circ row. Signed-off-by: Michele Morgan Signed-off-by: Dawn Dale Signed-off-by: Chris Sharp --- Open-ILS/src/templates/staff/cat/item/t_circs_pane.tt2 | 4 ++-- Open-ILS/src/templates/staff/cat/item/t_summary_pane.tt2 | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Open-ILS/src/templates/staff/cat/item/t_circs_pane.tt2 b/Open-ILS/src/templates/staff/cat/item/t_circs_pane.tt2 index fcadfe8f8d..2eb548d40c 100644 --- a/Open-ILS/src/templates/staff/cat/item/t_circs_pane.tt2 +++ b/Open-ILS/src/templates/staff/cat/item/t_circs_pane.tt2 @@ -137,14 +137,14 @@
[% l('Checkout Date') %]
- {{circ.xact_start() | date:egDateAndTimeFormat}} + {{circ_summary.start_time() | date:egDateAndTimeFormat}}
[% l('Checkout Workstation') %]
- {{circ.workstation().name()}} + {{circ_summary.checkout_workstation()}}
diff --git a/Open-ILS/src/templates/staff/cat/item/t_summary_pane.tt2 b/Open-ILS/src/templates/staff/cat/item/t_summary_pane.tt2 index 46a6b02f89..865ee4e083 100644 --- a/Open-ILS/src/templates/staff/cat/item/t_summary_pane.tt2 +++ b/Open-ILS/src/templates/staff/cat/item/t_summary_pane.tt2 @@ -53,7 +53,7 @@
[% l('Checkout Date') %]
-
{{circ.xact_start() | date:egDateAndTimeFormat}}
+
{{circ_summary.start_time() | date:egDateAndTimeFormat}}
@@ -78,7 +78,7 @@
[% l('Checkout Workstation') %]
-
{{circ.workstation().name()}}
+
{{circ_summary.checkout_workstation()}}
-- 2.43.2