From 999b4ba300210893806833ba462a5a1288583014 Mon Sep 17 00:00:00 2001 From: Mike Rylander Date: Fri, 5 Jun 2020 10:25:44 -0400 Subject: [PATCH] Fetch penalties to alert staff that patron may have a circ-blocking issue Signed-off-by: Mike Rylander --- Open-ILS/src/perlmods/lib/OpenILS/Application/Curbside.pm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Curbside.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Curbside.pm index 717008a3b9..606a917156 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Curbside.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Curbside.pm @@ -237,7 +237,7 @@ sub fetch_arrived { },{ ($limit ? (limit => $limit) : ()), ($offset ? (offset => $offset) : ()), - flesh => 2, flesh_fields => {acsp => ['patron'], au => ['card']}, + flesh => 2, flesh_fields => {acsp => ['patron'], au => ['card','standing_penalties']}, order_by => { acsp => 'arrival' } }]); @@ -324,7 +324,7 @@ sub fetch_staged { },{ ($limit ? (limit => $limit) : ()), ($offset ? (offset => $offset) : ()), - flesh => 2, flesh_fields => {acsp => ['patron'], au => ['card']}, + flesh => 2, flesh_fields => {acsp => ['patron'], au => ['card','standing_penalties']}, order_by => { acsp => 'slot' } }]); @@ -419,7 +419,7 @@ sub fetch_to_be_staged { },{ ($limit ? (limit => $limit) : ()), ($offset ? (offset => $offset) : ()), - flesh => 2, flesh_fields => {acsp => ['patron'], au => ['card']}, + flesh => 2, flesh_fields => {acsp => ['patron'], au => ['card','standing_penalties']}, order_by => { acsp => 'slot' } }]); -- 2.11.0