From: erickson Date: Wed, 13 Sep 2006 15:34:29 +0000 (+0000) Subject: running penalty server before we return from the payment method to ensure the staff... X-Git-Url: https://git.evergreen-ils.org/?p=Evergreen.git;a=commitdiff_plain;h=4294902c8d620551181536f1a427ad67391a4f46 running penalty server before we return from the payment method to ensure the staff client gets the latest penalties on user update git-svn-id: svn://svn.open-ils.org/ILS/trunk@6079 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- diff --git a/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm b/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm index 711c5e8215..000d85a7d6 100644 --- a/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm +++ b/Open-ILS/src/perlmods/OpenILS/Application/Circ/Money.pm @@ -184,8 +184,6 @@ sub make_payments { $apputils->commit_db_session($session); - $client->respond_complete(1); - # ------------------------------------------------------------------------------ # Update the patron penalty info in the DB # ------------------------------------------------------------------------------ @@ -194,6 +192,8 @@ sub make_payments { patronid => $userid, ); + $client->respond_complete(1); + return undef; }