From: Mike Rylander Date: Fri, 5 Jun 2020 14:25:44 +0000 (-0400) Subject: Fetch penalties to alert staff that patron may have a circ-blocking issue X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=999b4ba300210893806833ba462a5a1288583014;p=working%2FEvergreen.git Fetch penalties to alert staff that patron may have a circ-blocking issue Signed-off-by: Mike Rylander --- 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' } }]);