[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 10870e08c2444fd7da276cfe6aba7943bc6a86b4
Ivan
ivan at 420.am
Thu Apr 26 17:34:16 PDT 2012
The branch, FREESIDE_2_3_BRANCH has been updated
via 10870e08c2444fd7da276cfe6aba7943bc6a86b4 (commit)
from 3dfaae28ab98903599de926e3bbd01a6479872f7 (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 10870e08c2444fd7da276cfe6aba7943bc6a86b4
Author: Ivan Kohler <ivan at freeside.biz>
Date: Thu Apr 26 17:34:16 2012 -0700
add "Don't run this event more than once per customer in the specified interval" condition, RT#17386
diff --git a/FS/FS/part_event/Condition/once_percust_every.pm b/FS/FS/part_event/Condition/once_percust_every.pm
new file mode 100644
index 0000000..6903b87
--- /dev/null
+++ b/FS/FS/part_event/Condition/once_percust_every.pm
@@ -0,0 +1,58 @@
+package FS::part_event::Condition::once_every;
+
+use strict;
+use FS::Record qw( qsearch );
+use FS::part_event;
+use FS::cust_event;
+
+use base qw( FS::part_event::Condition );
+
+sub description { "Don't run this event more than once per customer in the specified interval"; }
+
+sub eventtable_hashref {
+ { 'cust_main' => 0,
+ 'cust_bill' => 1,
+ 'cust_pkg' => 1,
+ };
+}
+
+# Runs the event at most "once every X", per customer.
+
+sub option_fields {
+ (
+ 'run_delay' => { label=>'Interval', type=>'freq', value=>'1m', },
+ );
+}
+
+sub condition {
+ my($self, $object, %opt) = @_;
+
+ my $obj_pkey = $object->primary_key;
+ my $obj_table = $object->table;
+ my $custnum = $object->custnum;
+
+ my @where = (
+ "tablenum IN ( SELECT $obj_pkey FROM $obj_table WHERE custnum = $custnum )"
+ );
+ if ( $opt{'cust_event'}->eventnum =~ /^(\d+)$/ ) {
+ push @where, " eventnum != $1 ";
+ }
+ my $extra_sql = ' AND '. join(' AND ', @where);
+
+ my $max_date = $self->option_age_from('run_delay', $opt{'time'});
+
+ my @existing = qsearch( {
+ 'table' => 'cust_event',
+ 'hashref' => {
+ 'eventpart' => $self->eventpart,
+ 'status' => { op=>'!=', value=>'failed' },
+ '_date' => { op=>'>', value=>$max_date },
+ },
+ 'extra_sql' => $extra_sql,
+ } );
+
+ ! scalar(@existing);
+
+}
+
+1;
-----------------------------------------------------------------------
Summary of changes:
.../{once_percust.pm => once_percust_every.pm} | 37 +++++++------------
1 files changed, 14 insertions(+), 23 deletions(-)
copy FS/FS/part_event/Condition/{once_percust.pm => once_percust_every.pm} (60%)
More information about the freeside-commits
mailing list