From 5007650b6a3a11a28cbafa9c217bf584158147a4 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 a1be40db52..aa7460c508 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