LP#1919500 - Add Checkout Workstation and Checkout Staff to Item Status -> Circ Histo...
authorJosh Stompro <stompro@stompro.org>
Wed, 17 Mar 2021 19:24:34 +0000 (14:24 -0500)
committerJason Stephenson <jason@sigio.com>
Wed, 30 Mar 2022 13:21:24 +0000 (09:21 -0400)
Add two more data fields to the Circ History List in Item Status, so that
it is possible to see them after an item is renewed.

Signed-off-by: Josh Stompro <stompro@stompro.org>
Signed-off-by: Michele Morgan <mmorgan@noblenet.org>
Signed-off-by: Jason Stephenson <jason@sigio.com>

Open-ILS/src/templates/staff/cat/item/t_circ_list_pane.tt2

index 5165571..f64984e 100644 (file)
@@ -45,6 +45,8 @@
     <div class="flex-cell well">{{circ.xact_start() | date:egDateAndTimeFormat}}</div>
     <div class="flex-cell">[% l('Due Date') %]</div>
     <div class="flex-cell well">{{circ.due_date() | egDueDate:egDateAndTimeFormat:circ.circ_lib():circ.duration()}}</div>
+    <div class="flex-cell">[% l('Check Out Workstation') %]</div>
+    <div class="flex-cell well">{{circ.workstation().name()}}</div>
     <div class="flex-cell">[% l('Stop Fines Time') %]</div>
     <div class="flex-cell well">{{circ.stop_fines_time() | date:egDateAndTimeFormat}}</div>
     <div class="flex-cell">[% l('Checkin Time') %]</div>
@@ -60,6 +62,8 @@
       circ.opac_renewal() == 't' ||
       circ.auto_renewal() == 't'
     }}</div>
+    <div class="flex-cell">[% l('Check Out Staff') %]</div>
+    <div class="flex-cell well">{{circ.circ_staff()}}</div>
     <div class="flex-cell">[% l('Stop Fines Reason') %]</div>
     <div class="flex-cell well">{{circ.stop_fines()}}</div>
     <div class="flex-cell">[% l('Check In Library') %]</div>