[open-ils-commits] [GIT] Evergreen ILS branch master updated. a04a71cb59dfaf62708b8575125f42a920902361

Evergreen Git git at git.evergreen-ils.org
Fri Mar 9 14:16:59 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, master has been updated
       via  a04a71cb59dfaf62708b8575125f42a920902361 (commit)
      from  dc7f2b8746697ab24d12469b962bf3f87835202f (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 a04a71cb59dfaf62708b8575125f42a920902361
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