From 2734dbcabe83217cec7fc016bfd1699a2cf984ce Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Sun, 25 Mar 2018 18:11:46 -0400 Subject: [PATCH] Remove canceled transit from magic statuses to allow editing Note setting disable_in_copy_editor=false did not suffice to allow editing. The whole like had to be removed. Signed-off-by: Bill Erickson --- Open-ILS/xul/staff_client/chrome/content/main/constants.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 440dc64f01..9cb0936525 100644 --- a/Open-ILS/xul/staff_client/chrome/content/main/constants.js +++ b/Open-ILS/xul/staff_client/chrome/content/main/constants.js @@ -46,8 +46,7 @@ var my_constants = { '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 */ - '17' : { 'disable_in_copy_editor' : true, 'block_mark_item_damaged' : false, 'block_mark_item_action' : true }, /* | Lost & Paid */ - '18' : { 'disable_in_copy_editor' : true, 'block_mark_item_damaged' : false, 'block_mark_item_action' : false} /* | Canceled Transit | t */ + '17' : { 'disable_in_copy_editor' : true, 'block_mark_item_damaged' : false, 'block_mark_item_action' : true } /* | Lost & Paid */ } } -- 2.11.0