[open-ils-commits] [GIT] Evergreen ILS branch rel_3_3 updated. 317f92c9fa2fd49089c80dd0755999abf5cd06f0

Evergreen Git git at git.evergreen-ils.org
Fri Feb 21 11:01:22 EST 2020


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_3 has been updated
       via  317f92c9fa2fd49089c80dd0755999abf5cd06f0 (commit)
      from  e479598477cd3d28c08572614cb71edbd6a0ea1f (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 317f92c9fa2fd49089c80dd0755999abf5cd06f0
Author: Michele Morgan <mmorgan at noblenet.org>
Date:   Thu Aug 8 14:01:00 2019 -0400

    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 <mmorgan at noblenet.org>
    Signed-off-by: Dawn Dale <ddale at georgialibraries.org>
    Signed-off-by: Chris Sharp <csharp at georgialibraries.org>

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 @@
   <div class="flex-row">
     <div class="flex-cell">[% l('Checkout Date') %]</div>
     <div class="flex-cell well">
-      {{circ.xact_start() | date:egDateAndTimeFormat}}
+      {{circ_summary.start_time() | date:egDateAndTimeFormat}}
     </div>
   </div>
 
   <div class="flex-row">
     <div class="flex-cell">[% l('Checkout Workstation') %]</div>
     <div class="flex-cell well">
-      {{circ.workstation().name()}}
+      {{circ_summary.checkout_workstation()}}
     </div>
   </div>
 
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 @@
     </div>
 
     <div class="flex-cell">[% l('Checkout Date') %]</div>
-    <div class="flex-cell well">{{circ.xact_start() | date:egDateAndTimeFormat}}</div>
+    <div class="flex-cell well">{{circ_summary.start_time() | date:egDateAndTimeFormat}}</div>
   </div>
 
   <div class="flex-row">
@@ -78,7 +78,7 @@
     </div>
 
     <div class="flex-cell">[% l('Checkout Workstation') %]</div>
-    <div class="flex-cell well">{{circ.workstation().name()}}</div>
+    <div class="flex-cell well">{{circ_summary.checkout_workstation()}}</div>
   </div>
 
   <div class="flex-row">

-----------------------------------------------------------------------

Summary of changes:
 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(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list