From 2f1110f3da3d4dca2382401fd6da0d2dd3c11fb6 Mon Sep 17 00:00:00 2001 From: khuckins Date: Thu, 18 Feb 2016 13:36:09 -0500 Subject: [PATCH] CAT-48 Deactivate 'Missing' status Add "Missing" state from config.copy_status to magical_status constant. Signed-off-by: khuckins Changes to be committed: modified: Open-ILS/xul/staff_client/chrome/content/main/constants.js --- Open-ILS/xul/staff_client/chrome/content/main/constants.js | 1 + 1 file changed, 1 insertion(+) diff --git a/Open-ILS/xul/staff_client/chrome/content/main/constants.js b/Open-ILS/xul/staff_client/chrome/content/main/constants.js index 0785d31220..728b40e779 100644 --- a/Open-ILS/xul/staff_client/chrome/content/main/constants.js +++ b/Open-ILS/xul/staff_client/chrome/content/main/constants.js @@ -42,6 +42,7 @@ var my_constants = { 'magical_statuses' : { '1' : { 'disable_in_copy_editor' : true, 'block_mark_item_damaged' : false, 'block_mark_item_action' : true }, /* | Checked out | t */ '3' : { 'disable_in_copy_editor' : true, 'block_mark_item_damaged' : false, 'block_mark_item_action' : true }, /* | Lost | f */ + '4' : { 'disable_in_copy_editor' : true, 'block_mark_item_damaged' : false, 'block_mark_item_action' : true }, /* | Missing | t*/ '6' : { 'disable_in_copy_editor' : true, 'block_mark_item_damaged' : false, 'block_mark_item_action' : true }, /* | In transit | t */ '8' : { 'disable_in_copy_editor' : true, 'block_mark_item_damaged' : false, 'block_mark_item_action' : false }, /* | On holds shelf | t */ '16' : { 'disable_in_copy_editor' : true, 'block_mark_item_damaged' : false, 'block_mark_item_action' : true }, /* | Long Overdue | f */ -- 2.11.0