From ca6d11b1305a57db9254f21680a4880750b40162 Mon Sep 17 00:00:00 2001 From: Jason Etheridge Date: Wed, 9 Jan 2013 15:14:27 -0500 Subject: [PATCH] lp10962307 renewing items ACTOR_USER_NOT_FOUND err This fix simply stops the Skull & Crossbones error dialog from happening when a renewal call results in ACTOR_USER_NOT_FOUND. It doesn't address the fact that we used to get ACTION_CIRCULATION_NOT_FOUND instead, which is more fathomable by staff. Signed-off-by: Jason Etheridge --- Open-ILS/xul/staff_client/server/circ/util.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js index 5e766b2906..659d524322 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -3747,6 +3747,7 @@ circ.util.renew_via_barcode = function ( params, async ) { case 0 /* SUCCESS */ : break; case null /* custom event */ : break; case 5000 /* PERM_FAILURE */: break; + case 1002 /* ACTOR_USER_NOT_FOUND */ : break; case 1212 /* PATRON_EXCEEDS_OVERDUE_COUNT */ : break; case 1213 /* PATRON_BARRED */ : break; case 1215 /* CIRC_EXCEEDS_COPY_RANGE */ : break; -- 2.11.0