From: Jason Stephenson Date: Thu, 13 Oct 2011 16:07:13 +0000 (-0400) Subject: Allow override of TITLE_LAST_COPY in volume delete. X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=c2028e569f63895b1737e74b7db4e91fa74392b1;p=working%2FEvergreen.git Allow override of TITLE_LAST_COPY in volume delete. Add TITLE_LAST_COPY event id (1208), to overridable events list when deleting volumes in circ/copy_status.js and cat/copy_broswer.js. Signed-off-by: Jason Stephenson --- diff --git a/Open-ILS/xul/staff_client/server/cat/copy_browser.js b/Open-ILS/xul/staff_client/server/cat/copy_browser.js index bb9b632ddd..0846f97ee3 100644 --- a/Open-ILS/xul/staff_client/server/cat/copy_browser.js +++ b/Open-ILS/xul/staff_client/server/cat/copy_browser.js @@ -708,6 +708,7 @@ cat.copy_browser.prototype = { { 'title' : document.getElementById('catStrings').getString('staff.cat.copy_browser.delete_volume.override'), 'overridable_events' : [ + 1208 /* TITLE_LAST_COPY */ ] } ); diff --git a/Open-ILS/xul/staff_client/server/circ/copy_status.js b/Open-ILS/xul/staff_client/server/circ/copy_status.js index 510d13ce50..49d81b56c0 100644 --- a/Open-ILS/xul/staff_client/server/circ/copy_status.js +++ b/Open-ILS/xul/staff_client/server/circ/copy_status.js @@ -882,6 +882,7 @@ circ.copy_status.prototype = { { 'title' : document.getElementById('circStrings').getString('staff.circ.copy_status.delete_volumes.override'), 'overridable_events' : [ + 1208 /* TITLE_LAST_COPY */ ] } );