From ef4d822e9348c8c7150e6afe4440b09d8042c693 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 42b1df74a9..92b168a9d4 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -3069,6 +3069,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.43.2