1 package FS::cust_event;
2 use base qw( FS::cust_main_Mixin FS::Record );
5 use vars qw( $DEBUG $me );
6 use Carp qw( croak confess );
7 use FS::Record qw( qsearch qsearchs dbdef );
15 $me = '[FS::cust_event]';
19 FS::cust_event - Object methods for cust_event records
25 $record = new FS::cust_event \%hash;
26 $record = new FS::cust_event { 'column' => 'value' };
28 $error = $record->insert;
30 $error = $new_record->replace($old_record);
32 $error = $record->delete;
34 $error = $record->check;
38 An FS::cust_event object represents an completed event. FS::cust_event
39 inherits from FS::Record. The following fields are currently supported:
43 =item eventnum - primary key
45 =item eventpart - event definition (see L<FS::part_event>)
47 =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>)
49 =item _date - specified as a UNIX timestamp; see L<perlfunc/"time">. Also see
50 L<Time::Local> and L<Date::Parse> for conversion functions.
52 =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.
54 =item statustext - additional status detail (i.e. error or progress message)
64 Creates a new completed invoice event. To add the compelted invoice event to
65 the database, see L<"insert">.
67 Note that this stores the hash reference, not a distinct copy of the hash it
68 points to. You can ask the object for a copy with the I<hash> method.
72 # the new method can be inherited from FS::Record, if a table method is defined
74 sub table { 'cust_event'; }
76 sub cust_linked { $_[0]->cust_main_custnum || $_[0]->custnum }
77 sub cust_unlinked_msg {
79 "WARNING: can't find cust_main.custnum ". $self->custnum;
80 #' (cust_bill.invnum '. $self->invnum. ')';
84 $self->cust_main_custnum(@_) || $self->SUPER::custnum(@_);
89 Adds this record to the database. If there is an error, returns the error,
90 otherwise returns false.
94 # the insert method can be inherited from FS::Record
98 Delete this record from the database.
102 # the delete method can be inherited from FS::Record
104 =item replace OLD_RECORD
106 Replaces the OLD_RECORD with this one in the database. If there is an error,
107 returns the error, otherwise returns false.
111 # the replace method can be inherited from FS::Record
115 Checks all fields to make sure this is a valid completed invoice event. If
116 there is an error, returns the error, otherwise returns false. Called by the
117 insert and replace methods.
121 # the check method should currently be supplied - FS::Record contains some
122 # data checking routines
127 my $error = $self->ut_numbern('eventnum')
128 || $self->ut_foreign_key('eventpart', 'part_event', 'eventpart')
130 return $error if $error;
132 my $eventtable = $self->part_event->eventtable;
133 my $dbdef_eventtable = dbdef->table( $eventtable );
136 $self->ut_foreign_key( 'tablenum',
138 $dbdef_eventtable->primary_key
140 || $self->ut_number('_date')
141 || $self->ut_enum('status', [qw( new locked done failed initial)])
142 || $self->ut_anything('statustext')
144 return $error if $error;
151 Returns the event definition (see L<FS::part_event>) for this completed event.
155 Returns the customer, package, invoice or batched payment (see
156 L<FS::cust_main>, L<FS::cust_pkg>, L<FS::cust_bill> or L<FS::cust_pay_batch>)
157 for this completed invoice event.
162 croak "FS::cust_event::cust_bill called";
167 my $eventtable = $self->part_event->eventtable;
168 my $dbdef_table = dbdef->table( $eventtable );
169 my $primary_key = $dbdef_table->primary_key;
170 qsearchs( $eventtable, { $primary_key => $self->tablenum } );
173 =item test_conditions [ OPTION => VALUE ... ]
175 Tests conditions for this event, returns true if all conditions are satisfied,
180 sub test_conditions {
181 my( $self, %opt ) = @_;
182 my $part_event = $self->part_event;
183 my $object = $self->cust_X;
184 my @conditions = $part_event->part_event_condition;
185 $opt{'cust_event'} = $self;
186 $opt{'time'} = $self->_date
187 or die "test_conditions called without cust_event._date\n";
188 # this MUST be set, or all hell breaks loose in event conditions.
189 # it MUST be in the same time as in the cust_event object, or
190 # future time-dependent events will trigger incorrectly.
192 #no unsatisfied conditions
193 #! grep ! $_->condition( $object, %opt ), @conditions;
194 my @unsatisfied = grep ! $_->condition( $object, %opt ), @conditions;
196 if ( $opt{'stats_hashref'} ) {
197 foreach my $unsat (@unsatisfied) {
198 $opt{'stats_hashref'}->{$unsat->conditionname}++;
207 Runs the event action.
213 my %opt = @_; # currently only 'time'
214 my $time = $opt{'time'} || time;
216 my $part_event = $self->part_event;
218 my $object = $self->cust_X;
219 my $obj_pkey = $object->primary_key;
220 my $for = "for ". $object->table. " ". $object->$obj_pkey();
221 warn "running cust_event ". $self->eventnum.
222 " (". $part_event->action. ") $for\n"
227 local $SIG{__DIE__}; # don't want Mason __DIE__ handler active
228 $error = eval { $part_event->do_action($object, $self); };
236 $statustext = "Error running ". $part_event->action. " action: $@";
239 $statustext = $error;
244 #replace or add myself
246 $self->status($status);
247 $self->statustext($statustext);
249 $error = $self->eventnum ? $self->replace : $self->insert;
251 #this is why we need that locked state...
252 my $e = 'WARNING: Event run but database not updated - '.
253 'error replacing or inserting cust_event '. $self->eventnum.
265 Changes the status of this event from B<done> to B<failed>, allowing it to be
272 return '' unless $self->status eq 'done';
273 my $old = ref($self)->new( { $self->hash } );
274 $self->status('failed');
275 $self->replace($old);
280 #Changes the statustext of this event to B<retriable>, rendering it
281 #retriable (should retry be called).
286 confess "cust_event->retriable called";
288 return '' unless $self->status eq 'done';
289 my $old = ref($self)->new( { $self->hash } );
290 $self->statustext('retriable');
291 $self->replace($old);
302 JOIN part_event USING ( eventpart )
303 LEFT JOIN cust_bill ON ( eventtable = 'cust_bill' AND tablenum = invnum )
304 LEFT JOIN cust_pkg ON ( eventtable = 'cust_pkg' AND tablenum = pkgnum )
306 LEFT JOIN cust_svc ON ( eventtable = 'svc_acct' AND tablenum = svcnum )
307 LEFT JOIN cust_pkg AS cust_pkg_for_svc ON ( cust_svc.pkgnum = cust_pkg_for_svc.pkgnum )
308 LEFT JOIN cust_main ON ( ( eventtable = 'cust_main' AND tablenum = cust_main.custnum )
309 OR ( eventtable = 'cust_bill' AND cust_bill.custnum = cust_main.custnum )
310 OR ( eventtable = 'cust_pkg' AND cust_pkg.custnum = cust_main.custnum )
311 OR ( eventtable = 'svc_acct' AND cust_pkg_for_svc.custnum = cust_main.custnum )
317 =item search_sql_where HASHREF
319 Class method which returns an SQL WHERE fragment to search for parameters
320 specified in HASHREF. Valid parameters are
344 #Note: validates all passed-in data; i.e. safe to use with unchecked CGI params.
347 sub search_sql_where {
348 my($class, $param) = @_;
350 warn "$me search_sql_where called with params: \n".
351 join("\n", map { " $_: ". $param->{$_} } keys %$param ). "\n";
354 my @search = $class->cust_search_sql($param);
357 my @eventpart = ref($param->{'eventpart'})
358 ? @{ $param->{'eventpart'} }
359 : split(',', $param->{'eventpart'});
360 @eventpart = grep /^(\d+)$/, @eventpart;
362 push @search, 'eventpart IN ('. join(',', @eventpart). ')';
365 if ( $param->{'beginning'} =~ /^(\d+)$/ ) {
366 push @search, "cust_event._date >= $1";
368 if ( $param->{'ending'} =~ /^(\d+)$/ ) {
369 push @search, "cust_event._date <= $1";
372 if ( $param->{'failed'} ) {
373 push @search, "statustext != ''",
374 "statustext IS NOT NULL",
375 "statustext != 'N/A'";
378 if ( $param->{'custnum'} =~ /^(\d+)$/ ) {
379 push @search, "cust_main.custnum = '$1'";
382 if ( $param->{'invnum'} =~ /^(\d+)$/ ) {
383 push @search, "part_event.eventtable = 'cust_bill'",
387 if ( $param->{'pkgnum'} =~ /^(\d+)$/ ) {
388 push @search, "part_event.eventtable = 'cust_pkg'",
392 if ( $param->{'svcnum'} =~ /^(\d+)$/ ) {
393 push @search, "part_event.eventtable = 'svc_acct'",
397 my $where = 'WHERE '. join(' AND ', @search );
399 join(' AND ', @search );
413 sub process_reprint {
414 process_re_X('print', @_);
421 sub process_reemail {
422 process_re_X('email', @_);
430 process_re_X('fax', @_);
435 my( $method, $job, $param ) = @_;
436 warn Dumper($param) if $DEBUG;
447 my($method, $param, $job) = @_;
449 my $search_sql = FS::cust_event->search_sql_where($param);
451 #maybe not...? we do want the "re-" action to match the search more closely
452 # # yuck! hardcoded *AND* sequential scans!
453 #my $where = " WHERE action LIKE 'cust_bill_send%' ".
454 # ( $search_sql ? " AND $search_sql" : "" );
456 my $where = ( $search_sql ? " WHERE $search_sql" : "" );
458 my @cust_event = qsearch({
459 'table' => 'cust_event',
460 'addl_from' => FS::cust_event->join_sql(),
462 'extra_sql' => $where,
465 warn "$me re_X found ". scalar(@cust_event). " events\n"
468 my( $num, $last, $min_sec ) = (0, time, 5); #progresbar foo
469 foreach my $cust_event ( @cust_event ) {
471 my $cust_X = $cust_event->cust_X; # cust_bill
472 next unless $cust_X->can($method);
474 my $part_event = $cust_event->part_event;
475 my $template = $part_event->templatename
476 || $cust_X->agent_template;
477 my $modenum = $part_event->option('modenum') || '';
478 my $invoice_from = $part_event->option('agent_invoice_from') || '';
479 $cust_X->set('mode' => $modenum);
480 $cust_X->$method( { template => $template,
482 from => $invoice_from,
485 if ( $job ) { #progressbar foo
487 if ( time - $min_sec > $last ) {
488 my $error = $job->update_statustext(
489 int( 100 * $num / scalar(@cust_event) )
491 die $error if $error;
498 #this doesn't work, but it would be nice
499 #if ( $job ) { #progressbar foo
500 # my $error = $job->update_statustext(
501 # scalar(@cust_event). " invoices re-${method}ed"
503 # die $error if $error;
512 L<FS::part_event>, L<FS::cust_bill>, L<FS::Record>, schema.html from the