From: Bill Erickson Date: Sun, 25 Mar 2018 22:11:46 +0000 (-0400) Subject: Remove canceled transit from magic statuses to allow editing X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=2734dbcabe83217cec7fc016bfd1699a2cf984ce;p=working%2FEvergreen.git 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 --- 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 */ } }