From: Galen Charlton Date: Tue, 16 Jun 2020 21:06:56 +0000 (-0400) Subject: LP#1879983: make patron arrival update freshness check for to-be-staged tab X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=24c39186586bf047a31f1634c955a56700ca0d38;p=working%2FEvergreen.git LP#1879983: make patron arrival update freshness check for to-be-staged tab Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Curbside.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Curbside.pm index 263e77c4b4..a98a66f6b6 100644 --- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Curbside.pm +++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Curbside.pm @@ -488,7 +488,7 @@ sub fetch_latest_to_be_staged { ] }]); - return md5_hex( join(',', map { join('-', $_->id(), $_->stage_staff() // '') } @$slots) ); + return md5_hex( join(',', map { join('-', $_->id(), $_->stage_staff() // '', $_->arrival() // '') } @$slots) ); } __PACKAGE__->register_method( method => "fetch_latest_to_be_staged",