1 package FS::cust_event;
4 use base qw( FS::cust_main_Mixin FS::Record );
5 use vars qw( @ISA $DEBUG $me );
6 use Carp qw( croak confess );
7 use FS::Record qw( qsearch qsearchs dbdef );
16 $me = '[FS::cust_event]';
20 FS::cust_event - Object methods for cust_event records
26 $record = new FS::cust_event \%hash;
27 $record = new FS::cust_event { 'column' => 'value' };
29 $error = $record->insert;
31 $error = $new_record->replace($old_record);
33 $error = $record->delete;
35 $error = $record->check;
39 An FS::cust_event object represents an completed event. FS::cust_event
40 inherits from FS::Record. The following fields are currently supported:
44 =item eventnum - primary key
46 =item eventpart - event definition (see L<FS::part_event>)
48 =item tablenum - customer, package or invoice, depending on the value of part_event.eventtable (see L<FS::cust_main>, L<FS::cust_pkg>, and L<FS::cust_bill>)
50 =item _date - specified as a UNIX timestamp; see L<perlfunc/"time">. Also see
51 L<Time::Local> and L<Date::Parse> for conversion functions.
53 =item status - event status: B<new>, B<locked>, B<done> or B<failed>. Note: B<done> indicates the event is complete and should not be retried (statustext may still be set to an optional message), while B<failed> indicates the event failed and should be retried.
55 =item statustext - additional status detail (i.e. error or progress message)
65 Creates a new completed invoice event. To add the compelted invoice event to
66 the database, see L<"insert">.
68 Note that this stores the hash reference, not a distinct copy of the hash it
69 points to. You can ask the object for a copy with the I<hash> method.
73 # the new method can be inherited from FS::Record, if a table method is defined
75 sub table { 'cust_event'; }
77 sub cust_linked { $_[0]->cust_main_custnum; }
78 sub cust_unlinked_msg {
80 "WARNING: can't find cust_main.custnum ". $self->custnum;
81 #' (cust_bill.invnum '. $self->invnum. ')';
85 $self->cust_main_custnum(@_) || $self->SUPER::custnum(@_);
90 Adds this record to the database. If there is an error, returns the error,
91 otherwise returns false.
95 # the insert method can be inherited from FS::Record
99 Delete this record from the database.
103 # the delete method can be inherited from FS::Record
105 =item replace OLD_RECORD
107 Replaces the OLD_RECORD with this one in the database. If there is an error,
108 returns the error, otherwise returns false.
112 # the replace method can be inherited from FS::Record
116 Checks all fields to make sure this is a valid completed invoice event. If
117 there is an error, returns the error, otherwise returns false. Called by the
118 insert and replace methods.
122 # the check method should currently be supplied - FS::Record contains some
123 # data checking routines
128 my $error = $self->ut_numbern('eventnum')
129 || $self->ut_foreign_key('eventpart', 'part_event', 'eventpart')
131 return $error if $error;
133 my $eventtable = $self->part_event->eventtable;
134 my $dbdef_eventtable = dbdef->table( $eventtable );
137 $self->ut_foreign_key( 'tablenum',
139 $dbdef_eventtable->primary_key
141 || $self->ut_number('_date')
142 || $self->ut_enum('status', [qw( new locked done failed initial)])
143 || $self->ut_anything('statustext')
145 return $error if $error;
152 Returns the event definition (see L<FS::part_event>) for this completed event.
158 qsearchs( 'part_event', { 'eventpart' => $self->eventpart } );
163 Returns the customer, package, invoice or batched payment (see
164 L<FS::cust_main>, L<FS::cust_pkg>, L<FS::cust_bill> or L<FS::cust_pay_batch>)
165 for this completed invoice event.
170 croak "FS::cust_event::cust_bill called";
175 my $eventtable = $self->part_event->eventtable;
176 my $dbdef_table = dbdef->table( $eventtable );
177 my $primary_key = $dbdef_table->primary_key;
178 qsearchs( $eventtable, { $primary_key => $self->tablenum } );
181 =item test_conditions [ OPTION => VALUE ... ]
183 Tests conditions for this event, returns true if all conditions are satisfied,
188 sub test_conditions {
189 my( $self, %opt ) = @_;
190 my $part_event = $self->part_event;
191 my $object = $self->cust_X;
192 my @conditions = $part_event->part_event_condition;
193 $opt{'cust_event'} = $self;
194 $opt{'time'} = $self->_date
195 or die "test_conditions called without cust_event._date\n";
196 # this MUST be set, or all hell breaks loose in event conditions.
197 # it MUST be in the same time as in the cust_event object, or
198 # future time-dependent events will trigger incorrectly.
200 #no unsatisfied conditions
201 #! grep ! $_->condition( $object, %opt ), @conditions;
202 my @unsatisfied = grep ! $_->condition( $object, %opt ), @conditions;
204 if ( $opt{'stats_hashref'} ) {
205 foreach my $unsat (@unsatisfied) {
206 $opt{'stats_hashref'}->{$unsat->conditionname}++;
215 Runs the event action.
221 my %opt = @_; # currently only 'time'
222 my $time = $opt{'time'} || time;
224 my $part_event = $self->part_event;
226 my $object = $self->cust_X;
227 my $obj_pkey = $object->primary_key;
228 my $for = "for ". $object->table. " ". $object->$obj_pkey();
229 warn "running cust_event ". $self->eventnum.
230 " (". $part_event->action. ") $for\n"
235 local $SIG{__DIE__}; # don't want Mason __DIE__ handler active
236 $error = eval { $part_event->do_action($object, $self); };
244 $statustext = "Error running ". $part_event->action. " action: $@";
247 $statustext = $error;
252 #replace or add myself
254 $self->status($status);
255 $self->statustext($statustext);
257 $error = $self->eventnum ? $self->replace : $self->insert;
259 #this is why we need that locked state...
260 my $e = 'WARNING: Event run but database not updated - '.
261 'error replacing or inserting cust_event '. $self->eventnum.
273 Changes the status of this event from B<done> to B<failed>, allowing it to be
280 return '' unless $self->status eq 'done';
281 my $old = ref($self)->new( { $self->hash } );
282 $self->status('failed');
283 $self->replace($old);
288 #Changes the statustext of this event to B<retriable>, rendering it
289 #retriable (should retry be called).
294 confess "cust_event->retriable called";
296 return '' unless $self->status eq 'done';
297 my $old = ref($self)->new( { $self->hash } );
298 $self->statustext('retriable');
299 $self->replace($old);
310 JOIN part_event USING ( eventpart )
311 LEFT JOIN cust_bill ON ( eventtable = 'cust_bill' AND tablenum = invnum )
312 LEFT JOIN cust_pkg ON ( eventtable = 'cust_pkg' AND tablenum = pkgnum )
314 LEFT JOIN cust_svc ON ( eventtable = 'svc_acct' AND tablenum = svcnum )
315 LEFT JOIN cust_pkg AS cust_pkg_for_svc ON ( cust_svc.pkgnum = cust_pkg_for_svc.pkgnum )
316 LEFT JOIN cust_main ON ( ( eventtable = 'cust_main' AND tablenum = cust_main.custnum )
317 OR ( eventtable = 'cust_bill' AND cust_bill.custnum = cust_main.custnum )
318 OR ( eventtable = 'cust_pkg' AND cust_pkg.custnum = cust_main.custnum )
319 OR ( eventtable = 'svc_acct' AND cust_pkg_for_svc.custnum = cust_main.custnum )
325 =item search_sql_where HASHREF
327 Class method which returns an SQL WHERE fragment to search for parameters
328 specified in HASHREF. Valid parameters are
356 #Note: validates all passed-in data; i.e. safe to use with unchecked CGI params.
359 sub search_sql_where {
360 my($class, $param) = @_;
362 warn "$me search_sql_where called with params: \n".
363 join("\n", map { " $_: ". $param->{$_} } keys %$param ). "\n";
366 my @search = $class->cust_search_sql($param);
369 my @eventpart = ref($param->{'eventpart'})
370 ? @{ $param->{'eventpart'} }
371 : split(',', $param->{'eventpart'});
372 @eventpart = grep /^(\d+)$/, @eventpart;
374 push @search, 'eventpart IN ('. join(',', @eventpart). ')';
377 if ( $param->{'beginning'} =~ /^(\d+)$/ ) {
378 push @search, "cust_event._date >= $1";
380 if ( $param->{'ending'} =~ /^(\d+)$/ ) {
381 push @search, "cust_event._date <= $1";
384 if ( $param->{'failed'} ) {
385 push @search, "statustext != ''",
386 "statustext IS NOT NULL",
387 "statustext != 'N/A'";
390 if ( $param->{'custnum'} =~ /^(\d+)$/ ) {
391 push @search, "cust_main.custnum = '$1'";
394 if ( $param->{'invnum'} =~ /^(\d+)$/ ) {
395 push @search, "part_event.eventtable = 'cust_bill'",
399 if ( $param->{'pkgnum'} =~ /^(\d+)$/ ) {
400 push @search, "part_event.eventtable = 'cust_pkg'",
404 if ( $param->{'svcnum'} =~ /^(\d+)$/ ) {
405 push @search, "part_event.eventtable = 'svc_acct'",
409 my $where = 'WHERE '. join(' AND ', @search );
411 join(' AND ', @search );
425 sub process_reprint {
426 process_re_X('print', @_);
433 sub process_reemail {
434 process_re_X('email', @_);
442 process_re_X('fax', @_);
445 use Storable qw(thaw);
449 my( $method, $job ) = ( shift, shift );
451 my $param = thaw(decode_base64(shift));
452 warn Dumper($param) if $DEBUG;
463 my($method, $param, $job) = @_;
465 my $search_sql = FS::cust_event->search_sql_where($param);
467 #maybe not...? we do want the "re-" action to match the search more closely
468 # # yuck! hardcoded *AND* sequential scans!
469 #my $where = " WHERE action LIKE 'cust_bill_send%' ".
470 # ( $search_sql ? " AND $search_sql" : "" );
472 my $where = ( $search_sql ? " WHERE $search_sql" : "" );
474 my @cust_event = qsearch({
475 'table' => 'cust_event',
476 'addl_from' => FS::cust_event->join_sql(),
478 'extra_sql' => $where,
481 warn "$me re_X found ". scalar(@cust_event). " events\n"
484 my( $num, $last, $min_sec ) = (0, time, 5); #progresbar foo
485 foreach my $cust_event ( @cust_event ) {
487 my $cust_X = $cust_event->cust_X; # cust_bill
488 next unless $cust_X->can($method);
490 my $part_event = $cust_event->part_event;
491 my $template = $part_event->templatename
492 || $cust_X->agent_template;
493 my $modenum = $part_event->option('modenum') || '';
494 my $invoice_from = $part_event->option('agent_invoice_from') || '';
495 $cust_X->set('mode' => $modenum);
496 $cust_X->$method( { template => $template,
498 invoice_from => $invoice_from } );
500 if ( $job ) { #progressbar foo
502 if ( time - $min_sec > $last ) {
503 my $error = $job->update_statustext(
504 int( 100 * $num / scalar(@cust_event) )
506 die $error if $error;
513 #this doesn't work, but it would be nice
514 #if ( $job ) { #progressbar foo
515 # my $error = $job->update_statustext(
516 # scalar(@cust_event). " invoices re-${method}ed"
518 # die $error if $error;
527 L<FS::part_event>, L<FS::cust_bill>, L<FS::Record>, schema.html from the