From 4b2ffdd1ff9cc806c1a241970d0b4b4df8450ff1 Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Wed, 2 Apr 2014 10:36:01 -0400 Subject: [PATCH] add lost with overdue count in alt patron summary and fix the total out value. This ignores the org unit setting circ.tally_lost and hardcodes the behavior. Signed-off-by: Jason Etheridge --- Open-ILS/src/templates/opac/PatronSummary.tt2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/templates/opac/PatronSummary.tt2 b/Open-ILS/src/templates/opac/PatronSummary.tt2 index 4ec1a6db50..80f6e1ac7f 100644 --- a/Open-ILS/src/templates/opac/PatronSummary.tt2 +++ b/Open-ILS/src/templates/opac/PatronSummary.tt2 @@ -123,8 +123,8 @@ [% l( 'Items Overdue: [_1] Total: [_2]', - ctx.checked_out_count.overdue + ctx.checked_out_count.long_overdue, - ctx.checked_out_count.out + ctx.checked_out_count.overdue + ctx.checked_out_count.long_overdue + ctx.checked_out_count.lost, + ctx.checked_out_count.total || 0 ) | html %]
-- 2.11.0