From 06260fd48036b8a1ba3f360f2bc53b2b8b4c10fc Mon Sep 17 00:00:00 2001 From: phasefx Date: Mon, 22 Oct 2007 05:47:48 +0000 Subject: [PATCH] handle ACTION_CIRCULATION_NOT_FOUND with renews git-svn-id: svn://svn.open-ils.org/ILS/branches/rel_1_2@7907 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/circ/util.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js index 23927e3b8e..4a8a9c6e99 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -1113,7 +1113,7 @@ circ.util.checkin_via_barcode2 = function(session,params,backdate,auto_print,che switch(check.copy.status()) { case 0: /* AVAILABLE */ case 7: /* RESHELVING */ - if (msg) msg += 'This item needs to be routed to ' + check.route_to + '.'; + if (msg) msg += 'This item needs to be routed to ' + check.route_to + '.\n'; break; case 8: /* ON HOLDS SHELF */ check.route_to = 'HOLDS SHELF'; @@ -1320,6 +1320,7 @@ circ.util.renew_via_barcode = function ( barcode, patron_id, async ) { case 1213 /* PATRON_BARRED */ : break; case 1215 /* CIRC_EXCEEDS_COPY_RANGE */ : break; case 1224 /* PATRON_ACCOUNT_EXPIRED */ : break; + case 1500 /* ACTION_CIRCULATION_NOT_FOUND */ : break; case 7002 /* PATRON_EXCEEDS_CHECKOUT_COUNT */ : break; case 7003 /* COPY_CIRC_NOT_ALLOWED */ : break; case 7004 /* COPY_NOT_AVAILABLE */ : break; -- 2.11.0