[open-ils-commits] r7783 - trunk/Open-ILS/src/perlmods/OpenILS/SIP

svn at svn.open-ils.org svn at svn.open-ils.org
Fri Sep 14 11:45:19 EDT 2007


Author: erickson
Date: 2007-09-14 11:37:08 -0400 (Fri, 14 Sep 2007)
New Revision: 7783

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm
Log:
added cancel_time filtering to patron holds search

Modified: trunk/Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm	2007-09-14 15:27:13 UTC (rev 7782)
+++ trunk/Open-ILS/src/perlmods/OpenILS/SIP/Patron.pm	2007-09-14 15:37:08 UTC (rev 7783)
@@ -310,7 +310,7 @@
     my ($self, $start, $end) = @_;
 
 	 my $holds = $self->{editor}->search_action_hold_request(
-		{ usr => $self->{user}->id, fulfillment_time => undef }
+		{ usr => $self->{user}->id, fulfillment_time => undef, cancel_time => undef }
 	 );
 
 	my @holds;



More information about the open-ils-commits mailing list