From e20cfc03c1c9dfeab31b92bd21c07b47c22a2451 Mon Sep 17 00:00:00 2001 From: pines Date: Tue, 29 Aug 2006 18:31:38 +0000 Subject: [PATCH] handle CIRC_CLAIMS_RETURNED, but not overridable yet git-svn-id: svn://svn.open-ils.org/ILS/trunk@5757 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/circ/checkout.js | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Open-ILS/xul/staff_client/server/circ/checkout.js b/Open-ILS/xul/staff_client/server/circ/checkout.js index 16f936115b..23e4f09814 100644 --- a/Open-ILS/xul/staff_client/server/circ/checkout.js +++ b/Open-ILS/xul/staff_client/server/circ/checkout.js @@ -519,6 +519,11 @@ circ.checkout.prototype = { msg += test_permit[i].desc + '\n'; found_handled = true; break; + case 7009 /* CIRC_CLAIMS_RETURNED */ : + msg += test_permit[i].desc + '\n'; + obj.error.yns_alert(msg,'Check Out Failed','OK',null,null,'Check here to confirm this message'); + found_handled = true; + break; case 7010 /* COPY_ALERT_MESSAGE */ : msg += test_permit[i].desc + '\n' + 'Alert Message = ' + test_permit[i].payload + '\n'; found_handled = true; -- 2.43.2