From: Jason Stephenson Date: Mon, 21 Oct 2013 20:37:22 +0000 (-0400) Subject: Handle Missing copy status (4) in checkin_via_barcode2 in circ.util.js. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ef4d822e9348c8c7150e6afe4440b09d8042c693;p=evergreen%2Fpines.git 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 --- 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');