From 4ea0ee9e445714d24e24d20abcd44f5516f56b29 Mon Sep 17 00:00:00 2001 From: Jason Stephenson Date: Mon, 21 Oct 2013 16:37:22 -0400 Subject: [PATCH] Handle Missing copy status (4) in checkin_via_barcode2 in circ.util.js. We treate just like available and reshelving. Signed-off-by: Jason Stephenson Signed-off-by: Kathy Lussier Signed-off-by: Dan Wells --- 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 af7442f41d..3218b84bf2 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -2997,6 +2997,7 @@ circ.util.checkin_via_barcode2 = function(session,params,backdate,auto_print,che } switch(Number(check.copy.status())) { case 0: /* AVAILABLE */ + case 4: /* MISSING */ case 7: /* RESHELVING */ check.what_happened = 'success'; sound.special('checkin.success'); -- 2.11.0