From 7a1b35ea5519ee37d932e9fc0910eaa4a16d2f06 Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Tue, 3 Aug 2021 12:45:25 -0400 Subject: [PATCH] LP1936233 Handle aged circs; sanity checks Signed-off-by: Bill Erickson --- .../app/staff/cat/item/circ-history.component.html | 19 +++++++----- .../src/app/staff/cat/item/summary.component.html | 36 +++++++++++++--------- 2 files changed, 33 insertions(+), 22 deletions(-) diff --git a/Open-ILS/src/eg2/src/app/staff/cat/item/circ-history.component.html b/Open-ILS/src/eg2/src/app/staff/cat/item/circ-history.component.html index f1f0b181c5..80106ea1b6 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/item/circ-history.component.html +++ b/Open-ILS/src/eg2/src/app/staff/cat/item/circ-history.component.html @@ -8,13 +8,18 @@
diff --git a/Open-ILS/src/eg2/src/app/staff/cat/item/summary.component.html b/Open-ILS/src/eg2/src/app/staff/cat/item/summary.component.html index c9a5548660..b950eb883b 100644 --- a/Open-ILS/src/eg2/src/app/staff/cat/item/summary.component.html +++ b/Open-ILS/src/eg2/src/app/staff/cat/item/summary.component.html @@ -43,7 +43,7 @@
Due Date
- + {{circInfo.currentCirc | egDueDate}}
@@ -67,7 +67,7 @@
Checkout Date
- + {{circInfo.circSummary.start_time() | egDateTime}}
@@ -88,7 +88,7 @@
Renewal Type
- +
OPAC
Desk
Phone
@@ -98,7 +98,7 @@
Checkout Workstation
- + {{circInfo.circSummary.checkout_workstation()}}
@@ -115,11 +115,13 @@
Total Circs
-
{{circInfo.totalCircs}}
+
+ {{circInfo.totalCircs}} +
Duration Rule
- + {{circInfo.currentCirc.duration_rule().name()}}
@@ -133,11 +135,13 @@
Total Circs - Current Year
-
{{circInfo.circsThisYear}}
+
+ {{circInfo.circsThisYear}} +
Recurring Fine Rule
- + {{circInfo.currentCirc.recurring_fine_rule().name()}}
@@ -151,11 +155,13 @@
Total Circs - Prev Year
-
{{circInfo.circsPrevYear}}
+
+ {{circInfo.circsPrevYear}} +
Max Fine Rule
- + {{circInfo.currentCirc.max_fine_rule().name()}}
@@ -173,7 +179,7 @@
Checkin Time
- + {{circInfo.currentCirc.checkin_time() || circInfo.circSummary.last_checkin_time() | egDateTime}} @@ -186,21 +192,21 @@
Renewal Workstation
- + {{circInfo.circSummary.last_renewal_workstation()}}
Remaining Renewals
- + {{circInfo.currentCirc.renewal_remaining()}}
Checkin Scan Time
- + {{circInfo.currentCirc.checkin_scan_time() || circInfo.circSummary.last_checkin_scan_time() | egDateTime}} @@ -231,7 +237,7 @@
Checkin Workstation
- + {{circInfo.currentCirc.checkin_workstation().name()}} -- 2.11.0