[open-ils-commits] [GIT] Evergreen ILS branch rel_2_12 updated. 3f86025ab2a6c1e5ddbb8209d7f21a1572efda2e

Evergreen Git git at git.evergreen-ils.org
Tue May 30 09:57:46 EDT 2017


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_2_12 has been updated
       via  3f86025ab2a6c1e5ddbb8209d7f21a1572efda2e (commit)
       via  523178b7e072a9912f2fe94293334819cebce751 (commit)
       via  ecce8315e77ec28fea37bfd2b10108b462c9ce7c (commit)
      from  9b1f0254416123aa2ce8ce49d688d529e09d8f25 (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 3f86025ab2a6c1e5ddbb8209d7f21a1572efda2e
Author: Galen Charlton <gmc at equinoxinitiative.org>
Date:   Tue May 30 10:05:57 2017 -0400

    LP#1312824: follow-up to fix whitespace
    
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
index 87e1baf..024a0e6 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
@@ -4037,7 +4037,7 @@ sub change_hold_title {
     my $holds = $e->search_action_hold_request(
         [
             {
-	        capture_time     => undef,
+                capture_time     => undef,
                 cancel_time      => undef,
                 fulfillment_time => undef,
                 hold_type        => 'T',
@@ -4074,7 +4074,7 @@ sub change_hold_title_for_specific_holds {
     my $holds = $e->search_action_hold_request(
         [
             {
-	        capture_time     => undef,
+                capture_time     => undef,
                 cancel_time      => undef,
                 fulfillment_time => undef,
                 hold_type        => 'T',

commit 523178b7e072a9912f2fe94293334819cebce751
Author: Kathy Lussier <klussier at masslnc.org>
Date:   Fri May 19 11:38:53 2017 -0400

    LP#1312824: Change success message for transferred holds
    
    The holds transferred success message should clarify which holds were
    transferred to mitigate potential confusion.
    
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/xul/staff_client/server/locale/en-US/cat.properties b/Open-ILS/xul/staff_client/server/locale/en-US/cat.properties
index c321954..d5a3b2d 100644
--- a/Open-ILS/xul/staff_client/server/locale/en-US/cat.properties
+++ b/Open-ILS/xul/staff_client/server/locale/en-US/cat.properties
@@ -285,7 +285,7 @@ staff.cat.opac.set_marc_edit.std_unexpected_error=Record not likely updated.
 staff.cat.opac.refresh.function_not_implemented.alert=Not yet implemented.  Work around: Choose Duplicate in New Tab option
 staff.cat.opac.set_tab_name=Record DB ID: %1$s
 staff.cat.opac.title_for_hold_transfer.destination_needed.label=Need to mark a record as a Title Hold Transfer Destination first.
-staff.cat.opac.title_for_hold_transfer.success.label=Holds transferred.
+staff.cat.opac.title_for_hold_transfer.success.label=All holds not available for pickup have been transferred.
 staff.cat.opac.title_for_hold_transfer.failure.label=Holds not transferred.
 staff.cat.opac.title_for_hold_transfer.many_bibs.warning=WARNING: Move selected holds from multiple bibs to single targeted bib?
 staff.cat.record_buckets.tab_name=Record Buckets

commit ecce8315e77ec28fea37bfd2b10108b462c9ce7c
Author: Jason Boyer <JBoyer1 at library.in.gov>
Date:   Fri Apr 25 12:45:34 2014 -0400

    LP1312824 open-ils.circ.hold.change_title fix
    
    Add a capture_time => undef limit to both change_title
    APIs to prevent currently captured holds from being reset
    when moving holds from one title to another.
    More work is needed to prevent items currently in transit
    from having their transits canceled.
    
    Test plan
    ---------
    1. Create a bib with multiple holdings
    2. Add multiple holds to this title and capture one of them - Item
       will have a status of On Holds Shelf
    3. Open another bib record, open Actions for this Record menu,
       Mark as Hold Transfer Destination
    4. Return to the record that has a captured hold, open Actions for
       this Record, Transfer all Title Holds
    5. Check Captured hold, Item status is Available, hold has been reset
       and now points to the new bib record.
    
    With the patch applied, steps 2-5 above should be repeated, but this
    time in step 5 the hold will still be on the original record and the
    item's status will still be On Holds Shelf.
    
    Signed-off-by: Jason Boyer <JBoyer1 at library.in.gov>
    Signed-off-by: Kathy Lussier <klussier at masslnc.org>
    Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>

diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
index 1825c71..87e1baf 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Circ/Holds.pm
@@ -4037,6 +4037,7 @@ sub change_hold_title {
     my $holds = $e->search_action_hold_request(
         [
             {
+	        capture_time     => undef,
                 cancel_time      => undef,
                 fulfillment_time => undef,
                 hold_type        => 'T',
@@ -4073,6 +4074,7 @@ sub change_hold_title_for_specific_holds {
     my $holds = $e->search_action_hold_request(
         [
             {
+	        capture_time     => undef,
                 cancel_time      => undef,
                 fulfillment_time => undef,
                 hold_type        => 'T',

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

Summary of changes:
 .../perlmods/lib/OpenILS/Application/Circ/Holds.pm |    2 ++
 .../server/locale/en-US/cat.properties             |    2 +-
 2 files changed, 3 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list