[open-ils-commits] [GIT] Evergreen ILS branch rel_3_0 updated. 7f36c1762a34745df8105e732de5c708778c9370

Evergreen Git git at git.evergreen-ils.org
Fri Mar 9 14:16:54 EST 2018


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_3_0 has been updated
       via  7f36c1762a34745df8105e732de5c708778c9370 (commit)
      from  f8fad2903d203ee68dba4b548dc46354b3d34622 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 7f36c1762a34745df8105e732de5c708778c9370
Author: Mike Rylander <mrylander at gmail.com>
Date:   Sat Mar 3 13:29:17 2018 -0500

    LP#1717593: Missing strings cause serial item delete (and status change) failures
    
    There are two places in the code that expect a serial-related string to exist,
    but neither do.  So, let's correct that.
    
    Signed-off-by: Mike Rylander <mrylander at gmail.com>
    Signed-off-by: John Amundson <jamundson at cwmars.org>
    Signed-off-by: Jason Stephenson <jason at sigio.com>

diff --git a/Open-ILS/src/templates/staff/serials/index.tt2 b/Open-ILS/src/templates/staff/serials/index.tt2
index e00e4e7..1a6e4d1 100644
--- a/Open-ILS/src/templates/staff/serials/index.tt2
+++ b/Open-ILS/src/templates/staff/serials/index.tt2
@@ -63,6 +63,12 @@ angular.module('egCoreMod').run(['egStrings', function(s) {
     s.CONFIRM_CHANGE_ITEMS.receive = "[% l('Receive selected items?') %]"
     s.CONFIRM_CHANGE_ITEMS.status = "[% l('Change status selected items?') %]"
 
+    s.CONFIRM_CHANGE_ITEMS_MESSAGE = {};
+    s.CONFIRM_CHANGE_ITEMS_MESSAGE.delete = "[% l('Will delete {{items}} items(s)') %]";
+    s.CONFIRM_CHANGE_ITEMS_MESSAGE.reset = "[% l('Will reset {{items}} items(s)') %]"
+    s.CONFIRM_CHANGE_ITEMS_MESSAGE.receive = "[% l('Will receive {{items}} items(s)') %]"
+    s.CONFIRM_CHANGE_ITEMS_MESSAGE.status = "[% l('Will change the status of {{items}} items(s)') %]"
+
     s.CONFIRM_DELETE_MFHDS = "[% l('Delete selected MFHD(s)?') %]";
     s.CONFIRM_DELETE_MFHDS_MESSAGE = "[% l('Will delete {{items}} MFHD(s).') %]";
 

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/templates/staff/serials/index.tt2 |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list