[open-ils-commits] [GIT] Evergreen ILS branch master updated. 173eb0fb2cfa3be5d703f44c6a0a49162b21668e
Evergreen Git
git at git.evergreen-ils.org
Fri Nov 4 17:27:54 EDT 2011
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 173eb0fb2cfa3be5d703f44c6a0a49162b21668e (commit)
from d36ad5dd697deab3b41127b75417c6c6f0083f9e (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 173eb0fb2cfa3be5d703f44c6a0a49162b21668e
Author: Thomas Berezansky <tsbere at mvlc.org>
Date: Tue Sep 13 14:48:16 2011 -0400
Skip forced targeting of frozen holds
Otherwise a frozen hold can be manually retargeted by staff and captured.
Signed-off-by: Thomas Berezansky <tsbere at mvlc.org>
Signed-off-by: Lebbeous Fogle-Weekley <lebbeous at esilibrary.com>
diff --git a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm
index fb58c35..6e3ea01 100644
--- a/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm
+++ b/Open-ILS/src/perlmods/lib/OpenILS/Application/Storage/Publisher/action.pm
@@ -1041,7 +1041,7 @@ sub new_hold_copy_targeter {
try {
if ($one_hold) {
$self->method_lookup('open-ils.storage.transaction.begin')->run( $client );
- $holds = [ action::hold_request->search_where( { id => $one_hold, fulfillment_time => undef, cancel_time => undef } ) ];
+ $holds = [ action::hold_request->search_where( { id => $one_hold, fulfillment_time => undef, cancel_time => undef, frozen => 'f' } ) ];
} elsif ( $check_expire ) {
# what's the retarget time threashold?
-----------------------------------------------------------------------
Summary of changes:
.../Application/Storage/Publisher/action.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list