1 package FS::cust_main_Mixin;
4 use vars qw( $DEBUG $me );
5 use Carp qw( confess carp cluck );
8 use FS::Record qw( qsearch qsearchs );
9 use FS::Misc qw( send_email generate_email );
13 $me = '[FS::cust_main_Mixin]';
17 FS::cust_main_Mixin - Mixin class for records that contain fields from cust_main
21 package FS::some_table;
23 @ISA = qw( FS::cust_main_Mixin FS::Record );
27 This is a mixin class for records that contain fields from the cust_main table,
28 for example, from a JOINed search. See httemplate/search/ for examples.
36 sub cust_unlinked_msg { '(unlinked)'; }
37 sub cust_linked { $_[0]->custnum; }
41 cluck ref($self). '->cust_main called' if $DEBUG;
42 $self->cust_linked ? qsearchs('cust_main', {custnum => $self->custnum}) : '';
47 Given an object that contains fields from cust_main (say, from a JOINed
48 search; see httemplate/search/ for examples), returns the equivalent of the
49 FS::cust_main I<name> method, or "(unlinked)" if this object is not linked to
57 ? FS::cust_main::display_custnum($self)
58 : $self->cust_unlinked_msg;
63 Given an object that contains fields from cust_main (say, from a JOINed
64 search; see httemplate/search/ for examples), returns the equivalent of the
65 FS::cust_main I<name> method, or "(unlinked)" if this object is not linked to
73 ? FS::cust_main::name($self)
74 : $self->cust_unlinked_msg;
79 Given an object that contains fields from cust_main (say, from a JOINed
80 search; see httemplate/search/ for examples), returns the equivalent of the
81 FS::cust_main I<ship_name> method, or "(unlinked)" if this object is not
89 ? FS::cust_main::ship_name($self)
90 : $self->cust_unlinked_msg;
95 Given an object that contains fields from cust_main (say, from a JOINed
96 search; see httemplate/search/ for examples), returns the equivalent of the
97 FS::cust_main I<contact> method, or "(unlinked)" if this object is not linked
105 ? FS::cust_main::contact($self)
106 : $self->cust_unlinked_msg;
111 Given an object that contains fields from cust_main (say, from a JOINed
112 search; see httemplate/search/ for examples), returns the equivalent of the
113 FS::cust_main I<ship_contact> method, or "(unlinked)" if this object is not
114 linked to a customer.
121 ? FS::cust_main::ship_contact($self)
122 : $self->cust_unlinked_msg;
127 Given an object that contains fields from cust_main (say, from a JOINed
128 search; see httemplate/search/ for examples), returns the equivalent of the
129 FS::cust_main I<country_full> method, or "(unlinked)" if this object is not
130 linked to a customer.
136 if ( $self->locationnum ) { # cust_pkg has this
137 my $location = FS::cust_location->by_key($self->locationnum);
138 $location ? $location->country_full : '';
139 } elsif ( $self->cust_linked ) {
140 $self->cust_main->bill_country_full;
144 =item invoicing_list_emailonly
146 Given an object that contains fields from cust_main (say, from a JOINed
147 search; see httemplate/search/ for examples), returns the equivalent of the
148 FS::cust_main I<invoicing_list_emailonly> method, or "(unlinked)" if this
149 object is not linked to a customer.
153 sub invoicing_list_emailonly {
155 warn "invoicing_list_email only called on $self, ".
156 "custnum ". $self->custnum. "\n"
159 ? FS::cust_main::invoicing_list_emailonly($self)
160 : $self->cust_unlinked_msg;
163 =item invoicing_list_emailonly_scalar
165 Given an object that contains fields from cust_main (say, from a JOINed
166 search; see httemplate/search/ for examples), returns the equivalent of the
167 FS::cust_main I<invoicing_list_emailonly_scalar> method, or "(unlinked)" if
168 this object is not linked to a customer.
172 sub invoicing_list_emailonly_scalar {
174 warn "invoicing_list_emailonly called on $self, ".
175 "custnum ". $self->custnum. "\n"
178 ? FS::cust_main::invoicing_list_emailonly_scalar($self)
179 : $self->cust_unlinked_msg;
184 Given an object that contains fields from cust_main (say, from a JOINed
185 search; see httemplate/search/ for examples), returns the equivalent of the
186 FS::cust_main I<invoicing_list> method, or "(unlinked)" if this object is not
187 linked to a customer.
189 Note: this method is read-only.
197 ? FS::cust_main::invoicing_list($self)
203 Given an object that contains fields from cust_main (say, from a JOINed
204 search; see httemplate/search/ for examples), returns the equivalent of the
205 FS::cust_main I<status> method, or "(unlinked)" if this object is not linked to
212 return $self->cust_unlinked_msg unless $self->cust_linked;
214 #FS::cust_main::status($self)
215 #false laziness w/actual cust_main::status
216 # (make sure FS::cust_main methods are called)
217 for my $status (qw( prospect active inactive suspended cancelled )) {
218 my $method = $status.'_sql';
219 my $sql = FS::cust_main->$method();;
220 my $numnum = ( $sql =~ s/cust_main\.custnum/?/g );
221 my $sth = dbh->prepare("SELECT $sql") or die dbh->errstr;
222 $sth->execute( ($self->custnum) x $numnum )
223 or die "Error executing 'SELECT $sql': ". $sth->errstr;
224 return $status if $sth->fetchrow_arrayref->[0];
228 =item ucfirst_cust_status
230 Given an object that contains fields from cust_main (say, from a JOINed
231 search; see httemplate/search/ for examples), returns the equivalent of the
232 FS::cust_main I<ucfirst_status> method, or "(unlinked)" if this object is not
233 linked to a customer.
237 sub ucfirst_cust_status {
240 ? ucfirst( $self->cust_status(@_) )
241 : $self->cust_unlinked_msg;
244 =item cust_statuscolor
246 Given an object that contains fields from cust_main (say, from a JOINed
247 search; see httemplate/search/ for examples), returns the equivalent of the
248 FS::cust_main I<statuscol> method, or "000000" if this object is not linked to
253 sub cust_statuscolor {
257 ? FS::cust_main::cust_statuscolor($self)
271 Class methods that return SQL framents, equivalent to the corresponding
272 FS::cust_main method.
277 # \$self->cust_linked
278 # ? FS::cust_main::${sub}_sql(\$self)
281 foreach my $sub (qw( prospect active inactive suspended cancelled )) {
284 confess 'cust_main_Mixin ${sub}_sql called with object' if ref(\$_[0]);
285 'cust_main.custnum IS NOT NULL AND '. FS::cust_main->${sub}_sql();
291 =item cust_search_sql
293 Returns a list of SQL WHERE fragments to search for parameters specified
294 in HASHREF. Valid parameters are:
308 sub cust_search_sql {
309 my($class, $param) = @_;
312 warn "$me cust_search_sql called with params: \n".
313 join("\n", map { " $_: ". $param->{$_} } keys %$param ). "\n";
318 if ( $param->{'agentnum'} && $param->{'agentnum'} =~ /^(\d+)$/ ) {
319 push @search, "cust_main.agentnum = $1";
322 #status (prospect active inactive suspended cancelled)
323 if ( grep { $param->{'status'} eq $_ } FS::cust_main->statuses() ) {
324 my $method = $param->{'status'}. '_sql';
325 push @search, $class->$method();
329 my @payby = ref($param->{'payby'})
330 ? @{ $param->{'payby'} }
331 : split(',', $param->{'payby'});
332 @payby = grep /^([A-Z]{4})$/, @payby;
334 push @search, 'cust_main.payby IN ('. join(',', map "'$_'", @payby). ')';
337 #here is the agent virtualization
339 $FS::CurrentUser::CurrentUser->agentnums_sql( 'table' => 'cust_main' );
345 =item email_search_result HASHREF
347 Emails a notice to the specified customers. Customers without
348 invoice email destinations will be skipped.
356 Queue job for status updates. Required.
360 Hashref of params to the L<search()> method. Required.
364 Message template number (see L<FS::msg_template>). Overrides all
365 of the following options.
385 Returns an error message, or false for success.
387 If any messages fail to send, they will be queued as individual
388 jobs which can be manually retried. If the first ten messages
389 in the job fail, the entire job will abort and return an error.
393 use Storable qw(thaw);
395 use Data::Dumper qw(Dumper);
396 use Digest::SHA qw(sha1); # for duplicate checking
398 sub email_search_result {
399 my($class, $param) = @_;
401 my $msgnum = $param->{msgnum};
402 my $from = delete $param->{from};
403 my $subject = delete $param->{subject};
404 my $html_body = delete $param->{html_body};
405 my $text_body = delete $param->{text_body};
408 my $job = delete $param->{'job'}
409 or die "email_search_result must run from the job queue.\n";
413 $msg_template = qsearchs('msg_template', { msgnum => $msgnum } )
414 or die "msgnum $msgnum not found\n";
417 my $sql_query = $class->search($param->{'search'});
418 $sql_query->{'select'} = $sql_query->{'table'} . '.*';
420 my $count_query = delete($sql_query->{'count_query'});
421 my $count_sth = dbh->prepare($count_query)
422 or die "Error preparing $count_query: ". dbh->errstr;
424 or die "Error executing $count_query: ". $count_sth->errstr;
425 my $count_arrayref = $count_sth->fetchrow_arrayref;
426 my $num_cust = $count_arrayref->[0];
428 my( $num, $last, $min_sec ) = (0, time, 5); #progresbar foo
434 #eventually order+limit magic to reduce memory use?
435 foreach my $obj ( qsearch($sql_query) ) {
437 #progressbar first, so that the count is right
439 if ( time - $min_sec > $last ) {
440 my $error = $job->update_statustext(
441 int( 100 * $num / $num_cust )
443 die $error if $error;
447 my $cust_main = $obj->cust_main;
448 tie my %message, 'Tie::IxHash';
450 next; # unlinked object; nothing else we can do
453 if ( $msg_template ) {
454 # Now supports other context objects.
455 %message = $msg_template->prepare(
456 'cust_main' => $cust_main,
461 my @to = $cust_main->invoicing_list_emailonly;
467 'subject' => $subject,
468 'html_body' => $html_body,
469 'text_body' => $text_body,
470 'custnum' => $cust_main->custnum,
474 # For non-cust_main searches, we avoid duplicates based on message
476 my $unique = $cust_main->custnum;
477 $unique .= sha1($message{'text_body'}) if $class ne 'FS::cust_main';
478 if( $sent_to{$unique} ) {
484 $sent_to{$unique} = 1;
486 $error = send_email( generate_email( %message ) );
489 # queue the sending of this message so that the user can see what we
490 # tried to do, and retry if desired
491 my $queue = new FS::queue {
492 'job' => 'FS::Misc::process_send_email',
493 'custnum' => $cust_main->custnum,
494 'status' => 'failed',
495 'statustext' => $error,
497 $queue->insert(%message);
498 push @retry_jobs, $queue;
505 (scalar(@retry_jobs) > 10 or $num == $num_cust)
507 # 10 is arbitrary, but if we have enough failures, that's
508 # probably a configuration or network problem, and we
509 # abort the batch and run away screaming.
510 # We NEVER do this if anything was successfully sent.
511 $_->delete foreach (@retry_jobs);
512 return "multiple failures: '$error'\n";
517 # fail the job, but with a status message that makes it clear
518 # something was sent.
519 return "Sent $success, skipped $dups duplicate(s), failed ".scalar(@retry_jobs).". Failed attempts placed in job queue.\n";
525 sub process_email_search_result {
527 #warn "$me process_re_X $method for job $job\n" if $DEBUG;
529 my $param = thaw(decode_base64(shift));
530 warn Dumper($param) if $DEBUG;
532 $param->{'job'} = $job;
534 $param->{'search'} = thaw(decode_base64($param->{'search'}))
535 or die "process_email_search_result requires search params.\n";
537 # $param->{'payby'} = [ split(/\0/, $param->{'payby'}) ]
538 # unless ref($param->{'payby'});
540 my $table = $param->{'table'}
541 or die "process_email_search_result requires table.\n";
543 eval "use FS::$table;";
544 die "error loading FS::$table: $@\n" if $@;
546 my $error = "FS::$table"->email_search_result( $param );
547 dbh->commit; # save failed jobs before rethrowing the error
548 die $error if $error;
554 Returns a configuration handle (L<FS::Conf>) set to the customer's locale,
555 if they have one. If not, returns an FS::Conf with no locale.
561 return $self->{_conf} if (ref $self and $self->{_conf});
562 my $cust_main = $self->cust_main;
563 my $conf = new FS::Conf {
564 'locale' => ($cust_main ? $cust_main->locale : '')
566 $self->{_conf} = $conf if ref $self;
570 =item mt TEXT [, ARGS ]
572 Localizes a text string (see L<Locale::Maketext>) for the customer's locale,
579 return $self->{_lh}->maketext(@_) if (ref $self and $self->{_lh});
580 my $cust_main = $self->cust_main;
581 my $locale = $cust_main ? $cust_main->locale : '';
582 my $lh = FS::L10N->get_handle($locale);
583 $self->{_lh} = $lh if ref $self;
584 return $lh->maketext(@_);
587 =item time2str_local FORMAT, TIME[, ESCAPE]
589 Localizes a date (see L<Date::Language>) for the customer's locale.
591 FORMAT can be a L<Date::Format> string, or one of these special words:
593 - "short": the value of the "date_format" config setting for the customer's
594 locale, defaulting to "%x".
595 - "rdate": the same as "short" except that the default has a four-digit year.
596 - "long": the value of the "date_format_long" config setting for the
597 customer's locale, defaulting to "%b %o, %Y".
599 ESCAPE, if specified, is one of "latex" or "html", and will escape non-ASCII
600 characters and convert spaces to nonbreaking spaces.
605 # renamed so that we don't have to change every single reference to
606 # time2str everywhere
608 my ($format, $time, $escape) = @_;
609 return '' unless $time > 0; # work around time2str's traditional stupidity
611 $self->{_date_format} ||= {};
612 if (!exists($self->{_dh})) {
613 my $cust_main = $self->cust_main;
614 my $locale = $cust_main->locale if $cust_main;
616 my %info = FS::Locales->locale_info($locale);
617 my $dh = eval { Date::Language->new($info{'name'}) } ||
618 Date::Language->new(); # fall back to English
622 if ($format eq 'short') {
623 $format = $self->{_date_format}->{short}
624 ||= $self->conf->config('date_format') || '%x';
625 } elsif ($format eq 'rdate') {
626 $format = $self->{_date_format}->{rdate}
627 ||= $self->conf->config('date_format') || '%m/%d/%Y';
628 } elsif ($format eq 'long') {
629 $format = $self->{_date_format}->{long}
630 ||= $self->conf->config('date_format_long') || '%b %o, %Y';
633 # actually render the date
634 my $string = $self->{_dh}->time2str($format, $time);
637 if ($escape eq 'html') {
638 $string = encode_entities($string);
639 $string =~ s/ +/ /g;
640 } elsif ($escape eq 'latex') { # just do nbsp's here
654 L<FS::cust_main>, L<FS::Record>