[open-ils-commits] r14605 - trunk/Open-ILS/src/perlmods/OpenILS/Application/Trigger (erickson)

svn at svn.open-ils.org svn at svn.open-ils.org
Mon Oct 26 11:15:41 EDT 2009


Author: erickson
Date: 2009-10-26 11:15:39 -0400 (Mon, 26 Oct 2009)
New Revision: 14605

Modified:
   trunk/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Validator.pm
Log:
updated the max_delay_age date math, added comments

Modified: trunk/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Validator.pm
===================================================================
--- trunk/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Validator.pm	2009-10-26 14:31:56 UTC (rev 14604)
+++ trunk/Open-ILS/src/perlmods/OpenILS/Application/Trigger/Validator.pm	2009-10-26 15:15:39 UTC (rev 14605)
@@ -26,9 +26,15 @@
     my $delay_field = $env->{event}->event_def->delay_field;
 
     my $delay_field_ts = DateTime::Format::ISO8601->new->parse_datetime(clense_ISO8601($target->$delay_field()));
-    $delay_field_ts->add( seconds => interval_to_seconds( $env->{params}->{max_delay_age} ) );
 
-    return 0 if $delay_field_ts > DateTime->now;
+    # the cutoff date is today - delay - age.  This is also true for negative delays.
+    # For example, today - "7 days" - "1 day" == 8 days ago.  For a 7-day delay, you would
+    # not validate if the date of the object is 8 or more days old.
+    my $max_date = DateTime->now;
+    $max_date->subtract( seconds => interval_to_seconds( $env->{event}->event_def->delay ) );
+    $max_date->subtract( seconds => interval_to_seconds( $env->{params}->{max_delay_age} ) );
+
+    return 0 if $delay_field_ts <= $max_date;
     return 1;
 }
 



More information about the open-ils-commits mailing list