Revert "Format email addresses w/Email::Address instead of ad-hoc, fixes issues email...
[freeside.git] / FS / FS / cust_main.pm
1 package FS::cust_main;
2 use base qw( FS::cust_main::Packages
3              FS::cust_main::Status
4              FS::cust_main::NationalID
5              FS::cust_main::Billing
6              FS::cust_main::Billing_Realtime
7              FS::cust_main::Billing_Batch
8              FS::cust_main::Billing_Discount
9              FS::cust_main::Billing_ThirdParty
10              FS::cust_main::Location
11              FS::cust_main::Credit_Limit
12              FS::cust_main::Merge
13              FS::cust_main::API
14              FS::otaker_Mixin FS::cust_main_Mixin
15              FS::geocode_Mixin FS::Quotable_Mixin FS::Sales_Mixin
16              FS::o2m_Common
17              FS::Record
18            );
19
20 require 5.006;
21 use strict;
22 use Carp;
23 use Scalar::Util qw( blessed );
24 use Time::Local qw(timelocal);
25 use Data::Dumper;
26 use Tie::IxHash;
27 use Date::Format;
28 #use Date::Manip;
29 use File::Temp; #qw( tempfile );
30 use Business::CreditCard 0.28;
31 use List::Util qw(min);
32 use Try::Tiny;
33 use FS::UID qw( dbh driver_name );
34 use FS::Record qw( qsearchs qsearch dbdef regexp_sql );
35 use FS::Cursor;
36 use FS::Misc qw( generate_ps do_print money_pretty card_types );
37 use FS::Msgcat qw(gettext);
38 use FS::CurrentUser;
39 use FS::TicketSystem;
40 use FS::payby;
41 use FS::cust_pkg;
42 use FS::cust_svc;
43 use FS::cust_bill;
44 use FS::cust_bill_void;
45 use FS::legacy_cust_bill;
46 use FS::cust_pay;
47 use FS::cust_pay_pending;
48 use FS::cust_pay_void;
49 use FS::cust_pay_batch;
50 use FS::cust_credit;
51 use FS::cust_refund;
52 use FS::part_referral;
53 use FS::cust_main_county;
54 use FS::cust_location;
55 use FS::cust_class;
56 use FS::tax_status;
57 use FS::cust_main_exemption;
58 use FS::cust_tax_adjustment;
59 use FS::cust_tax_location;
60 use FS::agent_currency;
61 use FS::cust_main_invoice;
62 use FS::cust_tag;
63 use FS::prepay_credit;
64 use FS::queue;
65 use FS::part_pkg;
66 use FS::part_export;
67 #use FS::cust_event;
68 use FS::type_pkgs;
69 use FS::payment_gateway;
70 use FS::agent_payment_gateway;
71 use FS::banned_pay;
72 use FS::cust_main_note;
73 use FS::cust_attachment;
74 use FS::cust_contact;
75 use FS::Locales;
76 use FS::upgrade_journal;
77 use FS::sales;
78 use FS::cust_payby;
79 use FS::contact;
80 use FS::reason;
81
82 # 1 is mostly method/subroutine entry and options
83 # 2 traces progress of some operations
84 # 3 is even more information including possibly sensitive data
85 our $DEBUG = 0;
86 our $me = '[FS::cust_main]';
87
88 our $import = 0;
89 our $ignore_expired_card = 0;
90 our $ignore_banned_card = 0;
91 our $ignore_invalid_card = 0;
92
93 our $skip_fuzzyfiles = 0;
94
95 our $ucfirst_nowarn = 0;
96
97 #this info is in cust_payby as of 4.x
98 #this and the fields themselves can be removed in 5.x
99 our @encrypted_fields = ('payinfo', 'paycvv');
100 sub nohistory_fields { ('payinfo', 'paycvv'); }
101
102 our $conf;
103 our $default_agent_custid;
104 our $custnum_display_length;
105 #ask FS::UID to run this stuff for us later
106 #$FS::UID::callback{'FS::cust_main'} = sub { 
107 install_callback FS::UID sub { 
108   $conf = new FS::Conf;
109   $ignore_invalid_card    = $conf->exists('allow_invalid_cards');
110   $default_agent_custid   = $conf->exists('cust_main-default_agent_custid');
111   $custnum_display_length = $conf->config('cust_main-custnum-display_length');
112 };
113
114 sub _cache {
115   my $self = shift;
116   my ( $hashref, $cache ) = @_;
117   if ( exists $hashref->{'pkgnum'} ) {
118     #@{ $self->{'_pkgnum'} } = ();
119     my $subcache = $cache->subcache( 'pkgnum', 'cust_pkg', $hashref->{custnum});
120     $self->{'_pkgnum'} = $subcache;
121     #push @{ $self->{'_pkgnum'} },
122     FS::cust_pkg->new_or_cached($hashref, $subcache) if $hashref->{pkgnum};
123   }
124 }
125
126 =head1 NAME
127
128 FS::cust_main - Object methods for cust_main records
129
130 =head1 SYNOPSIS
131
132   use FS::cust_main;
133
134   $record = new FS::cust_main \%hash;
135   $record = new FS::cust_main { 'column' => 'value' };
136
137   $error = $record->insert;
138
139   $error = $new_record->replace($old_record);
140
141   $error = $record->delete;
142
143   $error = $record->check;
144
145   @cust_pkg = $record->all_pkgs;
146
147   @cust_pkg = $record->ncancelled_pkgs;
148
149   @cust_pkg = $record->suspended_pkgs;
150
151   $error = $record->bill;
152   $error = $record->bill %options;
153   $error = $record->bill 'time' => $time;
154
155   $error = $record->collect;
156   $error = $record->collect %options;
157   $error = $record->collect 'invoice_time'   => $time,
158                           ;
159
160 =head1 DESCRIPTION
161
162 An FS::cust_main object represents a customer.  FS::cust_main inherits from 
163 FS::Record.  The following fields are currently supported:
164
165 =over 4
166
167 =item custnum
168
169 Primary key (assigned automatically for new customers)
170
171 =item agentnum
172
173 Agent (see L<FS::agent>)
174
175 =item refnum
176
177 Advertising source (see L<FS::part_referral>)
178
179 =item first
180
181 First name
182
183 =item last
184
185 Last name
186
187 =item ss
188
189 Cocial security number (optional)
190
191 =item company
192
193 (optional)
194
195 =item daytime
196
197 phone (optional)
198
199 =item night
200
201 phone (optional)
202
203 =item fax
204
205 phone (optional)
206
207 =item mobile
208
209 phone (optional)
210
211 =item payby
212
213 Payment Type (See L<FS::payinfo_Mixin> for valid payby values)
214
215 =item payinfo
216
217 Payment Information (See L<FS::payinfo_Mixin> for data format)
218
219 =item paymask
220
221 Masked payinfo (See L<FS::payinfo_Mixin> for how this works)
222
223 =item paycvv
224
225 Card Verification Value, "CVV2" (also known as CVC2 or CID), the 3 or 4 digit number on the back (or front, for American Express) of the credit card
226
227 =item paydate
228
229 Expiration date, mm/yyyy, m/yyyy, mm/yy or m/yy
230
231 =item paystart_month
232
233 Start date month (maestro/solo cards only)
234
235 =item paystart_year
236
237 Start date year (maestro/solo cards only)
238
239 =item payissue
240
241 Issue number (maestro/solo cards only)
242
243 =item payname
244
245 Name on card or billing name
246
247 =item payip
248
249 IP address from which payment information was received
250
251 =item tax
252
253 Tax exempt, empty or `Y'
254
255 =item usernum
256
257 Order taker (see L<FS::access_user>)
258
259 =item comments
260
261 Comments (optional)
262
263 =item referral_custnum
264
265 Referring customer number
266
267 =item spool_cdr
268
269 Enable individual CDR spooling, empty or `Y'
270
271 =item dundate
272
273 A suggestion to events (see L<FS::part_bill_event">) to delay until this unix timestamp
274
275 =item squelch_cdr
276
277 Discourage individual CDR printing, empty or `Y'
278
279 =item edit_subject
280
281 Allow self-service editing of ticket subjects, empty or 'Y'
282
283 =item calling_list_exempt
284
285 Do not call, empty or 'Y'
286
287 =item invoice_ship_address
288
289 Display ship_address ("Service address") on invoices for this customer, empty or 'Y'
290
291 =back
292
293 =head1 METHODS
294
295 =over 4
296
297 =item new HASHREF
298
299 Creates a new customer.  To add the customer to the database, see L<"insert">.
300
301 Note that this stores the hash reference, not a distinct copy of the hash it
302 points to.  You can ask the object for a copy with the I<hash> method.
303
304 =cut
305
306 sub table { 'cust_main'; }
307
308 =item insert [ CUST_PKG_HASHREF [ , INVOICING_LIST_ARYREF ] [ , OPTION => VALUE ... ] ]
309
310 Adds this customer to the database.  If there is an error, returns the error,
311 otherwise returns false.
312
313 Usually the customer's location will not yet exist in the database, and
314 the C<bill_location> and C<ship_location> pseudo-fields must be set to 
315 uninserted L<FS::cust_location> objects.  These will be inserted and linked
316 (in both directions) to the new customer record.  If they're references 
317 to the same object, they will become the same location.
318
319 CUST_PKG_HASHREF: If you pass a Tie::RefHash data structure to the insert
320 method containing FS::cust_pkg and FS::svc_I<tablename> objects, all records
321 are inserted atomicly, or the transaction is rolled back.  Passing an empty
322 hash reference is equivalent to not supplying this parameter.  There should be
323 a better explanation of this, but until then, here's an example:
324
325   use Tie::RefHash;
326   tie %hash, 'Tie::RefHash'; #this part is important
327   %hash = (
328     $cust_pkg => [ $svc_acct ],
329     ...
330   );
331   $cust_main->insert( \%hash );
332
333 INVOICING_LIST_ARYREF: No longer supported.
334
335 Currently available options are: I<depend_jobnum>, I<noexport>,
336 I<tax_exemption>, I<prospectnum>, I<contact> and I<contact_params>.
337
338 If I<depend_jobnum> is set, all provisioning jobs will have a dependancy
339 on the supplied jobnum (they will not run until the specific job completes).
340 This can be used to defer provisioning until some action completes (such
341 as running the customer's credit card successfully).
342
343 The I<noexport> option is deprecated.  If I<noexport> is set true, no
344 provisioning jobs (exports) are scheduled.  (You can schedule them later with
345 the B<reexport> method.)
346
347 The I<tax_exemption> option can be set to an arrayref of tax names or a hashref
348 of tax names and exemption numbers.  FS::cust_main_exemption records will be
349 created and inserted.
350
351 If I<prospectnum> is set, moves contacts and locations from that prospect.
352
353 If I<contact> is set to an arrayref of FS::contact objects, those will be
354 inserted.
355
356 If I<contact_params> is set to a hashref of CGI parameters (and I<contact> is
357 unset), inserts those new contacts with this new customer.  Handles CGI
358 paramaters for an "m2" multiple entry field as passed by edit/cust_main.cgi
359
360 If I<cust_payby_params> is set to a hashref o fCGI parameters, inserts those
361 new stored payment records with this new customer.  Handles CGI parameters
362 for an "m2" multiple entry field as passed by edit/cust_main.cgi
363
364 =cut
365
366 sub insert {
367   my $self = shift;
368   my $cust_pkgs = @_ ? shift : {};
369   my $invoicing_list;
370   if ( $_[0] and ref($_[0]) eq 'ARRAY' ) {
371     warn "cust_main::insert using deprecated invoicing list argument";
372     $invoicing_list = shift;
373   }
374   my %options = @_;
375   warn "$me insert called with options ".
376        join(', ', map { "$_: $options{$_}" } keys %options ). "\n"
377     if $DEBUG;
378
379   local $SIG{HUP} = 'IGNORE';
380   local $SIG{INT} = 'IGNORE';
381   local $SIG{QUIT} = 'IGNORE';
382   local $SIG{TERM} = 'IGNORE';
383   local $SIG{TSTP} = 'IGNORE';
384   local $SIG{PIPE} = 'IGNORE';
385
386   my $oldAutoCommit = $FS::UID::AutoCommit;
387   local $FS::UID::AutoCommit = 0;
388   my $dbh = dbh;
389
390   my $prepay_identifier = '';
391   my( $amount, $seconds, $upbytes, $downbytes, $totalbytes ) = (0, 0, 0, 0, 0);
392   my $payby = '';
393   if ( $self->payby eq 'PREPAY' ) {
394
395     $self->payby(''); #'BILL');
396     $prepay_identifier = $self->payinfo;
397     $self->payinfo('');
398
399     warn "  looking up prepaid card $prepay_identifier\n"
400       if $DEBUG > 1;
401
402     my $error = $self->get_prepay( $prepay_identifier,
403                                    'amount_ref'     => \$amount,
404                                    'seconds_ref'    => \$seconds,
405                                    'upbytes_ref'    => \$upbytes,
406                                    'downbytes_ref'  => \$downbytes,
407                                    'totalbytes_ref' => \$totalbytes,
408                                  );
409     if ( $error ) {
410       $dbh->rollback if $oldAutoCommit;
411       #return "error applying prepaid card (transaction rolled back): $error";
412       return $error;
413     }
414
415     $payby = 'PREP' if $amount;
416
417   } elsif ( $self->payby =~ /^(CASH|WEST|MCRD|MCHK|PPAL)$/ ) {
418
419     $payby = $1;
420     $self->payby(''); #'BILL');
421     $amount = $self->paid;
422
423   }
424
425   # insert locations
426   foreach my $l (qw(bill_location ship_location)) {
427
428     my $loc = delete $self->hashref->{$l} or next;
429
430     if ( !$loc->locationnum ) {
431       # warn the location that we're going to insert it with no custnum
432       $loc->set(custnum_pending => 1);
433       warn "  inserting $l\n"
434         if $DEBUG > 1;
435       my $error = $loc->insert;
436       if ( $error ) {
437         $dbh->rollback if $oldAutoCommit;
438         my $label = $l eq 'ship_location' ? 'service' : 'billing';
439         return "$error (in $label location)";
440       }
441
442     } elsif ( $loc->prospectnum ) {
443
444       $loc->prospectnum('');
445       $loc->set(custnum_pending => 1);
446       my $error = $loc->replace;
447       if ( $error ) {
448         $dbh->rollback if $oldAutoCommit;
449         my $label = $l eq 'ship_location' ? 'service' : 'billing';
450         return "$error (moving $label location)";
451       }
452
453     } elsif ( ($loc->custnum || 0) > 0 ) {
454       # then it somehow belongs to another customer--shouldn't happen
455       $dbh->rollback if $oldAutoCommit;
456       return "$l belongs to customer ".$loc->custnum;
457     }
458     # else it already belongs to this customer 
459     # (happens when ship_location is identical to bill_location)
460
461     $self->set($l.'num', $loc->locationnum);
462
463     if ( $self->get($l.'num') eq '' ) {
464       $dbh->rollback if $oldAutoCommit;
465       return "$l not set";
466     }
467   }
468
469   warn "  inserting $self\n"
470     if $DEBUG > 1;
471
472   $self->signupdate(time) unless $self->signupdate;
473
474   $self->auto_agent_custid()
475     if $conf->config('cust_main-auto_agent_custid') && ! $self->agent_custid;
476
477   my $error =  $self->check_payinfo_cardtype
478             || $self->SUPER::insert;
479   if ( $error ) {
480     $dbh->rollback if $oldAutoCommit;
481     #return "inserting cust_main record (transaction rolled back): $error";
482     return $error;
483   }
484
485   # now set cust_location.custnum
486   foreach my $l (qw(bill_location ship_location)) {
487     warn "  setting $l.custnum\n"
488       if $DEBUG > 1;
489     my $loc = $self->$l or next;
490     unless ( $loc->custnum ) {
491       $loc->set(custnum => $self->custnum);
492       $error ||= $loc->replace;
493     }
494
495     if ( $error ) {
496       $dbh->rollback if $oldAutoCommit;
497       return "error setting $l custnum: $error";
498     }
499   }
500
501   warn "  setting customer tags\n"
502     if $DEBUG > 1;
503
504   foreach my $tagnum ( @{ $self->tagnum || [] } ) {
505     my $cust_tag = new FS::cust_tag { 'tagnum'  => $tagnum,
506                                       'custnum' => $self->custnum };
507     my $error = $cust_tag->insert;
508     if ( $error ) {
509       $dbh->rollback if $oldAutoCommit;
510       return $error;
511     }
512   }
513
514   my $prospectnum = delete $options{'prospectnum'};
515   if ( $prospectnum ) {
516
517     warn "  moving contacts and locations from prospect $prospectnum\n"
518       if $DEBUG > 1;
519
520     my $prospect_main =
521       qsearchs('prospect_main', { 'prospectnum' => $prospectnum } );
522     unless ( $prospect_main ) {
523       $dbh->rollback if $oldAutoCommit;
524       return "Unknown prospectnum $prospectnum";
525     }
526     $prospect_main->custnum($self->custnum);
527     $prospect_main->disabled('Y');
528     my $error = $prospect_main->replace;
529     if ( $error ) {
530       $dbh->rollback if $oldAutoCommit;
531       return $error;
532     }
533
534     foreach my $prospect_contact ( $prospect_main->prospect_contact ) {
535       my $cust_contact = new FS::cust_contact {
536         'custnum' => $self->custnum,
537         'invoice_dest' => 'Y', # invoice_dest currently not set for prospect contacts
538         map { $_ => $prospect_contact->$_() } qw( contactnum classnum comment )
539       };
540       my $error =  $cust_contact->insert
541                 || $prospect_contact->delete;
542       if ( $error ) {
543         $dbh->rollback if $oldAutoCommit;
544         return $error;
545       }
546     }
547
548     my @cust_location = $prospect_main->cust_location;
549     my @qual = $prospect_main->qual;
550
551     foreach my $r ( @cust_location, @qual ) {
552       $r->prospectnum('');
553       $r->custnum($self->custnum);
554       my $error = $r->replace;
555       if ( $error ) {
556         $dbh->rollback if $oldAutoCommit;
557         return $error;
558       }
559     }
560     # since we set invoice_dest on all migrated prospect contacts (for now),
561     # don't process invoicing_list.
562     delete $options{'invoicing_list'};
563     $invoicing_list = undef;
564   }
565
566   warn "  setting contacts\n"
567     if $DEBUG > 1;
568
569   $invoicing_list ||= $options{'invoicing_list'};
570   if ( $invoicing_list ) {
571
572     $invoicing_list = [ $invoicing_list ] if !ref($invoicing_list);
573
574     my $email = '';
575     foreach my $dest (@$invoicing_list ) {
576       if ($dest eq 'POST') {
577         $self->set('postal_invoice', 'Y');
578       } else {
579
580         my $contact_email = qsearchs('contact_email', { emailaddress => $dest });
581         if ( $contact_email ) {
582           my $cust_contact = FS::cust_contact->new({
583               contactnum    => $contact_email->contactnum,
584               custnum       => $self->custnum,
585           });
586           $cust_contact->set('invoice_dest', 'Y');
587           my $error = $cust_contact->insert;
588           if ( $error ) {
589             $dbh->rollback if $oldAutoCommit;
590             return "$error (linking to email address $dest)";
591           }
592
593         } else {
594           # this email address is not yet linked to any contact
595           $email .= ',' if length($email);
596           $email .= $dest;
597         }
598       }
599     }
600
601     if ( $email ) {
602
603       my $contact = FS::contact->new({
604         'custnum'       => $self->get('custnum'),
605         'last'          => $self->get('last'),
606         'first'         => $self->get('first'),
607         'emailaddress'  => $email,
608         'invoice_dest'  => 'Y', # yes, you can set this via the contact
609       });
610       my $error = $contact->insert;
611       if ( $error ) {
612         $dbh->rollback if $oldAutoCommit;
613         return $error;
614       }
615
616     }
617
618   }
619
620   if ( my $contact = delete $options{'contact'} ) {
621
622     foreach my $c ( @$contact ) {
623       $c->custnum($self->custnum);
624       my $error = $c->insert;
625       if ( $error ) {
626         $dbh->rollback if $oldAutoCommit;
627         return $error;
628       }
629
630     }
631
632   } elsif ( my $contact_params = delete $options{'contact_params'} ) {
633
634     my $error = $self->process_o2m( 'table'  => 'contact',
635                                     'fields' => FS::contact->cgi_contact_fields,
636                                     'params' => $contact_params,
637                                   );
638     if ( $error ) {
639       $dbh->rollback if $oldAutoCommit;
640       return $error;
641     }
642   }
643
644   warn "  setting cust_payby\n"
645     if $DEBUG > 1;
646
647   if ( $options{cust_payby} ) {
648
649     foreach my $cust_payby ( @{ $options{cust_payby} } ) {
650       $cust_payby->custnum($self->custnum);
651       my $error = $cust_payby->insert;
652       if ( $error ) {
653         $dbh->rollback if $oldAutoCommit;
654         return $error;
655       }
656     }
657
658   } elsif ( my $cust_payby_params = delete $options{'cust_payby_params'} ) {
659
660     my $error = $self->process_o2m(
661       'table'         => 'cust_payby',
662       'fields'        => FS::cust_payby->cgi_cust_payby_fields,
663       'params'        => $cust_payby_params,
664       'hash_callback' => \&FS::cust_payby::cgi_hash_callback,
665     );
666     if ( $error ) {
667       $dbh->rollback if $oldAutoCommit;
668       return $error;
669     }
670
671   }
672
673   warn "  setting cust_main_exemption\n"
674     if $DEBUG > 1;
675
676   my $tax_exemption = delete $options{'tax_exemption'};
677   if ( $tax_exemption ) {
678
679     $tax_exemption = { map { $_ => '' } @$tax_exemption }
680       if ref($tax_exemption) eq 'ARRAY';
681
682     foreach my $taxname ( keys %$tax_exemption ) {
683       my $cust_main_exemption = new FS::cust_main_exemption {
684         'custnum'       => $self->custnum,
685         'taxname'       => $taxname,
686         'exempt_number' => $tax_exemption->{$taxname},
687       };
688       my $error = $cust_main_exemption->insert;
689       if ( $error ) {
690         $dbh->rollback if $oldAutoCommit;
691         return "inserting cust_main_exemption (transaction rolled back): $error";
692       }
693     }
694   }
695
696   warn "  ordering packages\n"
697     if $DEBUG > 1;
698
699   $error = $self->order_pkgs( $cust_pkgs,
700                               %options,
701                               'seconds_ref'    => \$seconds,
702                               'upbytes_ref'    => \$upbytes,
703                               'downbytes_ref'  => \$downbytes,
704                               'totalbytes_ref' => \$totalbytes,
705                             );
706   if ( $error ) {
707     $dbh->rollback if $oldAutoCommit;
708     return $error;
709   }
710
711   if ( $seconds ) {
712     $dbh->rollback if $oldAutoCommit;
713     return "No svc_acct record to apply pre-paid time";
714   }
715   if ( $upbytes || $downbytes || $totalbytes ) {
716     $dbh->rollback if $oldAutoCommit;
717     return "No svc_acct record to apply pre-paid data";
718   }
719
720   if ( $amount ) {
721     warn "  inserting initial $payby payment of $amount\n"
722       if $DEBUG > 1;
723     $error = $self->insert_cust_pay($payby, $amount, $prepay_identifier);
724     if ( $error ) {
725       $dbh->rollback if $oldAutoCommit;
726       return "inserting payment (transaction rolled back): $error";
727     }
728   }
729
730   unless ( $import || $skip_fuzzyfiles ) {
731     warn "  queueing fuzzyfiles update\n"
732       if $DEBUG > 1;
733     $error = $self->queue_fuzzyfiles_update;
734     if ( $error ) {
735       $dbh->rollback if $oldAutoCommit;
736       return "updating fuzzy search cache: $error";
737     }
738   }
739
740   # FS::geocode_Mixin::after_insert or something?
741   if ( $conf->config('tax_district_method') and !$import ) {
742     # if anything non-empty, try to look it up
743     my $queue = new FS::queue {
744       'job'     => 'FS::geocode_Mixin::process_district_update',
745       'custnum' => $self->custnum,
746     };
747     my $error = $queue->insert( ref($self), $self->custnum );
748     if ( $error ) {
749       $dbh->rollback if $oldAutoCommit;
750       return "queueing tax district update: $error";
751     }
752   }
753
754   # cust_main exports!
755   warn "  exporting\n" if $DEBUG > 1;
756
757   my $export_args = $options{'export_args'} || [];
758
759   my @part_export =
760     map qsearch( 'part_export', {exportnum=>$_} ),
761       $conf->config('cust_main-exports'); #, $agentnum
762
763   foreach my $part_export ( @part_export ) {
764     my $error = $part_export->export_insert($self, @$export_args);
765     if ( $error ) {
766       $dbh->rollback if $oldAutoCommit;
767       return "exporting to ". $part_export->exporttype.
768              " (transaction rolled back): $error";
769     }
770   }
771
772   #foreach my $depend_jobnum ( @$depend_jobnums ) {
773   #    warn "[$me] inserting dependancies on supplied job $depend_jobnum\n"
774   #      if $DEBUG;
775   #    foreach my $jobnum ( @jobnums ) {
776   #      my $queue = qsearchs('queue', { 'jobnum' => $jobnum } );
777   #      warn "[$me] inserting dependancy for job $jobnum on $depend_jobnum\n"
778   #        if $DEBUG;
779   #      my $error = $queue->depend_insert($depend_jobnum);
780   #      if ( $error ) {
781   #        $dbh->rollback if $oldAutoCommit;
782   #        return "error queuing job dependancy: $error";
783   #      }
784   #    }
785   #  }
786   #
787   #}
788   #
789   #if ( exists $options{'jobnums'} ) {
790   #  push @{ $options{'jobnums'} }, @jobnums;
791   #}
792
793   warn "  insert complete; committing transaction\n"
794     if $DEBUG > 1;
795
796   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
797   '';
798
799 }
800
801 use File::CounterFile;
802 sub auto_agent_custid {
803   my $self = shift;
804
805   my $format = $conf->config('cust_main-auto_agent_custid');
806   my $agent_custid;
807   if ( $format eq '1YMMXXXXXXXX' ) {
808
809     my $counter = new File::CounterFile 'cust_main.agent_custid';
810     $counter->lock;
811
812     my $ym = 100000000000 + time2str('%y%m00000000', time);
813     if ( $ym > $counter->value ) {
814       $counter->{'value'} = $agent_custid = $ym;
815       $counter->{'updated'} = 1;
816     } else {
817       $agent_custid = $counter->inc;
818     }
819
820     $counter->unlock;
821
822   } else {
823     die "Unknown cust_main-auto_agent_custid format: $format";
824   }
825
826   $self->agent_custid($agent_custid);
827
828 }
829
830 =item PACKAGE METHODS
831
832 Documentation on customer package methods has been moved to
833 L<FS::cust_main::Packages>.
834
835 =item recharge_prepay IDENTIFIER | PREPAY_CREDIT_OBJ [ , AMOUNTREF, SECONDSREF, UPBYTEREF, DOWNBYTEREF ]
836
837 Recharges this (existing) customer with the specified prepaid card (see
838 L<FS::prepay_credit>), specified either by I<identifier> or as an
839 FS::prepay_credit object.  If there is an error, returns the error, otherwise
840 returns false.
841
842 Optionally, five scalar references can be passed as well.  They will have their
843 values filled in with the amount, number of seconds, and number of upload,
844 download, and total bytes applied by this prepaid card.
845
846 =cut
847
848 #the ref bullshit here should be refactored like get_prepay.  MyAccount.pm is
849 #the only place that uses these args
850 sub recharge_prepay { 
851   my( $self, $prepay_credit, $amountref, $secondsref, 
852       $upbytesref, $downbytesref, $totalbytesref ) = @_;
853
854   local $SIG{HUP} = 'IGNORE';
855   local $SIG{INT} = 'IGNORE';
856   local $SIG{QUIT} = 'IGNORE';
857   local $SIG{TERM} = 'IGNORE';
858   local $SIG{TSTP} = 'IGNORE';
859   local $SIG{PIPE} = 'IGNORE';
860
861   my $oldAutoCommit = $FS::UID::AutoCommit;
862   local $FS::UID::AutoCommit = 0;
863   my $dbh = dbh;
864
865   my( $amount, $seconds, $upbytes, $downbytes, $totalbytes) = ( 0, 0, 0, 0, 0 );
866
867   my $error = $self->get_prepay( $prepay_credit,
868                                  'amount_ref'     => \$amount,
869                                  'seconds_ref'    => \$seconds,
870                                  'upbytes_ref'    => \$upbytes,
871                                  'downbytes_ref'  => \$downbytes,
872                                  'totalbytes_ref' => \$totalbytes,
873                                )
874            || $self->increment_seconds($seconds)
875            || $self->increment_upbytes($upbytes)
876            || $self->increment_downbytes($downbytes)
877            || $self->increment_totalbytes($totalbytes)
878            || $self->insert_cust_pay_prepay( $amount,
879                                              ref($prepay_credit)
880                                                ? $prepay_credit->identifier
881                                                : $prepay_credit
882                                            );
883
884   if ( $error ) {
885     $dbh->rollback if $oldAutoCommit;
886     return $error;
887   }
888
889   if ( defined($amountref)  ) { $$amountref  = $amount;  }
890   if ( defined($secondsref) ) { $$secondsref = $seconds; }
891   if ( defined($upbytesref) ) { $$upbytesref = $upbytes; }
892   if ( defined($downbytesref) ) { $$downbytesref = $downbytes; }
893   if ( defined($totalbytesref) ) { $$totalbytesref = $totalbytes; }
894
895   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
896   '';
897
898 }
899
900 =item get_prepay IDENTIFIER | PREPAY_CREDIT_OBJ [ , OPTION => VALUE ... ]
901
902 Looks up and deletes a prepaid card (see L<FS::prepay_credit>),
903 specified either by I<identifier> or as an FS::prepay_credit object.
904
905 Available options are: I<amount_ref>, I<seconds_ref>, I<upbytes_ref>, I<downbytes_ref>, and I<totalbytes_ref>.  The scalars (provided by references) will be
906 incremented by the values of the prepaid card.
907
908 If the prepaid card specifies an I<agentnum> (see L<FS::agent>), it is used to
909 check or set this customer's I<agentnum>.
910
911 If there is an error, returns the error, otherwise returns false.
912
913 =cut
914
915
916 sub get_prepay {
917   my( $self, $prepay_credit, %opt ) = @_;
918
919   local $SIG{HUP} = 'IGNORE';
920   local $SIG{INT} = 'IGNORE';
921   local $SIG{QUIT} = 'IGNORE';
922   local $SIG{TERM} = 'IGNORE';
923   local $SIG{TSTP} = 'IGNORE';
924   local $SIG{PIPE} = 'IGNORE';
925
926   my $oldAutoCommit = $FS::UID::AutoCommit;
927   local $FS::UID::AutoCommit = 0;
928   my $dbh = dbh;
929
930   unless ( ref($prepay_credit) ) {
931
932     my $identifier = $prepay_credit;
933
934     $prepay_credit = qsearchs(
935       'prepay_credit',
936       { 'identifier' => $identifier },
937       '',
938       'FOR UPDATE'
939     );
940
941     unless ( $prepay_credit ) {
942       $dbh->rollback if $oldAutoCommit;
943       return "Invalid prepaid card: ". $identifier;
944     }
945
946   }
947
948   if ( $prepay_credit->agentnum ) {
949     if ( $self->agentnum && $self->agentnum != $prepay_credit->agentnum ) {
950       $dbh->rollback if $oldAutoCommit;
951       return "prepaid card not valid for agent ". $self->agentnum;
952     }
953     $self->agentnum($prepay_credit->agentnum);
954   }
955
956   my $error = $prepay_credit->delete;
957   if ( $error ) {
958     $dbh->rollback if $oldAutoCommit;
959     return "removing prepay_credit (transaction rolled back): $error";
960   }
961
962   ${ $opt{$_.'_ref'} } += $prepay_credit->$_()
963     for grep $opt{$_.'_ref'}, qw( amount seconds upbytes downbytes totalbytes );
964
965   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
966   '';
967
968 }
969
970 =item increment_upbytes SECONDS
971
972 Updates this customer's single or primary account (see L<FS::svc_acct>) by
973 the specified number of upbytes.  If there is an error, returns the error,
974 otherwise returns false.
975
976 =cut
977
978 sub increment_upbytes {
979   _increment_column( shift, 'upbytes', @_);
980 }
981
982 =item increment_downbytes SECONDS
983
984 Updates this customer's single or primary account (see L<FS::svc_acct>) by
985 the specified number of downbytes.  If there is an error, returns the error,
986 otherwise returns false.
987
988 =cut
989
990 sub increment_downbytes {
991   _increment_column( shift, 'downbytes', @_);
992 }
993
994 =item increment_totalbytes SECONDS
995
996 Updates this customer's single or primary account (see L<FS::svc_acct>) by
997 the specified number of totalbytes.  If there is an error, returns the error,
998 otherwise returns false.
999
1000 =cut
1001
1002 sub increment_totalbytes {
1003   _increment_column( shift, 'totalbytes', @_);
1004 }
1005
1006 =item increment_seconds SECONDS
1007
1008 Updates this customer's single or primary account (see L<FS::svc_acct>) by
1009 the specified number of seconds.  If there is an error, returns the error,
1010 otherwise returns false.
1011
1012 =cut
1013
1014 sub increment_seconds {
1015   _increment_column( shift, 'seconds', @_);
1016 }
1017
1018 =item _increment_column AMOUNT
1019
1020 Updates this customer's single or primary account (see L<FS::svc_acct>) by
1021 the specified number of seconds or bytes.  If there is an error, returns
1022 the error, otherwise returns false.
1023
1024 =cut
1025
1026 sub _increment_column {
1027   my( $self, $column, $amount ) = @_;
1028   warn "$me increment_column called: $column, $amount\n"
1029     if $DEBUG;
1030
1031   return '' unless $amount;
1032
1033   my @cust_pkg = grep { $_->part_pkg->svcpart('svc_acct') }
1034                       $self->ncancelled_pkgs;
1035
1036   if ( ! @cust_pkg ) {
1037     return 'No packages with primary or single services found'.
1038            ' to apply pre-paid time';
1039   } elsif ( scalar(@cust_pkg) > 1 ) {
1040     #maybe have a way to specify the package/account?
1041     return 'Multiple packages found to apply pre-paid time';
1042   }
1043
1044   my $cust_pkg = $cust_pkg[0];
1045   warn "  found package pkgnum ". $cust_pkg->pkgnum. "\n"
1046     if $DEBUG > 1;
1047
1048   my @cust_svc =
1049     $cust_pkg->cust_svc( $cust_pkg->part_pkg->svcpart('svc_acct') );
1050
1051   if ( ! @cust_svc ) {
1052     return 'No account found to apply pre-paid time';
1053   } elsif ( scalar(@cust_svc) > 1 ) {
1054     return 'Multiple accounts found to apply pre-paid time';
1055   }
1056   
1057   my $svc_acct = $cust_svc[0]->svc_x;
1058   warn "  found service svcnum ". $svc_acct->pkgnum.
1059        ' ('. $svc_acct->email. ")\n"
1060     if $DEBUG > 1;
1061
1062   $column = "increment_$column";
1063   $svc_acct->$column($amount);
1064
1065 }
1066
1067 =item insert_cust_pay_prepay AMOUNT [ PAYINFO ]
1068
1069 Inserts a prepayment in the specified amount for this customer.  An optional
1070 second argument can specify the prepayment identifier for tracking purposes.
1071 If there is an error, returns the error, otherwise returns false.
1072
1073 =cut
1074
1075 sub insert_cust_pay_prepay {
1076   shift->insert_cust_pay('PREP', @_);
1077 }
1078
1079 =item insert_cust_pay_cash AMOUNT [ PAYINFO ]
1080
1081 Inserts a cash payment in the specified amount for this customer.  An optional
1082 second argument can specify the payment identifier for tracking purposes.
1083 If there is an error, returns the error, otherwise returns false.
1084
1085 =cut
1086
1087 sub insert_cust_pay_cash {
1088   shift->insert_cust_pay('CASH', @_);
1089 }
1090
1091 =item insert_cust_pay_west AMOUNT [ PAYINFO ]
1092
1093 Inserts a Western Union payment in the specified amount for this customer.  An
1094 optional second argument can specify the prepayment identifier for tracking
1095 purposes.  If there is an error, returns the error, otherwise returns false.
1096
1097 =cut
1098
1099 sub insert_cust_pay_west {
1100   shift->insert_cust_pay('WEST', @_);
1101 }
1102
1103 sub insert_cust_pay {
1104   my( $self, $payby, $amount ) = splice(@_, 0, 3);
1105   my $payinfo = scalar(@_) ? shift : '';
1106
1107   my $cust_pay = new FS::cust_pay {
1108     'custnum' => $self->custnum,
1109     'paid'    => sprintf('%.2f', $amount),
1110     #'_date'   => #date the prepaid card was purchased???
1111     'payby'   => $payby,
1112     'payinfo' => $payinfo,
1113   };
1114   $cust_pay->insert;
1115
1116 }
1117
1118 =item delete [ OPTION => VALUE ... ]
1119
1120 This deletes the customer.  If there is an error, returns the error, otherwise
1121 returns false.
1122
1123 This will completely remove all traces of the customer record.  This is not
1124 what you want when a customer cancels service; for that, cancel all of the
1125 customer's packages (see L</cancel>).
1126
1127 If the customer has any uncancelled packages, you need to pass a new (valid)
1128 customer number for those packages to be transferred to, as the "new_customer"
1129 option.  Cancelled packages will be deleted.  Did I mention that this is NOT
1130 what you want when a customer cancels service and that you really should be
1131 looking at L<FS::cust_pkg/cancel>?  
1132
1133 You can't delete a customer with invoices (see L<FS::cust_bill>),
1134 statements (see L<FS::cust_statement>), credits (see L<FS::cust_credit>),
1135 payments (see L<FS::cust_pay>) or refunds (see L<FS::cust_refund>), unless you
1136 set the "delete_financials" option to a true value.
1137
1138 =cut
1139
1140 sub delete {
1141   my( $self, %opt ) = @_;
1142
1143   local $SIG{HUP} = 'IGNORE';
1144   local $SIG{INT} = 'IGNORE';
1145   local $SIG{QUIT} = 'IGNORE';
1146   local $SIG{TERM} = 'IGNORE';
1147   local $SIG{TSTP} = 'IGNORE';
1148   local $SIG{PIPE} = 'IGNORE';
1149
1150   my $oldAutoCommit = $FS::UID::AutoCommit;
1151   local $FS::UID::AutoCommit = 0;
1152   my $dbh = dbh;
1153
1154   if ( qsearch('agent', { 'agent_custnum' => $self->custnum } ) ) {
1155      $dbh->rollback if $oldAutoCommit;
1156      return "Can't delete a master agent customer";
1157   }
1158
1159   #use FS::access_user
1160   if ( qsearch('access_user', { 'user_custnum' => $self->custnum } ) ) {
1161      $dbh->rollback if $oldAutoCommit;
1162      return "Can't delete a master employee customer";
1163   }
1164
1165   tie my %financial_tables, 'Tie::IxHash',
1166     'cust_bill'      => 'invoices',
1167     'cust_statement' => 'statements',
1168     'cust_credit'    => 'credits',
1169     'cust_pay'       => 'payments',
1170     'cust_refund'    => 'refunds',
1171   ;
1172    
1173   foreach my $table ( keys %financial_tables ) {
1174
1175     my @records = $self->$table();
1176
1177     if ( @records && ! $opt{'delete_financials'} ) {
1178       $dbh->rollback if $oldAutoCommit;
1179       return "Can't delete a customer with ". $financial_tables{$table};
1180     }
1181
1182     foreach my $record ( @records ) {
1183       my $error = $record->delete;
1184       if ( $error ) {
1185         $dbh->rollback if $oldAutoCommit;
1186         return "Error deleting ". $financial_tables{$table}. ": $error\n";
1187       }
1188     }
1189
1190   }
1191
1192   my @cust_pkg = $self->ncancelled_pkgs;
1193   if ( @cust_pkg ) {
1194     my $new_custnum = $opt{'new_custnum'};
1195     unless ( qsearchs( 'cust_main', { 'custnum' => $new_custnum } ) ) {
1196       $dbh->rollback if $oldAutoCommit;
1197       return "Invalid new customer number: $new_custnum";
1198     }
1199     foreach my $cust_pkg ( @cust_pkg ) {
1200       my %hash = $cust_pkg->hash;
1201       $hash{'custnum'} = $new_custnum;
1202       my $new_cust_pkg = new FS::cust_pkg ( \%hash );
1203       my $error = $new_cust_pkg->replace($cust_pkg,
1204                                          options => { $cust_pkg->options },
1205                                         );
1206       if ( $error ) {
1207         $dbh->rollback if $oldAutoCommit;
1208         return $error;
1209       }
1210     }
1211   }
1212   my @cancelled_cust_pkg = $self->all_pkgs;
1213   foreach my $cust_pkg ( @cancelled_cust_pkg ) {
1214     my $error = $cust_pkg->delete;
1215     if ( $error ) {
1216       $dbh->rollback if $oldAutoCommit;
1217       return $error;
1218     }
1219   }
1220
1221   #cust_tax_adjustment in financials?
1222   #cust_pay_pending?  ouch
1223   foreach my $table (qw(
1224     cust_main_invoice cust_main_exemption cust_tag cust_attachment contact
1225     cust_payby cust_location cust_main_note cust_tax_adjustment
1226     cust_pay_void cust_pay_batch queue cust_tax_exempt
1227   )) {
1228     foreach my $record ( qsearch( $table, { 'custnum' => $self->custnum } ) ) {
1229       my $error = $record->delete;
1230       if ( $error ) {
1231         $dbh->rollback if $oldAutoCommit;
1232         return $error;
1233       }
1234     }
1235   }
1236
1237   my $sth = $dbh->prepare(
1238     'UPDATE cust_main SET referral_custnum = NULL WHERE referral_custnum = ?'
1239   ) or do {
1240     my $errstr = $dbh->errstr;
1241     $dbh->rollback if $oldAutoCommit;
1242     return $errstr;
1243   };
1244   $sth->execute($self->custnum) or do {
1245     my $errstr = $sth->errstr;
1246     $dbh->rollback if $oldAutoCommit;
1247     return $errstr;
1248   };
1249
1250   #tickets
1251
1252   my $ticket_dbh = '';
1253   if ($conf->config('ticket_system') eq 'RT_Internal') {
1254     $ticket_dbh = $dbh;
1255   } elsif ($conf->config('ticket_system') eq 'RT_External') {
1256     my ($datasrc, $user, $pass) = $conf->config('ticket_system-rt_external_datasrc');
1257     $ticket_dbh = DBI->connect($datasrc, $user, $pass, { 'ChopBlanks' => 1 });
1258       #or die "RT_External DBI->connect error: $DBI::errstr\n";
1259   }
1260
1261   if ( $ticket_dbh ) {
1262
1263     my $ticket_sth = $ticket_dbh->prepare(
1264       'DELETE FROM Links WHERE Target = ?'
1265     ) or do {
1266       my $errstr = $ticket_dbh->errstr;
1267       $dbh->rollback if $oldAutoCommit;
1268       return $errstr;
1269     };
1270     $ticket_sth->execute('freeside://freeside/cust_main/'.$self->custnum)
1271       or do {
1272         my $errstr = $ticket_sth->errstr;
1273         $dbh->rollback if $oldAutoCommit;
1274         return $errstr;
1275       };
1276
1277     #check and see if the customer is the only link on the ticket, and
1278     #if so, set the ticket to deleted status in RT?
1279     #maybe someday, for now this will at least fix tickets not displaying
1280
1281   }
1282
1283   #delete the customer record
1284
1285   my $error = $self->SUPER::delete;
1286   if ( $error ) {
1287     $dbh->rollback if $oldAutoCommit;
1288     return $error;
1289   }
1290
1291   # cust_main exports!
1292
1293   #my $export_args = $options{'export_args'} || [];
1294
1295   my @part_export =
1296     map qsearch( 'part_export', {exportnum=>$_} ),
1297       $conf->config('cust_main-exports'); #, $agentnum
1298
1299   foreach my $part_export ( @part_export ) {
1300     my $error = $part_export->export_delete( $self ); #, @$export_args);
1301     if ( $error ) {
1302       $dbh->rollback if $oldAutoCommit;
1303       return "exporting to ". $part_export->exporttype.
1304              " (transaction rolled back): $error";
1305     }
1306   }
1307
1308   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1309   '';
1310
1311 }
1312
1313 =item replace [ OLD_RECORD ] [ INVOICING_LIST_ARYREF ] [ , OPTION => VALUE ... ] ]
1314
1315 Replaces the OLD_RECORD with this one in the database.  If there is an error,
1316 returns the error, otherwise returns false.
1317
1318 To change the customer's address, set the pseudo-fields C<bill_location> and
1319 C<ship_location>.  The address will still only change if at least one of the
1320 address fields differs from the existing values.
1321
1322 INVOICING_LIST_ARYREF: If you pass an arrayref to this method, it will be
1323 set as the contact email address for a default contact with the same name as
1324 the customer.
1325
1326 Currently available options are: I<tax_exemption>, I<cust_payby_params>, 
1327 I<contact_params>, I<invoicing_list>.
1328
1329 The I<tax_exemption> option can be set to an arrayref of tax names or a hashref
1330 of tax names and exemption numbers.  FS::cust_main_exemption records will be
1331 deleted and inserted as appropriate.
1332
1333 I<cust_payby_params> and I<contact_params> can be hashrefs of named parameter
1334 groups (describing the customer's payment methods and contacts, respectively)
1335 in the style supported by L<FS::o2m_Common/process_o2m>. See L<FS::cust_payby>
1336 and L<FS::contact> for the fields these can contain.
1337
1338 I<invoicing_list> is a synonym for the INVOICING_LIST_ARYREF parameter, and
1339 should be used instead if possible.
1340
1341 =cut
1342
1343 sub replace {
1344   my $self = shift;
1345
1346   my $old = ( blessed($_[0]) && $_[0]->isa('FS::Record') )
1347               ? shift
1348               : $self->replace_old;
1349
1350   my @param = @_;
1351
1352   warn "$me replace called\n"
1353     if $DEBUG;
1354
1355   my $curuser = $FS::CurrentUser::CurrentUser;
1356   return "You are not permitted to create complimentary accounts."
1357     if $self->complimentary eq 'Y'
1358     && $self->complimentary ne $old->complimentary
1359     && ! $curuser->access_right('Complimentary customer');
1360
1361   local($ignore_expired_card) = 1
1362     if $old->payby  =~ /^(CARD|DCRD)$/
1363     && $self->payby =~ /^(CARD|DCRD)$/
1364     && ( $old->payinfo eq $self->payinfo || $old->paymask eq $self->paymask );
1365
1366   local($ignore_banned_card) = 1
1367     if (    $old->payby  =~ /^(CARD|DCRD)$/ && $self->payby =~ /^(CARD|DCRD)$/
1368          || $old->payby  =~ /^(CHEK|DCHK)$/ && $self->payby =~ /^(CHEK|DCHK)$/ )
1369     && ( $old->payinfo eq $self->payinfo || $old->paymask eq $self->paymask );
1370
1371   if (    $self->payby =~ /^(CARD|DCRD)$/
1372        && $old->payinfo ne $self->payinfo
1373        && $old->paymask ne $self->paymask )
1374   {
1375     my $error = $self->check_payinfo_cardtype;
1376     return $error if $error;
1377   }
1378
1379   return "Invoicing locale is required"
1380     if $old->locale
1381     && ! $self->locale
1382     && $conf->exists('cust_main-require_locale');
1383
1384   local $SIG{HUP} = 'IGNORE';
1385   local $SIG{INT} = 'IGNORE';
1386   local $SIG{QUIT} = 'IGNORE';
1387   local $SIG{TERM} = 'IGNORE';
1388   local $SIG{TSTP} = 'IGNORE';
1389   local $SIG{PIPE} = 'IGNORE';
1390
1391   my $oldAutoCommit = $FS::UID::AutoCommit;
1392   local $FS::UID::AutoCommit = 0;
1393   my $dbh = dbh;
1394
1395   for my $l (qw(bill_location ship_location)) {
1396     #my $old_loc = $old->$l;
1397     my $new_loc = $self->$l or next;
1398
1399     # find the existing location if there is one
1400     $new_loc->set('custnum' => $self->custnum);
1401     my $error = $new_loc->find_or_insert;
1402     if ( $error ) {
1403       $dbh->rollback if $oldAutoCommit;
1404       return $error;
1405     }
1406     $self->set($l.'num', $new_loc->locationnum);
1407   } #for $l
1408
1409   my $invoicing_list;
1410   if ( @param && ref($param[0]) eq 'ARRAY' ) { # INVOICING_LIST_ARYREF
1411     warn "cust_main::replace: using deprecated invoicing list argument";
1412     $invoicing_list = shift @param;
1413   }
1414
1415   my %options = @param;
1416
1417   $invoicing_list ||= $options{invoicing_list};
1418
1419   my @contacts = map { $_->contact } $self->cust_contact;
1420   # find a contact that matches the customer's name
1421   my ($implicit_contact) = grep { $_->first eq $old->get('first')
1422                               and $_->last  eq $old->get('last') }
1423                             @contacts;
1424   $implicit_contact ||= FS::contact->new({
1425       'custnum'       => $self->custnum,
1426       'locationnum'   => $self->get('bill_locationnum'),
1427   });
1428
1429   # for any of these that are already contact emails, link to the existing
1430   # contact
1431   if ( $invoicing_list ) {
1432     my $email = '';
1433
1434     # kind of like process_m2m on these, except:
1435     # - the other side is two tables in a join
1436     # - and we might have to create new contact_emails
1437     # - and possibly a new contact
1438     # 
1439     # Find existing invoice emails that aren't on the implicit contact.
1440     # Any of these that are not on the new invoicing list will be removed.
1441     my %old_email_cust_contact;
1442     foreach my $cust_contact ($self->cust_contact) {
1443       next if !$cust_contact->invoice_dest;
1444       next if $cust_contact->contactnum == ($implicit_contact->contactnum || 0);
1445
1446       foreach my $contact_email ($cust_contact->contact->contact_email) {
1447         $old_email_cust_contact{ $contact_email->emailaddress } = $cust_contact;
1448       }
1449     }
1450
1451     foreach my $dest (@$invoicing_list) {
1452
1453       if ($dest eq 'POST') {
1454
1455         $self->set('postal_invoice', 'Y');
1456
1457       } elsif ( exists($old_email_cust_contact{$dest}) ) {
1458
1459         delete $old_email_cust_contact{$dest}; # don't need to remove it, then
1460
1461       } else {
1462
1463         # See if it belongs to some other contact; if so, link it.
1464         my $contact_email = qsearchs('contact_email', { emailaddress => $dest });
1465         if ( $contact_email
1466              and $contact_email->contactnum != ($implicit_contact->contactnum || 0) ) {
1467           my $cust_contact = qsearchs('cust_contact', {
1468               contactnum  => $contact_email->contactnum,
1469               custnum     => $self->custnum,
1470           }) || FS::cust_contact->new({
1471               contactnum    => $contact_email->contactnum,
1472               custnum       => $self->custnum,
1473           });
1474           $cust_contact->set('invoice_dest', 'Y');
1475           my $error = $cust_contact->custcontactnum ?
1476                         $cust_contact->replace : $cust_contact->insert;
1477           if ( $error ) {
1478             $dbh->rollback if $oldAutoCommit;
1479             return "$error (linking to email address $dest)";
1480           }
1481
1482         } else {
1483           # This email address is not yet linked to any contact, so it will
1484           # be added to the implicit contact.
1485           $email .= ',' if length($email);
1486           $email .= $dest;
1487         }
1488       }
1489     }
1490
1491     foreach my $remove_dest (keys %old_email_cust_contact) {
1492       my $cust_contact = $old_email_cust_contact{$remove_dest};
1493       # These were not in the list of requested destinations, so take them off.
1494       $cust_contact->set('invoice_dest', '');
1495       my $error = $cust_contact->replace;
1496       if ( $error ) {
1497         $dbh->rollback if $oldAutoCommit;
1498         return "$error (unlinking email address $remove_dest)";
1499       }
1500     }
1501
1502     # make sure it keeps up with the changed customer name, if any
1503     $implicit_contact->set('last', $self->get('last'));
1504     $implicit_contact->set('first', $self->get('first'));
1505     $implicit_contact->set('emailaddress', $email);
1506     $implicit_contact->set('invoice_dest', 'Y');
1507     $implicit_contact->set('custnum', $self->custnum);
1508
1509     my $error;
1510     if ( $implicit_contact->contactnum ) {
1511       $error = $implicit_contact->replace;
1512     } elsif ( length($email) ) { # don't create a new contact if not needed
1513       $error = $implicit_contact->insert;
1514     }
1515
1516     if ( $error ) {
1517       $dbh->rollback if $oldAutoCommit;
1518       return "$error (adding email address $email)";
1519     }
1520
1521   }
1522
1523   # replace the customer record
1524   my $error = $self->SUPER::replace($old);
1525
1526   if ( $error ) {
1527     $dbh->rollback if $oldAutoCommit;
1528     return $error;
1529   }
1530
1531   # now move packages to the new service location
1532   $self->set('ship_location', ''); #flush cache
1533   if ( $old->ship_locationnum and # should only be null during upgrade...
1534        $old->ship_locationnum != $self->ship_locationnum ) {
1535     $error = $old->ship_location->move_to($self->ship_location);
1536     if ( $error ) {
1537       $dbh->rollback if $oldAutoCommit;
1538       return $error;
1539     }
1540   }
1541   # don't move packages based on the billing location, but 
1542   # disable it if it's no longer in use
1543   if ( $old->bill_locationnum and
1544        $old->bill_locationnum != $self->bill_locationnum ) {
1545     $error = $old->bill_location->disable_if_unused;
1546     if ( $error ) {
1547       $dbh->rollback if $oldAutoCommit;
1548       return $error;
1549     }
1550   }
1551
1552   if ( $self->exists('tagnum') ) { #so we don't delete these on edit by accident
1553
1554     #this could be more efficient than deleting and re-inserting, if it matters
1555     foreach my $cust_tag (qsearch('cust_tag', {'custnum'=>$self->custnum} )) {
1556       my $error = $cust_tag->delete;
1557       if ( $error ) {
1558         $dbh->rollback if $oldAutoCommit;
1559         return $error;
1560       }
1561     }
1562     foreach my $tagnum ( @{ $self->tagnum || [] } ) {
1563       my $cust_tag = new FS::cust_tag { 'tagnum'  => $tagnum,
1564                                         'custnum' => $self->custnum };
1565       my $error = $cust_tag->insert;
1566       if ( $error ) {
1567         $dbh->rollback if $oldAutoCommit;
1568         return $error;
1569       }
1570     }
1571
1572   }
1573
1574   my $tax_exemption = delete $options{'tax_exemption'};
1575   if ( $tax_exemption ) {
1576
1577     $tax_exemption = { map { $_ => '' } @$tax_exemption }
1578       if ref($tax_exemption) eq 'ARRAY';
1579
1580     my %cust_main_exemption =
1581       map { $_->taxname => $_ }
1582           qsearch('cust_main_exemption', { 'custnum' => $old->custnum } );
1583
1584     foreach my $taxname ( keys %$tax_exemption ) {
1585
1586       if ( $cust_main_exemption{$taxname} && 
1587            $cust_main_exemption{$taxname}->exempt_number eq $tax_exemption->{$taxname}
1588          )
1589       {
1590         delete $cust_main_exemption{$taxname};
1591         next;
1592       }
1593
1594       my $cust_main_exemption = new FS::cust_main_exemption {
1595         'custnum'       => $self->custnum,
1596         'taxname'       => $taxname,
1597         'exempt_number' => $tax_exemption->{$taxname},
1598       };
1599       my $error = $cust_main_exemption->insert;
1600       if ( $error ) {
1601         $dbh->rollback if $oldAutoCommit;
1602         return "inserting cust_main_exemption (transaction rolled back): $error";
1603       }
1604     }
1605
1606     foreach my $cust_main_exemption ( values %cust_main_exemption ) {
1607       my $error = $cust_main_exemption->delete;
1608       if ( $error ) {
1609         $dbh->rollback if $oldAutoCommit;
1610         return "deleting cust_main_exemption (transaction rolled back): $error";
1611       }
1612     }
1613
1614   }
1615
1616   if ( my $cust_payby_params = delete $options{'cust_payby_params'} ) {
1617
1618     my $error = $self->process_o2m(
1619       'table'         => 'cust_payby',
1620       'fields'        => FS::cust_payby->cgi_cust_payby_fields,
1621       'params'        => $cust_payby_params,
1622       'hash_callback' => \&FS::cust_payby::cgi_hash_callback,
1623     );
1624     if ( $error ) {
1625       $dbh->rollback if $oldAutoCommit;
1626       return $error;
1627     }
1628
1629   }
1630
1631   if ( my $contact_params = delete $options{'contact_params'} ) {
1632
1633     # this can potentially replace contacts that were created by the
1634     # invoicing list argument, but the UI shouldn't allow both of them
1635     # to be specified
1636
1637     my $error = $self->process_o2m(
1638       'table'         => 'contact',
1639       'fields'        => FS::contact->cgi_contact_fields,
1640       'params'        => $contact_params,
1641     );
1642     if ( $error ) {
1643       $dbh->rollback if $oldAutoCommit;
1644       return $error;
1645     }
1646
1647   }
1648
1649   unless ( $import || $skip_fuzzyfiles ) {
1650     $error = $self->queue_fuzzyfiles_update;
1651     if ( $error ) {
1652       $dbh->rollback if $oldAutoCommit;
1653       return "updating fuzzy search cache: $error";
1654     }
1655   }
1656
1657   # tax district update in cust_location
1658
1659   # cust_main exports!
1660
1661   my $export_args = $options{'export_args'} || [];
1662
1663   my @part_export =
1664     map qsearch( 'part_export', {exportnum=>$_} ),
1665       $conf->config('cust_main-exports'); #, $agentnum
1666
1667   foreach my $part_export ( @part_export ) {
1668     my $error = $part_export->export_replace( $self, $old, @$export_args);
1669     if ( $error ) {
1670       $dbh->rollback if $oldAutoCommit;
1671       return "exporting to ". $part_export->exporttype.
1672              " (transaction rolled back): $error";
1673     }
1674   }
1675
1676   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1677   '';
1678
1679 }
1680
1681 =item queue_fuzzyfiles_update
1682
1683 Used by insert & replace to update the fuzzy search cache
1684
1685 =cut
1686
1687 use FS::cust_main::Search;
1688 sub queue_fuzzyfiles_update {
1689   my $self = shift;
1690
1691   local $SIG{HUP} = 'IGNORE';
1692   local $SIG{INT} = 'IGNORE';
1693   local $SIG{QUIT} = 'IGNORE';
1694   local $SIG{TERM} = 'IGNORE';
1695   local $SIG{TSTP} = 'IGNORE';
1696   local $SIG{PIPE} = 'IGNORE';
1697
1698   my $oldAutoCommit = $FS::UID::AutoCommit;
1699   local $FS::UID::AutoCommit = 0;
1700   my $dbh = dbh;
1701
1702   foreach my $field ( 'first', 'last', 'company', 'ship_company' ) {
1703     my $queue = new FS::queue { 
1704       'job' => 'FS::cust_main::Search::append_fuzzyfiles_fuzzyfield'
1705     };
1706     my @args = "cust_main.$field", $self->get($field);
1707     my $error = $queue->insert( @args );
1708     if ( $error ) {
1709       $dbh->rollback if $oldAutoCommit;
1710       return "queueing job (transaction rolled back): $error";
1711     }
1712   }
1713
1714   my @locations = ();
1715   push @locations, $self->bill_location if $self->bill_locationnum;
1716   push @locations, $self->ship_location if @locations && $self->has_ship_address;
1717   foreach my $location (@locations) {
1718     my $queue = new FS::queue { 
1719       'job' => 'FS::cust_main::Search::append_fuzzyfiles_fuzzyfield'
1720     };
1721     my @args = 'cust_location.address1', $location->address1;
1722     my $error = $queue->insert( @args );
1723     if ( $error ) {
1724       $dbh->rollback if $oldAutoCommit;
1725       return "queueing job (transaction rolled back): $error";
1726     }
1727   }
1728
1729   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
1730   '';
1731
1732 }
1733
1734 =item check
1735
1736 Checks all fields to make sure this is a valid customer record.  If there is
1737 an error, returns the error, otherwise returns false.  Called by the insert
1738 and replace methods.
1739
1740 =cut
1741
1742 sub check {
1743   my $self = shift;
1744
1745   warn "$me check BEFORE: \n". $self->_dump
1746     if $DEBUG > 2;
1747
1748   my $error =
1749     $self->ut_numbern('custnum')
1750     || $self->ut_number('agentnum')
1751     || $self->ut_textn('agent_custid')
1752     || $self->ut_number('refnum')
1753     || $self->ut_foreign_keyn('bill_locationnum', 'cust_location','locationnum')
1754     || $self->ut_foreign_keyn('ship_locationnum', 'cust_location','locationnum')
1755     || $self->ut_foreign_keyn('classnum', 'cust_class', 'classnum')
1756     || $self->ut_foreign_keyn('salesnum', 'sales', 'salesnum')
1757     || $self->ut_foreign_keyn('taxstatusnum', 'tax_status', 'taxstatusnum')
1758     || $self->ut_textn('custbatch')
1759     || $self->ut_name('last')
1760     || $self->ut_name('first')
1761     || $self->ut_snumbern('signupdate')
1762     || $self->ut_snumbern('birthdate')
1763     || $self->ut_namen('spouse_last')
1764     || $self->ut_namen('spouse_first')
1765     || $self->ut_snumbern('spouse_birthdate')
1766     || $self->ut_snumbern('anniversary_date')
1767     || $self->ut_textn('company')
1768     || $self->ut_textn('ship_company')
1769     || $self->ut_anything('comments')
1770     || $self->ut_numbern('referral_custnum')
1771     || $self->ut_textn('stateid')
1772     || $self->ut_textn('stateid_state')
1773     || $self->ut_textn('invoice_terms')
1774     || $self->ut_floatn('cdr_termination_percentage')
1775     || $self->ut_floatn('credit_limit')
1776     || $self->ut_numbern('billday')
1777     || $self->ut_numbern('prorate_day')
1778     || $self->ut_flag('force_prorate_day')
1779     || $self->ut_flag('edit_subject')
1780     || $self->ut_flag('calling_list_exempt')
1781     || $self->ut_flag('invoice_noemail')
1782     || $self->ut_flag('message_noemail')
1783     || $self->ut_enum('locale', [ '', FS::Locales->locales ])
1784     || $self->ut_currencyn('currency')
1785     || $self->ut_textn('po_number')
1786     || $self->ut_enum('complimentary', [ '', 'Y' ])
1787     || $self->ut_flag('invoice_ship_address')
1788     || $self->ut_flag('invoice_dest')
1789   ;
1790
1791   foreach (qw(company ship_company)) {
1792     my $company = $self->get($_);
1793     $company =~ s/^\s+//; 
1794     $company =~ s/\s+$//; 
1795     $company =~ s/\s+/ /g;
1796     $self->set($_, $company);
1797   }
1798
1799   #barf.  need message catalogs.  i18n.  etc.
1800   $error .= "Please select an advertising source."
1801     if $error =~ /^Illegal or empty \(numeric\) refnum: /;
1802   return $error if $error;
1803
1804   my $agent = qsearchs( 'agent', { 'agentnum' => $self->agentnum } )
1805     or return "Unknown agent";
1806
1807   if ( $self->currency ) {
1808     my $agent_currency = qsearchs( 'agent_currency', {
1809       'agentnum' => $agent->agentnum,
1810       'currency' => $self->currency,
1811     })
1812       or return "Agent ". $agent->agent.
1813                 " not permitted to offer ".  $self->currency. " invoicing";
1814   }
1815
1816   return "Unknown refnum"
1817     unless qsearchs( 'part_referral', { 'refnum' => $self->refnum } );
1818
1819   return "Unknown referring custnum: ". $self->referral_custnum
1820     unless ! $self->referral_custnum 
1821            || qsearchs( 'cust_main', { 'custnum' => $self->referral_custnum } );
1822
1823   if ( $self->ss eq '' ) {
1824     $self->ss('');
1825   } else {
1826     my $ss = $self->ss;
1827     $ss =~ s/\D//g;
1828     $ss =~ /^(\d{3})(\d{2})(\d{4})$/
1829       or return "Illegal social security number: ". $self->ss;
1830     $self->ss("$1-$2-$3");
1831   }
1832
1833   #turn off invoice_ship_address if ship & bill are the same
1834   if ($self->bill_locationnum eq $self->ship_locationnum) {
1835     $self->invoice_ship_address('');
1836   }
1837
1838   # cust_main_county verification now handled by cust_location check
1839
1840   $error =
1841        $self->ut_phonen('daytime', $self->country)
1842     || $self->ut_phonen('night',   $self->country)
1843     || $self->ut_phonen('fax',     $self->country)
1844     || $self->ut_phonen('mobile',  $self->country)
1845   ;
1846   return $error if $error;
1847
1848   if ( $conf->exists('cust_main-require_phone', $self->agentnum)
1849        && ! $import
1850        && ! length($self->daytime) && ! length($self->night) && ! length($self->mobile)
1851      ) {
1852
1853     my $daytime_label = FS::Msgcat::_gettext('daytime') =~ /^(daytime)?$/
1854                           ? 'Day Phone'
1855                           : FS::Msgcat::_gettext('daytime');
1856     my $night_label = FS::Msgcat::_gettext('night') =~ /^(night)?$/
1857                         ? 'Night Phone'
1858                         : FS::Msgcat::_gettext('night');
1859
1860     my $mobile_label = FS::Msgcat::_gettext('mobile') =~ /^(mobile)?$/
1861                         ? 'Mobile Phone'
1862                         : FS::Msgcat::_gettext('mobile');
1863
1864     return "$daytime_label, $night_label or $mobile_label is required"
1865   
1866   }
1867
1868   return "Please select an invoicing locale"
1869     if ! $self->locale
1870     && ! $self->custnum
1871     && $conf->exists('cust_main-require_locale');
1872
1873   return "Please select a customer class"
1874     if ! $self->classnum
1875     && $conf->exists('cust_main-require_classnum');
1876
1877   foreach my $flag (qw( tax spool_cdr squelch_cdr archived email_csv_cdr )) {
1878     $self->$flag() =~ /^(Y?)$/ or return "Illegal $flag: ". $self->$flag();
1879     $self->$flag($1);
1880   }
1881
1882   $self->usernum($FS::CurrentUser::CurrentUser->usernum) unless $self->usernum;
1883
1884   warn "$me check AFTER: \n". $self->_dump
1885     if $DEBUG > 2;
1886
1887   $self->SUPER::check;
1888 }
1889
1890 sub check_payinfo_cardtype {
1891   my $self = shift;
1892
1893   return '' unless $self->payby =~ /^(CARD|DCRD)$/;
1894
1895   my $payinfo = $self->payinfo;
1896   $payinfo =~ s/\D//g;
1897
1898   return '' if $self->tokenized($payinfo); #token
1899
1900   my %bop_card_types = map { $_=>1 } values %{ card_types() };
1901   my $cardtype = cardtype($payinfo);
1902
1903   return "$cardtype not accepted" unless $bop_card_types{$cardtype};
1904
1905   '';
1906
1907 }
1908
1909 =item replace_check
1910
1911 Additional checks for replace only.
1912
1913 =cut
1914
1915 sub replace_check {
1916   my ($new,$old) = @_;
1917   #preserve old value if global config is set
1918   if ($old && $conf->exists('invoice-ship_address')) {
1919     $new->invoice_ship_address($old->invoice_ship_address);
1920   }
1921   return '';
1922 }
1923
1924 =item addr_fields 
1925
1926 Returns a list of fields which have ship_ duplicates.
1927
1928 =cut
1929
1930 sub addr_fields {
1931   qw( last first company
1932       locationname
1933       address1 address2 city county state zip country
1934       latitude longitude
1935       daytime night fax mobile
1936     );
1937 }
1938
1939 =item has_ship_address
1940
1941 Returns true if this customer record has a separate shipping address.
1942
1943 =cut
1944
1945 sub has_ship_address {
1946   my $self = shift;
1947   $self->bill_locationnum != $self->ship_locationnum;
1948 }
1949
1950 =item location_hash
1951
1952 Returns a list of key/value pairs, with the following keys: address1, 
1953 adddress2, city, county, state, zip, country, district, and geocode.  The 
1954 shipping address is used if present.
1955
1956 =cut
1957
1958 sub location_hash {
1959   my $self = shift;
1960   $self->ship_location->location_hash;
1961 }
1962
1963 =item cust_location
1964
1965 Returns all locations (see L<FS::cust_location>) for this customer.
1966
1967 =cut
1968
1969 sub cust_location {
1970   my $self = shift;
1971   qsearch({
1972     'table'   => 'cust_location',
1973     'hashref' => { 'custnum'     => $self->custnum,
1974                    'prospectnum' => '',
1975                  },
1976     'order_by' => 'ORDER BY country, LOWER(state), LOWER(city), LOWER(county), LOWER(address1), LOWER(address2)',
1977   });
1978 }
1979
1980 =item cust_contact
1981
1982 Returns all contact associations (see L<FS::cust_contact>) for this customer.
1983
1984 =cut
1985
1986 sub cust_contact {
1987   my $self = shift;
1988   qsearch('cust_contact', { 'custnum' => $self->custnum } );
1989 }
1990
1991 =item cust_payby PAYBY
1992
1993 Returns all payment methods (see L<FS::cust_payby>) for this customer.
1994
1995 If one or more PAYBY are specified, returns only payment methods for specified PAYBY.
1996 Does not validate PAYBY.
1997
1998 =cut
1999
2000 sub cust_payby {
2001   my $self = shift;
2002   my @payby = @_;
2003   my $search = {
2004     'table'    => 'cust_payby',
2005     'hashref'  => { 'custnum' => $self->custnum },
2006     'order_by' => "ORDER BY payby IN ('CARD','CHEK') DESC, weight ASC",
2007   };
2008   $search->{'extra_sql'} = ' AND payby IN ( '.
2009                                join(',', map dbh->quote($_), @payby).
2010                              ' ) '
2011     if @payby;
2012
2013   qsearch($search);
2014 }
2015
2016 =item has_cust_payby_auto
2017
2018 Returns true if customer has an automatic payment method ('CARD' or 'CHEK')
2019
2020 =cut
2021
2022 sub has_cust_payby_auto {
2023   my $self = shift;
2024   scalar( qsearch({ 
2025     'table'     => 'cust_payby',
2026     'hashref'   => { 'custnum' => $self->custnum, },
2027     'extra_sql' => " AND payby IN ( 'CARD', 'CHEK' ) ",
2028     'order_by'  => 'LIMIT 1',
2029   }) );
2030
2031 }
2032
2033 =item unsuspend
2034
2035 Unsuspends all unflagged suspended packages (see L</unflagged_suspended_pkgs>
2036 and L<FS::cust_pkg>) for this customer, except those on hold.
2037
2038 Returns a list: an empty list on success or a list of errors.
2039
2040 =cut
2041
2042 sub unsuspend {
2043   my $self = shift;
2044   grep { ($_->get('setup')) && $_->unsuspend } $self->suspended_pkgs;
2045 }
2046
2047 =item release_hold
2048
2049 Unsuspends all suspended packages in the on-hold state (those without setup 
2050 dates) for this customer. 
2051
2052 =cut
2053
2054 sub release_hold {
2055   my $self = shift;
2056   grep { (!$_->setup) && $_->unsuspend } $self->suspended_pkgs;
2057 }
2058
2059 =item suspend
2060
2061 Suspends all unsuspended packages (see L<FS::cust_pkg>) for this customer.
2062
2063 Returns a list: an empty list on success or a list of errors.
2064
2065 =cut
2066
2067 sub suspend {
2068   my $self = shift;
2069   grep { $_->suspend(@_) } $self->unsuspended_pkgs;
2070 }
2071
2072 =item suspend_if_pkgpart HASHREF | PKGPART [ , PKGPART ... ]
2073
2074 Suspends all unsuspended packages (see L<FS::cust_pkg>) matching the listed
2075 PKGPARTs (see L<FS::part_pkg>).  Preferred usage is to pass a hashref instead
2076 of a list of pkgparts; the hashref has the following keys:
2077
2078 =over 4
2079
2080 =item pkgparts - listref of pkgparts
2081
2082 =item (other options are passed to the suspend method)
2083
2084 =back
2085
2086
2087 Returns a list: an empty list on success or a list of errors.
2088
2089 =cut
2090
2091 sub suspend_if_pkgpart {
2092   my $self = shift;
2093   my (@pkgparts, %opt);
2094   if (ref($_[0]) eq 'HASH'){
2095     @pkgparts = @{$_[0]{pkgparts}};
2096     %opt      = %{$_[0]};
2097   }else{
2098     @pkgparts = @_;
2099   }
2100   grep { $_->suspend(%opt) }
2101     grep { my $pkgpart = $_->pkgpart; grep { $pkgpart eq $_ } @pkgparts }
2102       $self->unsuspended_pkgs;
2103 }
2104
2105 =item suspend_unless_pkgpart HASHREF | PKGPART [ , PKGPART ... ]
2106
2107 Suspends all unsuspended packages (see L<FS::cust_pkg>) unless they match the
2108 given PKGPARTs (see L<FS::part_pkg>).  Preferred usage is to pass a hashref
2109 instead of a list of pkgparts; the hashref has the following keys:
2110
2111 =over 4
2112
2113 =item pkgparts - listref of pkgparts
2114
2115 =item (other options are passed to the suspend method)
2116
2117 =back
2118
2119 Returns a list: an empty list on success or a list of errors.
2120
2121 =cut
2122
2123 sub suspend_unless_pkgpart {
2124   my $self = shift;
2125   my (@pkgparts, %opt);
2126   if (ref($_[0]) eq 'HASH'){
2127     @pkgparts = @{$_[0]{pkgparts}};
2128     %opt      = %{$_[0]};
2129   }else{
2130     @pkgparts = @_;
2131   }
2132   grep { $_->suspend(%opt) }
2133     grep { my $pkgpart = $_->pkgpart; ! grep { $pkgpart eq $_ } @pkgparts }
2134       $self->unsuspended_pkgs;
2135 }
2136
2137 =item cancel [ OPTION => VALUE ... ]
2138
2139 Cancels all uncancelled packages (see L<FS::cust_pkg>) for this customer.
2140 The cancellation time will be now.
2141
2142 =back
2143
2144 Always returns a list: an empty list on success or a list of errors.
2145
2146 =cut
2147
2148 sub cancel {
2149   my $self = shift;
2150   my %opt = @_;
2151   warn "$me cancel called on customer ". $self->custnum. " with options ".
2152        join(', ', map { "$_: $opt{$_}" } keys %opt ). "\n"
2153     if $DEBUG;
2154   my @pkgs = $self->ncancelled_pkgs;
2155
2156   $self->cancel_pkgs( %opt, 'cust_pkg' => \@pkgs );
2157 }
2158
2159 =item cancel_pkgs OPTIONS
2160
2161 Cancels a specified list of packages. OPTIONS can include:
2162
2163 =over 4
2164
2165 =item cust_pkg - an arrayref of the packages. Required.
2166
2167 =item time - the cancellation time, used to calculate final bills and
2168 unused-time credits if any. Will be passed through to the bill() and
2169 FS::cust_pkg::cancel() methods.
2170
2171 =item quiet - can be set true to supress email cancellation notices.
2172
2173 =item reason - can be set to a cancellation reason (see L<FS:reason>), either a
2174 reasonnum of an existing reason, or passing a hashref will create a new reason.
2175 The hashref should have the following keys:
2176 typenum - Reason type (see L<FS::reason_type>)
2177 reason - Text of the new reason.
2178
2179 =item cust_pkg_reason - can be an arrayref of L<FS::cust_pkg_reason> objects
2180 for the individual packages, parallel to the C<cust_pkg> argument. The
2181 reason and reason_otaker arguments will be taken from those objects.
2182
2183 =item ban - can be set true to ban this customer's credit card or ACH information, if present.
2184
2185 =item nobill - can be set true to skip billing if it might otherwise be done.
2186
2187 =cut
2188
2189 sub cancel_pkgs {
2190   my( $self, %opt ) = @_;
2191
2192   # we're going to cancel services, which is not reversible
2193   die "cancel_pkgs cannot be run inside a transaction"
2194     if $FS::UID::AutoCommit == 0;
2195
2196   local $FS::UID::AutoCommit = 0;
2197
2198   return ( 'access denied' )
2199     unless $FS::CurrentUser::CurrentUser->access_right('Cancel customer');
2200
2201   if ( $opt{'ban'} ) {
2202
2203     foreach my $cust_payby ( $self->cust_payby ) {
2204
2205       #well, if they didn't get decrypted on search, then we don't have to 
2206       # try again... queue a job for the server that does have decryption
2207       # capability if we're in a paranoid multi-server implementation?
2208       return ( "Can't (yet) ban encrypted credit cards" )
2209         if $cust_payby->is_encrypted($cust_payby->payinfo);
2210
2211       my $ban = new FS::banned_pay $cust_payby->_new_banned_pay_hashref;
2212       my $error = $ban->insert;
2213       if ($error) {
2214         dbh->rollback;
2215         return ( $error );
2216       }
2217
2218     }
2219
2220   }
2221
2222   my @pkgs = @{ delete $opt{'cust_pkg'} };
2223   my $cancel_time = $opt{'time'} || time;
2224
2225   # bill all packages first, so we don't lose usage, service counts for
2226   # bulk billing, etc.
2227   if ( !$opt{nobill} && $conf->exists('bill_usage_on_cancel') ) {
2228     $opt{nobill} = 1;
2229     my $error = $self->bill( 'pkg_list' => [ @pkgs ],
2230                              'cancel'   => 1,
2231                              'time'     => $cancel_time );
2232     if ($error) {
2233       warn "Error billing during cancel, custnum ". $self->custnum. ": $error";
2234       dbh->rollback;
2235       return ( "Error billing during cancellation: $error" );
2236     }
2237   }
2238   dbh->commit;
2239
2240   my @errors;
2241   # try to cancel each service, the same way we would for individual packages,
2242   # but in cancel weight order.
2243   my @cust_svc = map { $_->cust_svc } @pkgs;
2244   my @sorted_cust_svc =
2245     map  { $_->[0] }
2246     sort { $a->[1] <=> $b->[1] }
2247     map  { [ $_, $_->svc_x ? $_->svc_x->table_info->{'cancel_weight'} : -1 ]; } @cust_svc
2248   ;
2249   warn "$me removing ".scalar(@sorted_cust_svc)." service(s) for customer ".
2250     $self->custnum."\n"
2251     if $DEBUG;
2252   foreach my $cust_svc (@sorted_cust_svc) {
2253     my $part_svc = $cust_svc->part_svc;
2254     next if ( defined($part_svc) and $part_svc->preserve );
2255     # immediate cancel, no date option
2256     # transactionize individually
2257     my $error = try { $cust_svc->cancel } catch { $_ };
2258     if ( $error ) {
2259       dbh->rollback;
2260       push @errors, $error;
2261     } else {
2262       dbh->commit;
2263     }
2264   }
2265   if (@errors) {
2266     return @errors;
2267   }
2268
2269   warn "$me cancelling ". scalar(@pkgs) ." package(s) for customer ".
2270     $self->custnum. "\n"
2271     if $DEBUG;
2272
2273   my @cprs;
2274   if ($opt{'cust_pkg_reason'}) {
2275     @cprs = @{ delete $opt{'cust_pkg_reason'} };
2276   }
2277   my $null_reason;
2278   foreach (@pkgs) {
2279     my %lopt = %opt;
2280     if (@cprs) {
2281       my $cpr = shift @cprs;
2282       if ( $cpr ) {
2283         $lopt{'reason'}        = $cpr->reasonnum;
2284         $lopt{'reason_otaker'} = $cpr->otaker;
2285       } else {
2286         warn "no reason found when canceling package ".$_->pkgnum."\n";
2287         # we're not actually required to pass a reason to cust_pkg::cancel,
2288         # but if we're getting to this point, something has gone awry.
2289         $null_reason ||= FS::reason->new_or_existing(
2290           reason  => 'unknown reason',
2291           type    => 'Cancel Reason',
2292           class   => 'C',
2293         );
2294         $lopt{'reason'} = $null_reason->reasonnum;
2295         $lopt{'reason_otaker'} = $FS::CurrentUser::CurrentUser->username;
2296       }
2297     }
2298     my $error = $_->cancel(%lopt);
2299     if ( $error ) {
2300       dbh->rollback;
2301       push @errors, 'pkgnum '.$_->pkgnum.': '.$error;
2302     } else {
2303       dbh->commit;
2304     }
2305   }
2306
2307   return @errors;
2308 }
2309
2310 sub _banned_pay_hashref {
2311   die 'cust_main->_banned_pay_hashref deprecated';
2312
2313   my $self = shift;
2314
2315   my %payby2ban = (
2316     'CARD' => 'CARD',
2317     'DCRD' => 'CARD',
2318     'CHEK' => 'CHEK',
2319     'DCHK' => 'CHEK'
2320   );
2321
2322   {
2323     'payby'   => $payby2ban{$self->payby},
2324     'payinfo' => $self->payinfo,
2325     #don't ever *search* on reason! #'reason'  =>
2326   };
2327 }
2328
2329 =item notes
2330
2331 Returns all notes (see L<FS::cust_main_note>) for this customer.
2332
2333 =cut
2334
2335 sub notes {
2336   my($self,$orderby_classnum) = (shift,shift);
2337   my $orderby = "sticky DESC, _date DESC";
2338   $orderby = "classnum ASC, $orderby" if $orderby_classnum;
2339   qsearch( 'cust_main_note',
2340            { 'custnum' => $self->custnum },
2341            '',
2342            "ORDER BY $orderby",
2343          );
2344 }
2345
2346 =item agent
2347
2348 Returns the agent (see L<FS::agent>) for this customer.
2349
2350 =item agent_name
2351
2352 Returns the agent name (see L<FS::agent>) for this customer.
2353
2354 =cut
2355
2356 sub agent_name {
2357   my $self = shift;
2358   $self->agent->agent;
2359 }
2360
2361 =item cust_tag
2362
2363 Returns any tags associated with this customer, as FS::cust_tag objects,
2364 or an empty list if there are no tags.
2365
2366 =item part_tag
2367
2368 Returns any tags associated with this customer, as FS::part_tag objects,
2369 or an empty list if there are no tags.
2370
2371 =cut
2372
2373 sub part_tag {
2374   my $self = shift;
2375   map $_->part_tag, $self->cust_tag; 
2376 }
2377
2378
2379 =item cust_class
2380
2381 Returns the customer class, as an FS::cust_class object, or the empty string
2382 if there is no customer class.
2383
2384 =item categoryname 
2385
2386 Returns the customer category name, or the empty string if there is no customer
2387 category.
2388
2389 =cut
2390
2391 sub categoryname {
2392   my $self = shift;
2393   my $cust_class = $self->cust_class;
2394   $cust_class
2395     ? $cust_class->categoryname
2396     : '';
2397 }
2398
2399 =item classname 
2400
2401 Returns the customer class name, or the empty string if there is no customer
2402 class.
2403
2404 =cut
2405
2406 sub classname {
2407   my $self = shift;
2408   my $cust_class = $self->cust_class;
2409   $cust_class
2410     ? $cust_class->classname
2411     : '';
2412 }
2413
2414 =item tax_status
2415
2416 Returns the external tax status, as an FS::tax_status object, or the empty 
2417 string if there is no tax status.
2418
2419 =cut
2420
2421 sub tax_status {
2422   my $self = shift;
2423   if ( $self->taxstatusnum ) {
2424     qsearchs('tax_status', { 'taxstatusnum' => $self->taxstatusnum } );
2425   } else {
2426     return '';
2427   } 
2428 }
2429
2430 =item taxstatus
2431
2432 Returns the tax status code if there is one.
2433
2434 =cut
2435
2436 sub taxstatus {
2437   my $self = shift;
2438   my $tax_status = $self->tax_status;
2439   $tax_status
2440     ? $tax_status->taxstatus
2441     : '';
2442 }
2443
2444 =item BILLING METHODS
2445
2446 Documentation on billing methods has been moved to
2447 L<FS::cust_main::Billing>.
2448
2449 =item REALTIME BILLING METHODS
2450
2451 Documentation on realtime billing methods has been moved to
2452 L<FS::cust_main::Billing_Realtime>.
2453
2454 =item remove_cvv
2455
2456 Removes the I<paycvv> field from the database directly.
2457
2458 If there is an error, returns the error, otherwise returns false.
2459
2460 DEPRECATED.  Use L</remove_cvv_from_cust_payby> instead.
2461
2462 =cut
2463
2464 sub remove_cvv {
2465   die 'cust_main->remove_cvv deprecated';
2466   my $self = shift;
2467   my $sth = dbh->prepare("UPDATE cust_main SET paycvv = '' WHERE custnum = ?")
2468     or return dbh->errstr;
2469   $sth->execute($self->custnum)
2470     or return $sth->errstr;
2471   $self->paycvv('');
2472   '';
2473 }
2474
2475 =item total_owed
2476
2477 Returns the total owed for this customer on all invoices
2478 (see L<FS::cust_bill/owed>).
2479
2480 =cut
2481
2482 sub total_owed {
2483   my $self = shift;
2484   $self->total_owed_date(2145859200); #12/31/2037
2485 }
2486
2487 =item total_owed_date TIME
2488
2489 Returns the total owed for this customer on all invoices with date earlier than
2490 TIME.  TIME is specified as a UNIX timestamp; see L<perlfunc/"time">).  Also
2491 see L<Time::Local> and L<Date::Parse> for conversion functions.
2492
2493 =cut
2494
2495 sub total_owed_date {
2496   my $self = shift;
2497   my $time = shift;
2498
2499   my $custnum = $self->custnum;
2500
2501   my $owed_sql = FS::cust_bill->owed_sql;
2502
2503   my $sql = "
2504     SELECT SUM($owed_sql) FROM cust_bill
2505       WHERE custnum = $custnum
2506         AND _date <= $time
2507   ";
2508
2509   sprintf( "%.2f", $self->scalar_sql($sql) || 0 );
2510
2511 }
2512
2513 =item total_owed_pkgnum PKGNUM
2514
2515 Returns the total owed on all invoices for this customer's specific package
2516 when using experimental package balances (see L<FS::cust_bill/owed_pkgnum>).
2517
2518 =cut
2519
2520 sub total_owed_pkgnum {
2521   my( $self, $pkgnum ) = @_;
2522   $self->total_owed_date_pkgnum(2145859200, $pkgnum); #12/31/2037
2523 }
2524
2525 =item total_owed_date_pkgnum TIME PKGNUM
2526
2527 Returns the total owed for this customer's specific package when using
2528 experimental package balances on all invoices with date earlier than
2529 TIME.  TIME is specified as a UNIX timestamp; see L<perlfunc/"time">).  Also
2530 see L<Time::Local> and L<Date::Parse> for conversion functions.
2531
2532 =cut
2533
2534 sub total_owed_date_pkgnum {
2535   my( $self, $time, $pkgnum ) = @_;
2536
2537   my $total_bill = 0;
2538   foreach my $cust_bill (
2539     grep { $_->_date <= $time }
2540       qsearch('cust_bill', { 'custnum' => $self->custnum, } )
2541   ) {
2542     $total_bill += $cust_bill->owed_pkgnum($pkgnum);
2543   }
2544   sprintf( "%.2f", $total_bill );
2545
2546 }
2547
2548 =item total_paid
2549
2550 Returns the total amount of all payments.
2551
2552 =cut
2553
2554 sub total_paid {
2555   my $self = shift;
2556   my $total = 0;
2557   $total += $_->paid foreach $self->cust_pay;
2558   sprintf( "%.2f", $total );
2559 }
2560
2561 =item total_unapplied_credits
2562
2563 Returns the total outstanding credit (see L<FS::cust_credit>) for this
2564 customer.  See L<FS::cust_credit/credited>.
2565
2566 =item total_credited
2567
2568 Old name for total_unapplied_credits.  Don't use.
2569
2570 =cut
2571
2572 sub total_credited {
2573   #carp "total_credited deprecated, use total_unapplied_credits";
2574   shift->total_unapplied_credits(@_);
2575 }
2576
2577 sub total_unapplied_credits {
2578   my $self = shift;
2579
2580   my $custnum = $self->custnum;
2581
2582   my $unapplied_sql = FS::cust_credit->unapplied_sql;
2583
2584   my $sql = "
2585     SELECT SUM($unapplied_sql) FROM cust_credit
2586       WHERE custnum = $custnum
2587   ";
2588
2589   sprintf( "%.2f", $self->scalar_sql($sql) || 0 );
2590
2591 }
2592
2593 =item total_unapplied_credits_pkgnum PKGNUM
2594
2595 Returns the total outstanding credit (see L<FS::cust_credit>) for this
2596 customer.  See L<FS::cust_credit/credited>.
2597
2598 =cut
2599
2600 sub total_unapplied_credits_pkgnum {
2601   my( $self, $pkgnum ) = @_;
2602   my $total_credit = 0;
2603   $total_credit += $_->credited foreach $self->cust_credit_pkgnum($pkgnum);
2604   sprintf( "%.2f", $total_credit );
2605 }
2606
2607
2608 =item total_unapplied_payments
2609
2610 Returns the total unapplied payments (see L<FS::cust_pay>) for this customer.
2611 See L<FS::cust_pay/unapplied>.
2612
2613 =cut
2614
2615 sub total_unapplied_payments {
2616   my $self = shift;
2617
2618   my $custnum = $self->custnum;
2619
2620   my $unapplied_sql = FS::cust_pay->unapplied_sql;
2621
2622   my $sql = "
2623     SELECT SUM($unapplied_sql) FROM cust_pay
2624       WHERE custnum = $custnum
2625   ";
2626
2627   sprintf( "%.2f", $self->scalar_sql($sql) || 0 );
2628
2629 }
2630
2631 =item total_unapplied_payments_pkgnum PKGNUM
2632
2633 Returns the total unapplied payments (see L<FS::cust_pay>) for this customer's
2634 specific package when using experimental package balances.  See
2635 L<FS::cust_pay/unapplied>.
2636
2637 =cut
2638
2639 sub total_unapplied_payments_pkgnum {
2640   my( $self, $pkgnum ) = @_;
2641   my $total_unapplied = 0;
2642   $total_unapplied += $_->unapplied foreach $self->cust_pay_pkgnum($pkgnum);
2643   sprintf( "%.2f", $total_unapplied );
2644 }
2645
2646
2647 =item total_unapplied_refunds
2648
2649 Returns the total unrefunded refunds (see L<FS::cust_refund>) for this
2650 customer.  See L<FS::cust_refund/unapplied>.
2651
2652 =cut
2653
2654 sub total_unapplied_refunds {
2655   my $self = shift;
2656   my $custnum = $self->custnum;
2657
2658   my $unapplied_sql = FS::cust_refund->unapplied_sql;
2659
2660   my $sql = "
2661     SELECT SUM($unapplied_sql) FROM cust_refund
2662       WHERE custnum = $custnum
2663   ";
2664
2665   sprintf( "%.2f", $self->scalar_sql($sql) || 0 );
2666
2667 }
2668
2669 =item balance
2670
2671 Returns the balance for this customer (total_owed plus total_unrefunded, minus
2672 total_unapplied_credits minus total_unapplied_payments).
2673
2674 =cut
2675
2676 sub balance {
2677   my $self = shift;
2678   $self->balance_date_range;
2679 }
2680
2681 =item balance_date TIME
2682
2683 Returns the balance for this customer, only considering invoices with date
2684 earlier than TIME (total_owed_date minus total_credited minus
2685 total_unapplied_payments).  TIME is specified as a UNIX timestamp; see
2686 L<perlfunc/"time">).  Also see L<Time::Local> and L<Date::Parse> for conversion
2687 functions.
2688
2689 =cut
2690
2691 sub balance_date {
2692   my $self = shift;
2693   $self->balance_date_range(shift);
2694 }
2695
2696 =item balance_date_range [ START_TIME [ END_TIME [ OPTION => VALUE ... ] ] ]
2697
2698 Returns the balance for this customer, optionally considering invoices with
2699 date earlier than START_TIME, and not later than END_TIME
2700 (total_owed_date minus total_unapplied_credits minus total_unapplied_payments).
2701
2702 Times are specified as SQL fragments or numeric
2703 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
2704 L<Date::Parse> for conversion functions.  The empty string can be passed
2705 to disable that time constraint completely.
2706
2707 Accepts the same options as L<balance_date_sql>:
2708
2709 =over 4
2710
2711 =item unapplied_date
2712
2713 set to true to disregard unapplied credits, payments and refunds outside the specified time period - by default the time period restriction only applies to invoices (useful for reporting, probably a bad idea for event triggering)
2714
2715 =item cutoff
2716
2717 An absolute cutoff time.  Payments, credits, and refunds I<applied> after this 
2718 time will be ignored.  Note that START_TIME and END_TIME only limit the date 
2719 range for invoices and I<unapplied> payments, credits, and refunds.
2720
2721 =back
2722
2723 =cut
2724
2725 sub balance_date_range {
2726   my $self = shift;
2727   my $sql = 'SELECT SUM('. $self->balance_date_sql(@_).
2728             ') FROM cust_main WHERE custnum='. $self->custnum;
2729   sprintf( '%.2f', $self->scalar_sql($sql) || 0 );
2730 }
2731
2732 =item balance_pkgnum PKGNUM
2733
2734 Returns the balance for this customer's specific package when using
2735 experimental package balances (total_owed plus total_unrefunded, minus
2736 total_unapplied_credits minus total_unapplied_payments)
2737
2738 =cut
2739
2740 sub balance_pkgnum {
2741   my( $self, $pkgnum ) = @_;
2742
2743   sprintf( "%.2f",
2744       $self->total_owed_pkgnum($pkgnum)
2745 # n/a - refunds aren't part of pkg-balances since they don't apply to invoices
2746 #    + $self->total_unapplied_refunds_pkgnum($pkgnum)
2747     - $self->total_unapplied_credits_pkgnum($pkgnum)
2748     - $self->total_unapplied_payments_pkgnum($pkgnum)
2749   );
2750 }
2751
2752 =item payment_info
2753
2754 Returns a hash of useful information for making a payment.
2755
2756 =over 4
2757
2758 =item balance
2759
2760 Current balance.
2761
2762 =item payby
2763
2764 'CARD' (credit card - automatic), 'DCRD' (credit card - on-demand),
2765 'CHEK' (electronic check - automatic), 'DCHK' (electronic check - on-demand),
2766 'LECB' (Phone bill billing), 'BILL' (billing), or 'COMP' (free).
2767
2768 =back
2769
2770 For credit card transactions:
2771
2772 =over 4
2773
2774 =item card_type 1
2775
2776 =item payname
2777
2778 Exact name on card
2779
2780 =back
2781
2782 For electronic check transactions:
2783
2784 =over 4
2785
2786 =item stateid_state
2787
2788 =back
2789
2790 =cut
2791
2792 #XXX i need to be updated for 4.x+
2793 sub payment_info {
2794   my $self = shift;
2795
2796   my %return = ();
2797
2798   $return{balance} = $self->balance;
2799
2800   $return{payname} = $self->payname
2801                      || ( $self->first. ' '. $self->get('last') );
2802
2803   $return{$_} = $self->bill_location->$_
2804     for qw(address1 address2 city state zip);
2805
2806   $return{payby} = $self->payby;
2807   $return{stateid_state} = $self->stateid_state;
2808
2809   if ( $self->payby =~ /^(CARD|DCRD)$/ ) {
2810     $return{card_type} = cardtype($self->payinfo);
2811     $return{payinfo} = $self->paymask;
2812
2813     @return{'month', 'year'} = $self->paydate_monthyear;
2814
2815   }
2816
2817   if ( $self->payby =~ /^(CHEK|DCHK)$/ ) {
2818     my ($payinfo1, $payinfo2) = split '@', $self->paymask;
2819     $return{payinfo1} = $payinfo1;
2820     $return{payinfo2} = $payinfo2;
2821     $return{paytype}  = $self->paytype;
2822     $return{paystate} = $self->paystate;
2823
2824   }
2825
2826   #doubleclick protection
2827   my $_date = time;
2828   $return{paybatch} = "webui-MyAccount-$_date-$$-". rand() * 2**32;
2829
2830   %return;
2831
2832 }
2833
2834 =item paydate_epoch
2835
2836 Returns the next payment expiration date for this customer. If they have no
2837 payment methods that will expire, returns 0.
2838
2839 =cut
2840
2841 sub paydate_epoch {
2842   my $self = shift;
2843   # filter out the ones that individually return 0, but then return 0 if
2844   # there are no results
2845   my @epochs = grep { $_ > 0 } map { $_->paydate_epoch } $self->cust_payby;
2846   min( @epochs ) || 0;
2847 }
2848
2849 =item paydate_epoch_sql
2850
2851 Returns an SQL expression to get the next payment expiration date for a
2852 customer. Returns 2143260000 (2037-12-01) if there are no payment expiration
2853 dates, so that it's safe to test for "will it expire before date X" for any
2854 date up to then.
2855
2856 =cut
2857
2858 sub paydate_epoch_sql {
2859   my $class = shift;
2860   my $paydate = FS::cust_payby->paydate_epoch_sql;
2861   "(SELECT COALESCE(MIN($paydate), 2143260000) FROM cust_payby WHERE cust_payby.custnum = cust_main.custnum)";
2862 }
2863
2864 sub tax_exemption {
2865   my( $self, $taxname ) = @_;
2866
2867   qsearchs( 'cust_main_exemption', { 'custnum' => $self->custnum,
2868                                      'taxname' => $taxname,
2869                                    },
2870           );
2871 }
2872
2873 =item cust_main_exemption
2874
2875 =item invoicing_list
2876
2877 Returns a list of email addresses (with svcnum entries expanded), and the word
2878 'POST' if the customer receives postal invoices.
2879
2880 =cut
2881
2882 sub invoicing_list {
2883   my( $self, $arrayref ) = @_;
2884
2885   if ( $arrayref ) {
2886     warn "FS::cust_main::invoicing_list(ARRAY) is no longer supported.";
2887   }
2888   
2889   my @emails = $self->invoicing_list_emailonly;
2890   push @emails, 'POST' if $self->get('postal_invoice');
2891
2892   @emails;
2893 }
2894
2895 =item check_invoicing_list ARRAYREF
2896
2897 Checks these arguements as valid input for the invoicing_list method.  If there
2898 is an error, returns the error, otherwise returns false.
2899
2900 =cut
2901
2902 sub check_invoicing_list {
2903   my( $self, $arrayref ) = @_;
2904
2905   foreach my $address ( @$arrayref ) {
2906
2907     if ($address eq 'FAX' and $self->getfield('fax') eq '') {
2908       return 'Can\'t add FAX invoice destination with a blank FAX number.';
2909     }
2910
2911     my $cust_main_invoice = new FS::cust_main_invoice ( {
2912       'custnum' => $self->custnum,
2913       'dest'    => $address,
2914     } );
2915     my $error = $self->custnum
2916                 ? $cust_main_invoice->check
2917                 : $cust_main_invoice->checkdest
2918     ;
2919     return $error if $error;
2920
2921   }
2922
2923   return "Email address required"
2924     if $conf->exists('cust_main-require_invoicing_list_email', $self->agentnum)
2925     && ! grep { $_ !~ /^([A-Z]+)$/ } @$arrayref;
2926
2927   '';
2928 }
2929
2930 =item all_emails
2931
2932 Returns the email addresses of all accounts provisioned for this customer.
2933
2934 =cut
2935
2936 sub all_emails {
2937   my $self = shift;
2938   my %list;
2939   foreach my $cust_pkg ( $self->all_pkgs ) {
2940     my @cust_svc = qsearch('cust_svc', { 'pkgnum' => $cust_pkg->pkgnum } );
2941     my @svc_acct =
2942       map { qsearchs('svc_acct', { 'svcnum' => $_->svcnum } ) }
2943         grep { qsearchs('svc_acct', { 'svcnum' => $_->svcnum } ) }
2944           @cust_svc;
2945     $list{$_}=1 foreach map { $_->email } @svc_acct;
2946   }
2947   keys %list;
2948 }
2949
2950 =item invoicing_list_addpost
2951
2952 Adds postal invoicing to this customer.  If this customer is already configured
2953 to receive postal invoices, does nothing.
2954
2955 =cut
2956
2957 sub invoicing_list_addpost {
2958   my $self = shift;
2959   if ( $self->get('postal_invoice') eq '' ) {
2960     $self->set('postal_invoice', 'Y');
2961     my $error = $self->replace;
2962     warn $error if $error; # should fail harder, but this is traditional
2963   }
2964 }
2965
2966 =item invoicing_list_emailonly
2967
2968 Returns the list of email invoice recipients (invoicing_list without non-email
2969 destinations such as POST and FAX).
2970
2971 =cut
2972
2973 sub invoicing_list_emailonly {
2974   my $self = shift;
2975   warn "$me invoicing_list_emailonly called"
2976     if $DEBUG;
2977   return () if !$self->custnum; # not yet inserted
2978   return map { $_->emailaddress }
2979     qsearch({
2980         table     => 'cust_contact',
2981         select    => 'emailaddress',
2982         addl_from => ' JOIN contact USING (contactnum) '.
2983                      ' JOIN contact_email USING (contactnum)',
2984         hashref   => { 'custnum' => $self->custnum, },
2985         extra_sql => q( AND cust_contact.invoice_dest = 'Y'),
2986     });
2987 }
2988
2989 =item invoicing_list_emailonly_scalar
2990
2991 Returns the list of email invoice recipients (invoicing_list without non-email
2992 destinations such as POST and FAX) as a comma-separated scalar.
2993
2994 =cut
2995
2996 sub invoicing_list_emailonly_scalar {
2997   my $self = shift;
2998   warn "$me invoicing_list_emailonly_scalar called"
2999     if $DEBUG;
3000   join(', ', $self->invoicing_list_emailonly);
3001 }
3002
3003 =item contact_list [ CLASSNUM, ... ]
3004
3005 Returns a list of contacts (L<FS::contact> objects) for the customer. If
3006 a list of contact classnums is given, returns only contacts in those
3007 classes. If the pseudo-classnum 'invoice' is given, returns contacts that
3008 are marked as invoice destinations. If '0' is given, also returns contacts
3009 with no class.
3010
3011 If no arguments are given, returns all contacts for the customer.
3012
3013 =cut
3014
3015 sub contact_list {
3016   my $self = shift;
3017   my $search = {
3018     table       => 'contact',
3019     select      => 'contact.*, cust_contact.invoice_dest',
3020     addl_from   => ' JOIN cust_contact USING (contactnum)',
3021     extra_sql   => ' WHERE cust_contact.custnum = '.$self->custnum,
3022   };
3023
3024   my @orwhere;
3025   my @classnums;
3026   foreach (@_) {
3027     if ( $_ eq 'invoice' ) {
3028       push @orwhere, 'cust_contact.invoice_dest = \'Y\'';
3029     } elsif ( $_ eq '0' ) {
3030       push @orwhere, 'cust_contact.classnum is null';
3031     } elsif ( /^\d+$/ ) {
3032       push @classnums, $_;
3033     } else {
3034       die "bad classnum argument '$_'";
3035     }
3036   }
3037
3038   if (@classnums) {
3039     push @orwhere, 'cust_contact.classnum IN ('.join(',', @classnums).')';
3040   }
3041   if (@orwhere) {
3042     $search->{extra_sql} .= ' AND (' .
3043                             join(' OR ', map "( $_ )", @orwhere) .
3044                             ')';
3045   }
3046
3047   qsearch($search);
3048 }
3049
3050 =item contact_list_email [ CLASSNUM, ... ]
3051
3052 Same as L</contact_list>, but returns email destinations instead of contact
3053 objects.
3054
3055 =cut
3056
3057 sub contact_list_email {
3058   my $self = shift;
3059   my @contacts = $self->contact_list(@_);
3060   my @emails;
3061   foreach my $contact (@contacts) {
3062     foreach my $contact_email ($contact->contact_email) {
3063       push @emails,
3064         $contact->firstlast . ' <' . $contact_email->emailaddress . '>';
3065     }
3066   }
3067   @emails;
3068 }
3069
3070 =item referral_custnum_cust_main
3071
3072 Returns the customer who referred this customer (or the empty string, if
3073 this customer was not referred).
3074
3075 Note the difference with referral_cust_main method: This method,
3076 referral_custnum_cust_main returns the single customer (if any) who referred
3077 this customer, while referral_cust_main returns an array of customers referred
3078 BY this customer.
3079
3080 =cut
3081
3082 sub referral_custnum_cust_main {
3083   my $self = shift;
3084   return '' unless $self->referral_custnum;
3085   qsearchs('cust_main', { 'custnum' => $self->referral_custnum } );
3086 }
3087
3088 =item referral_cust_main [ DEPTH [ EXCLUDE_HASHREF ] ]
3089
3090 Returns an array of customers referred by this customer (referral_custnum set
3091 to this custnum).  If DEPTH is given, recurses up to the given depth, returning
3092 customers referred by customers referred by this customer and so on, inclusive.
3093 The default behavior is DEPTH 1 (no recursion).
3094
3095 Note the difference with referral_custnum_cust_main method: This method,
3096 referral_cust_main, returns an array of customers referred BY this customer,
3097 while referral_custnum_cust_main returns the single customer (if any) who
3098 referred this customer.
3099
3100 =cut
3101
3102 sub referral_cust_main {
3103   my $self = shift;
3104   my $depth = @_ ? shift : 1;
3105   my $exclude = @_ ? shift : {};
3106
3107   my @cust_main =
3108     map { $exclude->{$_->custnum}++; $_; }
3109       grep { ! $exclude->{ $_->custnum } }
3110         qsearch( 'cust_main', { 'referral_custnum' => $self->custnum } );
3111
3112   if ( $depth > 1 ) {
3113     push @cust_main,
3114       map { $_->referral_cust_main($depth-1, $exclude) }
3115         @cust_main;
3116   }
3117
3118   @cust_main;
3119 }
3120
3121 =item referral_cust_main_ncancelled
3122
3123 Same as referral_cust_main, except only returns customers with uncancelled
3124 packages.
3125
3126 =cut
3127
3128 sub referral_cust_main_ncancelled {
3129   my $self = shift;
3130   grep { scalar($_->ncancelled_pkgs) } $self->referral_cust_main;
3131 }
3132
3133 =item referral_cust_pkg [ DEPTH ]
3134
3135 Like referral_cust_main, except returns a flat list of all unsuspended (and
3136 uncancelled) packages for each customer.  The number of items in this list may
3137 be useful for commission calculations (perhaps after a C<grep { my $pkgpart = $_->pkgpart; grep { $_ == $pkgpart } @commission_worthy_pkgparts> } $cust_main-> ).
3138
3139 =cut
3140
3141 sub referral_cust_pkg {
3142   my $self = shift;
3143   my $depth = @_ ? shift : 1;
3144
3145   map { $_->unsuspended_pkgs }
3146     grep { $_->unsuspended_pkgs }
3147       $self->referral_cust_main($depth);
3148 }
3149
3150 =item referring_cust_main
3151
3152 Returns the single cust_main record for the customer who referred this customer
3153 (referral_custnum), or false.
3154
3155 =cut
3156
3157 sub referring_cust_main {
3158   my $self = shift;
3159   return '' unless $self->referral_custnum;
3160   qsearchs('cust_main', { 'custnum' => $self->referral_custnum } );
3161 }
3162
3163 =item credit AMOUNT, REASON [ , OPTION => VALUE ... ]
3164
3165 Applies a credit to this customer.  If there is an error, returns the error,
3166 otherwise returns false.
3167
3168 REASON can be a text string, an FS::reason object, or a scalar reference to
3169 a reasonnum.  If a text string, it will be automatically inserted as a new
3170 reason, and a 'reason_type' option must be passed to indicate the
3171 FS::reason_type for the new reason.
3172
3173 An I<addlinfo> option may be passed to set the credit's I<addlinfo> field.
3174 Likewise for I<eventnum>, I<commission_agentnum>, I<commission_salesnum> and
3175 I<commission_pkgnum>.
3176
3177 Any other options are passed to FS::cust_credit::insert.
3178
3179 =cut
3180
3181 sub credit {
3182   my( $self, $amount, $reason, %options ) = @_;
3183
3184   my $cust_credit = new FS::cust_credit {
3185     'custnum' => $self->custnum,
3186     'amount'  => $amount,
3187   };
3188
3189   if ( ref($reason) ) {
3190
3191     if ( ref($reason) eq 'SCALAR' ) {
3192       $cust_credit->reasonnum( $$reason );
3193     } else {
3194       $cust_credit->reasonnum( $reason->reasonnum );
3195     }
3196
3197   } else {
3198     $cust_credit->set('reason', $reason)
3199   }
3200
3201   $cust_credit->$_( delete $options{$_} )
3202     foreach grep exists($options{$_}),
3203               qw( addlinfo eventnum ),
3204               map "commission_$_", qw( agentnum salesnum pkgnum );
3205
3206   $cust_credit->insert(%options);
3207
3208 }
3209
3210 =item charge HASHREF || AMOUNT [ PKG [ COMMENT [ TAXCLASS ] ] ]
3211
3212 Creates a one-time charge for this customer.  If there is an error, returns
3213 the error, otherwise returns false.
3214
3215 New-style, with a hashref of options:
3216
3217   my $error = $cust_main->charge(
3218                                   {
3219                                     'amount'     => 54.32,
3220                                     'quantity'   => 1,
3221                                     'start_date' => str2time('7/4/2009'),
3222                                     'pkg'        => 'Description',
3223                                     'comment'    => 'Comment',
3224                                     'additional' => [], #extra invoice detail
3225                                     'classnum'   => 1,  #pkg_class
3226
3227                                     'setuptax'   => '', # or 'Y' for tax exempt
3228
3229                                     'locationnum'=> 1234, # optional
3230
3231                                     #internal taxation
3232                                     'taxclass'   => 'Tax class',
3233
3234                                     #vendor taxation
3235                                     'taxproduct' => 2,  #part_pkg_taxproduct
3236                                     'override'   => {}, #XXX describe
3237
3238                                     #will be filled in with the new object
3239                                     'cust_pkg_ref' => \$cust_pkg,
3240
3241                                     #generate an invoice immediately
3242                                     'bill_now' => 0,
3243                                     'invoice_terms' => '', #with these terms
3244                                   }
3245                                 );
3246
3247 Old-style:
3248
3249   my $error = $cust_main->charge( 54.32, 'Description', 'Comment', 'Tax class' );
3250
3251 =cut
3252
3253 #super false laziness w/quotation::charge
3254 sub charge {
3255   my $self = shift;
3256   my ( $amount, $setup_cost, $quantity, $start_date, $classnum );
3257   my ( $pkg, $comment, $additional );
3258   my ( $setuptax, $taxclass );   #internal taxes
3259   my ( $taxproduct, $override ); #vendor (CCH) taxes
3260   my $no_auto = '';
3261   my $separate_bill = '';
3262   my $cust_pkg_ref = '';
3263   my ( $bill_now, $invoice_terms ) = ( 0, '' );
3264   my $locationnum;
3265   if ( ref( $_[0] ) ) {
3266     $amount     = $_[0]->{amount};
3267     $setup_cost = $_[0]->{setup_cost};
3268     $quantity   = exists($_[0]->{quantity}) ? $_[0]->{quantity} : 1;
3269     $start_date = exists($_[0]->{start_date}) ? $_[0]->{start_date} : '';
3270     $no_auto    = exists($_[0]->{no_auto}) ? $_[0]->{no_auto} : '';
3271     $pkg        = exists($_[0]->{pkg}) ? $_[0]->{pkg} : 'One-time charge';
3272     $comment    = exists($_[0]->{comment}) ? $_[0]->{comment}
3273                                            : '$'. sprintf("%.2f",$amount);
3274     $setuptax   = exists($_[0]->{setuptax}) ? $_[0]->{setuptax} : '';
3275     $taxclass   = exists($_[0]->{taxclass}) ? $_[0]->{taxclass} : '';
3276     $classnum   = exists($_[0]->{classnum}) ? $_[0]->{classnum} : '';
3277     $additional = $_[0]->{additional} || [];
3278     $taxproduct = $_[0]->{taxproductnum};
3279     $override   = { '' => $_[0]->{tax_override} };
3280     $cust_pkg_ref = exists($_[0]->{cust_pkg_ref}) ? $_[0]->{cust_pkg_ref} : '';
3281     $bill_now = exists($_[0]->{bill_now}) ? $_[0]->{bill_now} : '';
3282     $invoice_terms = exists($_[0]->{invoice_terms}) ? $_[0]->{invoice_terms} : '';
3283     $locationnum = $_[0]->{locationnum} || $self->ship_locationnum;
3284     $separate_bill = $_[0]->{separate_bill} || '';
3285   } else { # yuck
3286     $amount     = shift;
3287     $setup_cost = '';
3288     $quantity   = 1;
3289     $start_date = '';
3290     $pkg        = @_ ? shift : 'One-time charge';
3291     $comment    = @_ ? shift : '$'. sprintf("%.2f",$amount);
3292     $setuptax   = '';
3293     $taxclass   = @_ ? shift : '';
3294     $additional = [];
3295   }
3296
3297   local $SIG{HUP} = 'IGNORE';
3298   local $SIG{INT} = 'IGNORE';
3299   local $SIG{QUIT} = 'IGNORE';
3300   local $SIG{TERM} = 'IGNORE';
3301   local $SIG{TSTP} = 'IGNORE';
3302   local $SIG{PIPE} = 'IGNORE';
3303
3304   my $oldAutoCommit = $FS::UID::AutoCommit;
3305   local $FS::UID::AutoCommit = 0;
3306   my $dbh = dbh;
3307
3308   my $part_pkg = new FS::part_pkg ( {
3309     'pkg'           => $pkg,
3310     'comment'       => $comment,
3311     'plan'          => 'flat',
3312     'freq'          => 0,
3313     'disabled'      => 'Y',
3314     'classnum'      => ( $classnum ? $classnum : '' ),
3315     'setuptax'      => $setuptax,
3316     'taxclass'      => $taxclass,
3317     'taxproductnum' => $taxproduct,
3318     'setup_cost'    => $setup_cost,
3319   } );
3320
3321   my %options = ( ( map { ("additional_info$_" => $additional->[$_] ) }
3322                         ( 0 .. @$additional - 1 )
3323                   ),
3324                   'additional_count' => scalar(@$additional),
3325                   'setup_fee' => $amount,
3326                 );
3327
3328   my $error = $part_pkg->insert( options       => \%options,
3329                                  tax_overrides => $override,
3330                                );
3331   if ( $error ) {
3332     $dbh->rollback if $oldAutoCommit;
3333     return $error;
3334   }
3335
3336   my $pkgpart = $part_pkg->pkgpart;
3337   my %type_pkgs = ( 'typenum' => $self->agent->typenum, 'pkgpart' => $pkgpart );
3338   unless ( qsearchs('type_pkgs', \%type_pkgs ) ) {
3339     my $type_pkgs = new FS::type_pkgs \%type_pkgs;
3340     $error = $type_pkgs->insert;
3341     if ( $error ) {
3342       $dbh->rollback if $oldAutoCommit;
3343       return $error;
3344     }
3345   }
3346
3347   my $cust_pkg = new FS::cust_pkg ( {
3348     'custnum'    => $self->custnum,
3349     'pkgpart'    => $pkgpart,
3350     'quantity'   => $quantity,
3351     'start_date' => $start_date,
3352     'no_auto'    => $no_auto,
3353     'separate_bill' => $separate_bill,
3354     'locationnum'=> $locationnum,
3355   } );
3356
3357   $error = $cust_pkg->insert;
3358   if ( $error ) {
3359     $dbh->rollback if $oldAutoCommit;
3360     return $error;
3361   } elsif ( $cust_pkg_ref ) {
3362     ${$cust_pkg_ref} = $cust_pkg;
3363   }
3364
3365   if ( $bill_now ) {
3366     my $error = $self->bill( 'invoice_terms' => $invoice_terms,
3367                              'pkg_list'      => [ $cust_pkg ],
3368                            );
3369     if ( $error ) {
3370       $dbh->rollback if $oldAutoCommit;
3371       return $error;
3372     }   
3373   }
3374
3375   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
3376   return '';
3377
3378 }
3379
3380 #=item charge_postal_fee
3381 #
3382 #Applies a one time charge this customer.  If there is an error,
3383 #returns the error, returns the cust_pkg charge object or false
3384 #if there was no charge.
3385 #
3386 #=cut
3387 #
3388 # This should be a customer event.  For that to work requires that bill
3389 # also be a customer event.
3390
3391 sub charge_postal_fee {
3392   my $self = shift;
3393
3394   my $pkgpart = $conf->config('postal_invoice-fee_pkgpart', $self->agentnum);
3395   return '' unless ($pkgpart && grep { $_ eq 'POST' } $self->invoicing_list);
3396
3397   my $cust_pkg = new FS::cust_pkg ( {
3398     'custnum'  => $self->custnum,
3399     'pkgpart'  => $pkgpart,
3400     'quantity' => 1,
3401   } );
3402
3403   my $error = $cust_pkg->insert;
3404   $error ? $error : $cust_pkg;
3405 }
3406
3407 =item num_cust_attachment_deleted
3408
3409 Returns the number of deleted attachments for this customer (see
3410 L<FS::num_cust_attachment>).
3411
3412 =cut
3413
3414 sub num_cust_attachments_deleted {
3415   my $self = shift;
3416   $self->scalar_sql(
3417     " SELECT COUNT(*) FROM cust_attachment ".
3418       " WHERE custnum = ? AND disabled IS NOT NULL AND disabled > 0",
3419     $self->custnum
3420   );
3421 }
3422
3423 =item cust_bill [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
3424
3425 Returns all the invoices (see L<FS::cust_bill>) for this customer.
3426
3427 Optionally, a list or hashref of additional arguments to the qsearch call can
3428 be passed.
3429
3430 =cut
3431
3432 sub cust_bill {
3433   my $self = shift;
3434   my $opt = ref($_[0]) ? shift : { @_ };
3435
3436   #return $self->num_cust_bill unless wantarray || keys %$opt;
3437
3438   $opt->{'table'} = 'cust_bill';
3439   $opt->{'hashref'} ||= {}; #i guess it would autovivify anyway...
3440   $opt->{'hashref'}{'custnum'} = $self->custnum;
3441   $opt->{'order_by'} ||= 'ORDER BY _date ASC';
3442
3443   map { $_ } #behavior of sort undefined in scalar context
3444     sort { $a->_date <=> $b->_date }
3445       qsearch($opt);
3446 }
3447
3448 =item open_cust_bill
3449
3450 Returns all the open (owed > 0) invoices (see L<FS::cust_bill>) for this
3451 customer.
3452
3453 =cut
3454
3455 sub open_cust_bill {
3456   my $self = shift;
3457
3458   $self->cust_bill(
3459     'extra_sql' => ' AND '. FS::cust_bill->owed_sql. ' > 0',
3460     #@_
3461   );
3462
3463 }
3464
3465 =item legacy_cust_bill [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
3466
3467 Returns all the legacy invoices (see L<FS::legacy_cust_bill>) for this customer.
3468
3469 =cut
3470
3471 sub legacy_cust_bill {
3472   my $self = shift;
3473
3474   #return $self->num_legacy_cust_bill unless wantarray;
3475
3476   map { $_ } #behavior of sort undefined in scalar context
3477     sort { $a->_date <=> $b->_date }
3478       qsearch({ 'table'    => 'legacy_cust_bill',
3479                 'hashref'  => { 'custnum' => $self->custnum, },
3480                 'order_by' => 'ORDER BY _date ASC',
3481              });
3482 }
3483
3484 =item cust_statement [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
3485
3486 Returns all the statements (see L<FS::cust_statement>) for this customer.
3487
3488 Optionally, a list or hashref of additional arguments to the qsearch call can
3489 be passed.
3490
3491 =cut
3492
3493 =item cust_bill_void
3494
3495 Returns all the voided invoices (see L<FS::cust_bill_void>) for this customer.
3496
3497 =cut
3498
3499 sub cust_bill_void {
3500   my $self = shift;
3501
3502   map { $_ } #return $self->num_cust_bill_void unless wantarray;
3503   sort { $a->_date <=> $b->_date }
3504     qsearch( 'cust_bill_void', { 'custnum' => $self->custnum } )
3505 }
3506
3507 sub cust_statement {
3508   my $self = shift;
3509   my $opt = ref($_[0]) ? shift : { @_ };
3510
3511   #return $self->num_cust_statement unless wantarray || keys %$opt;
3512
3513   $opt->{'table'} = 'cust_statement';
3514   $opt->{'hashref'} ||= {}; #i guess it would autovivify anyway...
3515   $opt->{'hashref'}{'custnum'} = $self->custnum;
3516   $opt->{'order_by'} ||= 'ORDER BY _date ASC';
3517
3518   map { $_ } #behavior of sort undefined in scalar context
3519     sort { $a->_date <=> $b->_date }
3520       qsearch($opt);
3521 }
3522
3523 =item svc_x SVCDB [ OPTION => VALUE | EXTRA_QSEARCH_PARAMS_HASHREF ]
3524
3525 Returns all services of type SVCDB (such as 'svc_acct') for this customer.  
3526
3527 Optionally, a list or hashref of additional arguments to the qsearch call can 
3528 be passed following the SVCDB.
3529
3530 =cut
3531
3532 sub svc_x {
3533   my $self = shift;
3534   my $svcdb = shift;
3535   if ( ! $svcdb =~ /^svc_\w+$/ ) {
3536     warn "$me svc_x requires a svcdb";
3537     return;
3538   }
3539   my $opt = ref($_[0]) ? shift : { @_ };
3540
3541   $opt->{'table'} = $svcdb;
3542   $opt->{'addl_from'} = 
3543     'LEFT JOIN cust_svc USING (svcnum) LEFT JOIN cust_pkg USING (pkgnum) '.
3544     ($opt->{'addl_from'} || '');
3545
3546   my $custnum = $self->custnum;
3547   $custnum =~ /^\d+$/ or die "bad custnum '$custnum'";
3548   my $where = "cust_pkg.custnum = $custnum";
3549
3550   my $extra_sql = $opt->{'extra_sql'} || '';
3551   if ( keys %{ $opt->{'hashref'} } ) {
3552     $extra_sql = " AND $where $extra_sql";
3553   }
3554   else {
3555     if ( $opt->{'extra_sql'} =~ /^\s*where\s(.*)/si ) {
3556       $extra_sql = "WHERE $where AND $1";
3557     }
3558     else {
3559       $extra_sql = "WHERE $where $extra_sql";
3560     }
3561   }
3562   $opt->{'extra_sql'} = $extra_sql;
3563
3564   qsearch($opt);
3565 }
3566
3567 # required for use as an eventtable; 
3568 sub svc_acct {
3569   my $self = shift;
3570   $self->svc_x('svc_acct', @_);
3571 }
3572
3573 =item cust_credit
3574
3575 Returns all the credits (see L<FS::cust_credit>) for this customer.
3576
3577 =cut
3578
3579 sub cust_credit {
3580   my $self = shift;
3581
3582   #return $self->num_cust_credit unless wantarray;
3583
3584   map { $_ } #behavior of sort undefined in scalar context
3585     sort { $a->_date <=> $b->_date }
3586       qsearch( 'cust_credit', { 'custnum' => $self->custnum } )
3587 }
3588
3589 =item cust_credit_pkgnum
3590
3591 Returns all the credits (see L<FS::cust_credit>) for this customer's specific
3592 package when using experimental package balances.
3593
3594 =cut
3595
3596 sub cust_credit_pkgnum {
3597   my( $self, $pkgnum ) = @_;
3598   map { $_ } #return $self->num_cust_credit_pkgnum($pkgnum) unless wantarray;
3599   sort { $a->_date <=> $b->_date }
3600     qsearch( 'cust_credit', { 'custnum' => $self->custnum,
3601                               'pkgnum'  => $pkgnum,
3602                             }
3603     );
3604 }
3605
3606 =item cust_credit_void
3607
3608 Returns all voided credits (see L<FS::cust_credit_void>) for this customer.
3609
3610 =cut
3611
3612 sub cust_credit_void {
3613   my $self = shift;
3614   map { $_ }
3615   sort { $a->_date <=> $b->_date }
3616     qsearch( 'cust_credit_void', { 'custnum' => $self->custnum } )
3617 }
3618
3619 =item cust_pay
3620
3621 Returns all the payments (see L<FS::cust_pay>) for this customer.
3622
3623 =cut
3624
3625 sub cust_pay {
3626   my $self = shift;
3627   my $opt = ref($_[0]) ? shift : { @_ };
3628
3629   return $self->num_cust_pay unless wantarray || keys %$opt;
3630
3631   $opt->{'table'} = 'cust_pay';
3632   $opt->{'hashref'}{'custnum'} = $self->custnum;
3633
3634   map { $_ } #behavior of sort undefined in scalar context
3635     sort { $a->_date <=> $b->_date }
3636       qsearch($opt);
3637
3638 }
3639
3640 =item num_cust_pay
3641
3642 Returns the number of payments (see L<FS::cust_pay>) for this customer.  Also
3643 called automatically when the cust_pay method is used in a scalar context.
3644
3645 =cut
3646
3647 sub num_cust_pay {
3648   my $self = shift;
3649   my $sql = "SELECT COUNT(*) FROM cust_pay WHERE custnum = ?";
3650   my $sth = dbh->prepare($sql) or die dbh->errstr;
3651   $sth->execute($self->custnum) or die $sth->errstr;
3652   $sth->fetchrow_arrayref->[0];
3653 }
3654
3655 =item unapplied_cust_pay
3656
3657 Returns all the unapplied payments (see L<FS::cust_pay>) for this customer.
3658
3659 =cut
3660
3661 sub unapplied_cust_pay {
3662   my $self = shift;
3663
3664   $self->cust_pay(
3665     'extra_sql' => ' AND '. FS::cust_pay->unapplied_sql. ' > 0',
3666     #@_
3667   );
3668
3669 }
3670
3671 =item cust_pay_pkgnum
3672
3673 Returns all the payments (see L<FS::cust_pay>) for this customer's specific
3674 package when using experimental package balances.
3675
3676 =cut
3677
3678 sub cust_pay_pkgnum {
3679   my( $self, $pkgnum ) = @_;
3680   map { $_ } #return $self->num_cust_pay_pkgnum($pkgnum) unless wantarray;
3681   sort { $a->_date <=> $b->_date }
3682     qsearch( 'cust_pay', { 'custnum' => $self->custnum,
3683                            'pkgnum'  => $pkgnum,
3684                          }
3685     );
3686 }
3687
3688 =item cust_pay_void
3689
3690 Returns all voided payments (see L<FS::cust_pay_void>) for this customer.
3691
3692 =cut
3693
3694 sub cust_pay_void {
3695   my $self = shift;
3696   map { $_ } #return $self->num_cust_pay_void unless wantarray;
3697   sort { $a->_date <=> $b->_date }
3698     qsearch( 'cust_pay_void', { 'custnum' => $self->custnum } )
3699 }
3700
3701 =item cust_pay_pending
3702
3703 Returns all pending payments (see L<FS::cust_pay_pending>) for this customer
3704 (without status "done").
3705
3706 =cut
3707
3708 sub cust_pay_pending {
3709   my $self = shift;
3710   return $self->num_cust_pay_pending unless wantarray;
3711   sort { $a->_date <=> $b->_date }
3712     qsearch( 'cust_pay_pending', {
3713                                    'custnum' => $self->custnum,
3714                                    'status'  => { op=>'!=', value=>'done' },
3715                                  },
3716            );
3717 }
3718
3719 =item cust_pay_pending_attempt
3720
3721 Returns all payment attempts / declined payments for this customer, as pending
3722 payments objects (see L<FS::cust_pay_pending>), with status "done" but without
3723 a corresponding payment (see L<FS::cust_pay>).
3724
3725 =cut
3726
3727 sub cust_pay_pending_attempt {
3728   my $self = shift;
3729   return $self->num_cust_pay_pending_attempt unless wantarray;
3730   sort { $a->_date <=> $b->_date }
3731     qsearch( 'cust_pay_pending', {
3732                                    'custnum' => $self->custnum,
3733                                    'status'  => 'done',
3734                                    'paynum'  => '',
3735                                  },
3736            );
3737 }
3738
3739 =item num_cust_pay_pending
3740
3741 Returns the number of pending payments (see L<FS::cust_pay_pending>) for this
3742 customer (without status "done").  Also called automatically when the
3743 cust_pay_pending method is used in a scalar context.
3744
3745 =cut
3746
3747 sub num_cust_pay_pending {
3748   my $self = shift;
3749   $self->scalar_sql(
3750     " SELECT COUNT(*) FROM cust_pay_pending ".
3751       " WHERE custnum = ? AND status != 'done' ",
3752     $self->custnum
3753   );
3754 }
3755
3756 =item num_cust_pay_pending_attempt
3757
3758 Returns the number of pending payments (see L<FS::cust_pay_pending>) for this
3759 customer, with status "done" but without a corresp.  Also called automatically when the
3760 cust_pay_pending method is used in a scalar context.
3761
3762 =cut
3763
3764 sub num_cust_pay_pending_attempt {
3765   my $self = shift;
3766   $self->scalar_sql(
3767     " SELECT COUNT(*) FROM cust_pay_pending ".
3768       " WHERE custnum = ? AND status = 'done' AND paynum IS NULL",
3769     $self->custnum
3770   );
3771 }
3772
3773 =item cust_refund
3774
3775 Returns all the refunds (see L<FS::cust_refund>) for this customer.
3776
3777 =cut
3778
3779 sub cust_refund {
3780   my $self = shift;
3781   map { $_ } #return $self->num_cust_refund unless wantarray;
3782   sort { $a->_date <=> $b->_date }
3783     qsearch( 'cust_refund', { 'custnum' => $self->custnum } )
3784 }
3785
3786 =item display_custnum
3787
3788 Returns the displayed customer number for this customer: agent_custid if
3789 cust_main-default_agent_custid is set and it has a value, custnum otherwise.
3790
3791 =cut
3792
3793 sub display_custnum {
3794   my $self = shift;
3795
3796   return $self->agent_custid
3797     if $default_agent_custid && $self->agent_custid;
3798
3799   my $prefix = $conf->config('cust_main-custnum-display_prefix', $self->agentnum) || '';
3800
3801   if ( $prefix ) {
3802     return $prefix . 
3803            sprintf('%0'.($custnum_display_length||8).'d', $self->custnum)
3804   } elsif ( $custnum_display_length ) {
3805     return sprintf('%0'.$custnum_display_length.'d', $self->custnum);
3806   } else {
3807     return $self->custnum;
3808   }
3809 }
3810
3811 =item name
3812
3813 Returns a name string for this customer, either "Company (Last, First)" or
3814 "Last, First".
3815
3816 =cut
3817
3818 sub name {
3819   my $self = shift;
3820   my $name = $self->contact;
3821   $name = $self->company. " ($name)" if $self->company;
3822   $name;
3823 }
3824
3825 =item service_contact
3826
3827 Returns the L<FS::contact> object for this customer that has the 'Service'
3828 contact class, or undef if there is no such contact.  Deprecated; don't use
3829 this in new code.
3830
3831 =cut
3832
3833 sub service_contact {
3834   my $self = shift;
3835   if ( !exists($self->{service_contact}) ) {
3836     my $classnum = $self->scalar_sql(
3837       'SELECT classnum FROM contact_class WHERE classname = \'Service\''
3838     ) || 0; #if it's zero, qsearchs will return nothing
3839     my $cust_contact = qsearchs('cust_contact', { 
3840         'classnum' => $classnum,
3841         'custnum'  => $self->custnum,
3842     });
3843     $self->{service_contact} = $cust_contact->contact if $cust_contact;
3844   }
3845   $self->{service_contact};
3846 }
3847
3848 =item ship_name
3849
3850 Returns a name string for this (service/shipping) contact, either
3851 "Company (Last, First)" or "Last, First".
3852
3853 =cut
3854
3855 sub ship_name {
3856   my $self = shift;
3857
3858   my $name = $self->ship_contact;
3859   $name = $self->company. " ($name)" if $self->company;
3860   $name;
3861 }
3862
3863 =item name_short
3864
3865 Returns a name string for this customer, either "Company" or "First Last".
3866
3867 =cut
3868
3869 sub name_short {
3870   my $self = shift;
3871   $self->company !~ /^\s*$/ ? $self->company : $self->contact_firstlast;
3872 }
3873
3874 =item ship_name_short
3875
3876 Returns a name string for this (service/shipping) contact, either "Company"
3877 or "First Last".
3878
3879 =cut
3880
3881 sub ship_name_short {
3882   my $self = shift;
3883   $self->service_contact 
3884     ? $self->ship_contact_firstlast 
3885     : $self->name_short
3886 }
3887
3888 =item contact
3889
3890 Returns this customer's full (billing) contact name only, "Last, First"
3891
3892 =cut
3893
3894 sub contact {
3895   my $self = shift;
3896   $self->get('last'). ', '. $self->first;
3897 }
3898
3899 =item ship_contact
3900
3901 Returns this customer's full (shipping) contact name only, "Last, First"
3902
3903 =cut
3904
3905 sub ship_contact {
3906   my $self = shift;
3907   my $contact = $self->service_contact || $self;
3908   $contact->get('last') . ', ' . $contact->get('first');
3909 }
3910
3911 =item contact_firstlast
3912
3913 Returns this customers full (billing) contact name only, "First Last".
3914
3915 =cut
3916
3917 sub contact_firstlast {
3918   my $self = shift;
3919   $self->first. ' '. $self->get('last');
3920 }
3921
3922 =item ship_contact_firstlast
3923
3924 Returns this customer's full (shipping) contact name only, "First Last".
3925
3926 =cut
3927
3928 sub ship_contact_firstlast {
3929   my $self = shift;
3930   my $contact = $self->service_contact || $self;
3931   $contact->get('first') . ' '. $contact->get('last');
3932 }
3933
3934 sub bill_country_full {
3935   my $self = shift;
3936   $self->bill_location->country_full;
3937 }
3938
3939 sub ship_country_full {
3940   my $self = shift;
3941   $self->ship_location->country_full;
3942 }
3943
3944 =item county_state_county [ PREFIX ]
3945
3946 Returns a string consisting of just the county, state and country.
3947
3948 =cut
3949
3950 sub county_state_country {
3951   my $self = shift;
3952   my $locationnum;
3953   if ( @_ && $_[0] && $self->has_ship_address ) {
3954     $locationnum = $self->ship_locationnum;
3955   } else {
3956     $locationnum = $self->bill_locationnum;
3957   }
3958   my $cust_location = qsearchs('cust_location', { locationnum=>$locationnum });
3959   $cust_location->county_state_country;
3960 }
3961
3962 =item geocode DATA_VENDOR
3963
3964 Returns a value for the customer location as encoded by DATA_VENDOR.
3965 Currently this only makes sense for "CCH" as DATA_VENDOR.
3966
3967 =cut
3968
3969 =item cust_status
3970
3971 =item status
3972
3973 Returns a status string for this customer, currently:
3974
3975 =over 4
3976
3977 =item prospect
3978
3979 No packages have ever been ordered.  Displayed as "No packages".
3980
3981 =item ordered
3982
3983 Recurring packages all are new (not yet billed).
3984
3985 =item active
3986
3987 One or more recurring packages is active.
3988
3989 =item inactive
3990
3991 No active recurring packages, but otherwise unsuspended/uncancelled (the inactive status is new - previously inactive customers were mis-identified as cancelled).
3992
3993 =item suspended
3994
3995 All non-cancelled recurring packages are suspended.
3996
3997 =item cancelled
3998
3999 All recurring packages are cancelled.
4000
4001 =back
4002
4003 Behavior of inactive vs. cancelled edge cases can be adjusted with the
4004 cust_main-status_module configuration option.
4005
4006 =cut
4007
4008 sub status { shift->cust_status(@_); }
4009
4010 sub cust_status {
4011   my $self = shift;
4012   return $self->hashref->{cust_status} if $self->hashref->{cust_status};
4013   for my $status ( FS::cust_main->statuses() ) {
4014     my $method = $status.'_sql';
4015     my $numnum = ( my $sql = $self->$method() ) =~ s/cust_main\.custnum/?/g;
4016     my $sth = dbh->prepare("SELECT $sql") or die dbh->errstr;
4017     $sth->execute( ($self->custnum) x $numnum )
4018       or die "Error executing 'SELECT $sql': ". $sth->errstr;
4019     if ( $sth->fetchrow_arrayref->[0] ) {
4020       $self->hashref->{cust_status} = $status;
4021       return $status;
4022     }
4023   }
4024 }
4025
4026 =item is_status_delay_cancel
4027
4028 Returns true if customer status is 'suspended'
4029 and all suspended cust_pkg return true for
4030 cust_pkg->is_status_delay_cancel.
4031
4032 This is not a real status, this only meant for hacking display 
4033 values, because otherwise treating the customer as suspended is 
4034 really the whole point of the delay_cancel option.
4035
4036 =cut
4037
4038 sub is_status_delay_cancel {
4039   my ($self) = @_;
4040   return 0 unless $self->status eq 'suspended';
4041   foreach my $cust_pkg ($self->ncancelled_pkgs) {
4042     return 0 unless $cust_pkg->is_status_delay_cancel;
4043   }
4044   return 1;
4045 }
4046
4047 =item ucfirst_cust_status
4048
4049 =item ucfirst_status
4050
4051 Deprecated, use the cust_status_label method instead.
4052
4053 Returns the status with the first character capitalized.
4054
4055 =cut
4056
4057 sub ucfirst_status {
4058   carp "ucfirst_status deprecated, use cust_status_label" unless $ucfirst_nowarn;
4059   local($ucfirst_nowarn) = 1;
4060   shift->ucfirst_cust_status(@_);
4061 }
4062
4063 sub ucfirst_cust_status {
4064   carp "ucfirst_cust_status deprecated, use cust_status_label" unless $ucfirst_nowarn;
4065   my $self = shift;
4066   ucfirst($self->cust_status);
4067 }
4068
4069 =item cust_status_label
4070
4071 =item status_label
4072
4073 Returns the display label for this status.
4074
4075 =cut
4076
4077 sub status_label { shift->cust_status_label(@_); }
4078
4079 sub cust_status_label {
4080   my $self = shift;
4081   __PACKAGE__->statuslabels->{$self->cust_status};
4082 }
4083
4084 =item statuscolor
4085
4086 Returns a hex triplet color string for this customer's status.
4087
4088 =cut
4089
4090 sub statuscolor { shift->cust_statuscolor(@_); }
4091
4092 sub cust_statuscolor {
4093   my $self = shift;
4094   __PACKAGE__->statuscolors->{$self->cust_status};
4095 }
4096
4097 =item tickets [ STATUS ]
4098
4099 Returns an array of hashes representing the customer's RT tickets.
4100
4101 An optional status (or arrayref or hashref of statuses) may be specified.
4102
4103 =cut
4104
4105 sub tickets {
4106   my $self = shift;
4107   my $status = ( @_ && $_[0] ) ? shift : '';
4108
4109   my $num = $conf->config('cust_main-max_tickets') || 10;
4110   my @tickets = ();
4111
4112   if ( $conf->config('ticket_system') ) {
4113     unless ( $conf->config('ticket_system-custom_priority_field') ) {
4114
4115       @tickets = @{ FS::TicketSystem->customer_tickets( $self->custnum,
4116                                                         $num,
4117                                                         undef,
4118                                                         $status,
4119                                                       )
4120                   };
4121
4122     } else {
4123
4124       foreach my $priority (
4125         $conf->config('ticket_system-custom_priority_field-values'), ''
4126       ) {
4127         last if scalar(@tickets) >= $num;
4128         push @tickets, 
4129           @{ FS::TicketSystem->customer_tickets( $self->custnum,
4130                                                  $num - scalar(@tickets),
4131                                                  $priority,
4132                                                  $status,
4133                                                )
4134            };
4135       }
4136     }
4137   }
4138   (@tickets);
4139 }
4140
4141 =item appointments [ STATUS ]
4142
4143 Returns an array of hashes representing the customer's RT tickets which
4144 are appointments.
4145
4146 =cut
4147
4148 sub appointments {
4149   my $self = shift;
4150   my $status = ( @_ && $_[0] ) ? shift : '';
4151
4152   return () unless $conf->config('ticket_system');
4153
4154   my $queueid = $conf->config('ticket_system-appointment-queueid');
4155
4156   @{ FS::TicketSystem->customer_tickets( $self->custnum,
4157                                          99,
4158                                          undef,
4159                                          $status,
4160                                          $queueid,
4161                                        )
4162   };
4163 }
4164
4165 # Return services representing svc_accts in customer support packages
4166 sub support_services {
4167   my $self = shift;
4168   my %packages = map { $_ => 1 } $conf->config('support_packages');
4169
4170   grep { $_->pkg_svc && $_->pkg_svc->primary_svc eq 'Y' }
4171     grep { $_->part_svc->svcdb eq 'svc_acct' }
4172     map { $_->cust_svc }
4173     grep { exists $packages{ $_->pkgpart } }
4174     $self->ncancelled_pkgs;
4175
4176 }
4177
4178 # Return a list of latitude/longitude for one of the services (if any)
4179 sub service_coordinates {
4180   my $self = shift;
4181
4182   my @svc_X = 
4183     grep { $_->latitude && $_->longitude }
4184     map { $_->svc_x }
4185     map { $_->cust_svc }
4186     $self->ncancelled_pkgs;
4187
4188   scalar(@svc_X) ? ( $svc_X[0]->latitude, $svc_X[0]->longitude ) : ()
4189 }
4190
4191 =item masked FIELD
4192
4193 Returns a masked version of the named field
4194
4195 =cut
4196
4197 sub masked {
4198 my ($self,$field) = @_;
4199
4200 # Show last four
4201
4202 'x'x(length($self->getfield($field))-4).
4203   substr($self->getfield($field), (length($self->getfield($field))-4));
4204
4205 }
4206
4207 =item payment_history
4208
4209 Returns an array of hashrefs standardizing information from cust_bill, cust_pay,
4210 cust_credit and cust_refund objects.  Each hashref has the following fields:
4211
4212 I<type> - one of 'Line item', 'Invoice', 'Payment', 'Credit', 'Refund' or 'Previous'
4213
4214 I<date> - value of _date field, unix timestamp
4215
4216 I<date_pretty> - user-friendly date
4217
4218 I<description> - user-friendly description of item
4219
4220 I<amount> - impact of item on user's balance 
4221 (positive for Invoice/Refund/Line item, negative for Payment/Credit.)
4222 Not to be confused with the native 'amount' field in cust_credit, see below.
4223
4224 I<amount_pretty> - includes money char
4225
4226 I<balance> - customer balance, chronologically as of this item
4227
4228 I<balance_pretty> - includes money char
4229
4230 I<charged> - amount charged for cust_bill (Invoice or Line item) records, undef for other types
4231
4232 I<paid> - amount paid for cust_pay records, undef for other types
4233
4234 I<credit> - amount credited for cust_credit records, undef for other types.
4235 Literally the 'amount' field from cust_credit, renamed here to avoid confusion.
4236
4237 I<refund> - amount refunded for cust_refund records, undef for other types
4238
4239 The four table-specific keys always have positive values, whether they reflect charges or payments.
4240
4241 The following options may be passed to this method:
4242
4243 I<line_items> - if true, returns charges ('Line item') rather than invoices
4244
4245 I<start_date> - unix timestamp, only include records on or after.
4246 If specified, an item of type 'Previous' will also be included.
4247 It does not have table-specific fields.
4248
4249 I<end_date> - unix timestamp, only include records before
4250
4251 I<reverse_sort> - order from newest to oldest (default is oldest to newest)
4252
4253 I<conf> - optional already-loaded FS::Conf object.
4254
4255 =cut
4256
4257 # Caution: this gets used by FS::ClientAPI::MyAccount::billing_history,
4258 # and also for sending customer statements, which should both be kept customer-friendly.
4259 # If you add anything that shouldn't be passed on through the API or exposed 
4260 # to customers, add a new option to include it, don't include it by default
4261 sub payment_history {
4262   my $self = shift;
4263   my $opt = ref($_[0]) ? $_[0] : { @_ };
4264
4265   my $conf = $$opt{'conf'} || new FS::Conf;
4266   my $money_char = $conf->config("money_char") || '$',
4267
4268   #first load entire history, 
4269   #need previous to calculate previous balance
4270   #loading after end_date shouldn't hurt too much?
4271   my @history = ();
4272   if ( $$opt{'line_items'} ) {
4273
4274     foreach my $cust_bill ( $self->cust_bill ) {
4275
4276       push @history, {
4277         'type'        => 'Line item',
4278         'description' => $_->desc( $self->locale ).
4279                            ( $_->sdate && $_->edate
4280                                ? ' '. time2str('%d-%b-%Y', $_->sdate).
4281                                  ' To '. time2str('%d-%b-%Y', $_->edate)
4282                                : ''
4283                            ),
4284         'amount'      => sprintf('%.2f', $_->setup + $_->recur ),
4285         'charged'     => sprintf('%.2f', $_->setup + $_->recur ),
4286         'date'        => $cust_bill->_date,
4287         'date_pretty' => $self->time2str_local('short', $cust_bill->_date ),
4288       }
4289         foreach $cust_bill->cust_bill_pkg;
4290
4291     }
4292
4293   } else {
4294
4295     push @history, {
4296                      'type'        => 'Invoice',
4297                      'description' => 'Invoice #'. $_->display_invnum,
4298                      'amount'      => sprintf('%.2f', $_->charged ),
4299                      'charged'     => sprintf('%.2f', $_->charged ),
4300                      'date'        => $_->_date,
4301                      'date_pretty' => $self->time2str_local('short', $_->_date ),
4302                    }
4303       foreach $self->cust_bill;
4304
4305   }
4306
4307   push @history, {
4308                    'type'        => 'Payment',
4309                    'description' => 'Payment', #XXX type
4310                    'amount'      => sprintf('%.2f', 0 - $_->paid ),
4311                    'paid'        => sprintf('%.2f', $_->paid ),
4312                    'date'        => $_->_date,
4313                    'date_pretty' => $self->time2str_local('short', $_->_date ),
4314                  }
4315     foreach $self->cust_pay;
4316
4317   push @history, {
4318                    'type'        => 'Credit',
4319                    'description' => 'Credit', #more info?
4320                    'amount'      => sprintf('%.2f', 0 -$_->amount ),
4321                    'credit'      => sprintf('%.2f', $_->amount ),
4322                    'date'        => $_->_date,
4323                    'date_pretty' => $self->time2str_local('short', $_->_date ),
4324                  }
4325     foreach $self->cust_credit;
4326
4327   push @history, {
4328                    'type'        => 'Refund',
4329                    'description' => 'Refund', #more info?  type, like payment?
4330                    'amount'      => $_->refund,
4331                    'refund'      => $_->refund,
4332                    'date'        => $_->_date,
4333                    'date_pretty' => $self->time2str_local('short', $_->_date ),
4334                  }
4335     foreach $self->cust_refund;
4336
4337   #put it all in chronological order
4338   @history = sort { $a->{'date'} <=> $b->{'date'} } @history;
4339
4340   #calculate balance, filter items outside date range
4341   my $previous = 0;
4342   my $balance = 0;
4343   my @out = ();
4344   foreach my $item (@history) {
4345     last if $$opt{'end_date'} && ($$item{'date'} >= $$opt{'end_date'});
4346     $balance += $$item{'amount'};
4347     if ($$opt{'start_date'} && ($$item{'date'} < $$opt{'start_date'})) {
4348       $previous += $$item{'amount'};
4349       next;
4350     }
4351     $$item{'balance'} = sprintf("%.2f",$balance);
4352     foreach my $key ( qw(amount balance) ) {
4353       $$item{$key.'_pretty'} = money_pretty($$item{$key});
4354     }
4355     push(@out,$item);
4356   }
4357
4358   # start with previous balance, if there was one
4359   if ($previous) {
4360     my $item = {
4361       'type'        => 'Previous',
4362       'description' => 'Previous balance',
4363       'amount'      => sprintf("%.2f",$previous),
4364       'balance'     => sprintf("%.2f",$previous),
4365       'date'        => $$opt{'start_date'},
4366       'date_pretty' => $self->time2str_local('short', $$opt{'start_date'} ),
4367     };
4368     #false laziness with above
4369     foreach my $key ( qw(amount balance) ) {
4370       $$item{$key.'_pretty'} = $$item{$key};
4371       $$item{$key.'_pretty'} =~ s/^(-?)/$1$money_char/;
4372     }
4373     unshift(@out,$item);
4374   }
4375
4376   @out = reverse @history if $$opt{'reverse_sort'};
4377
4378   return @out;
4379 }
4380
4381 =item save_cust_payby
4382
4383 Saves a new cust_payby for this customer, replacing an existing entry only
4384 in select circumstances.  Does not validate input.
4385
4386 If auto is specified, marks this as the customer's primary method, or the 
4387 specified weight.  Existing payment methods have their weight incremented as
4388 appropriate.
4389
4390 If bill_location is specified with auto, also sets location in cust_main.
4391
4392 Will not insert complete duplicates of existing records, or records in which the
4393 only difference from an existing record is to turn off automatic payment (will
4394 return without error.)  Will replace existing records in which the only difference 
4395 is to add a value to a previously empty preserved field and/or turn on automatic payment.
4396 Fields marked as preserved are optional, and existing values will not be overwritten with 
4397 blanks when replacing.
4398
4399 Accepts the following named parameters:
4400
4401 =over 4
4402
4403 =item payment_payby
4404
4405 either CARD or CHEK
4406
4407 =item auto
4408
4409 save as an automatic payment type (CARD/CHEK if true, DCRD/DCHK if false)
4410
4411 =item weight
4412
4413 optional, set higher than 1 for secondary, etc.
4414
4415 =item payinfo
4416
4417 required
4418
4419 =item paymask
4420
4421 optional, but should be specified for anything that might be tokenized, will be preserved when replacing
4422
4423 =item payname
4424
4425 required
4426
4427 =item payip
4428
4429 optional, will be preserved when replacing
4430
4431 =item paydate
4432
4433 CARD only, required
4434
4435 =item bill_location
4436
4437 CARD only, required, FS::cust_location object
4438
4439 =item paystart_month
4440
4441 CARD only, optional, will be preserved when replacing
4442
4443 =item paystart_year
4444
4445 CARD only, optional, will be preserved when replacing
4446
4447 =item payissue
4448
4449 CARD only, optional, will be preserved when replacing
4450
4451 =item paycvv
4452
4453 CARD only, only used if conf cvv-save is set appropriately
4454
4455 =item paytype
4456
4457 CHEK only
4458
4459 =item paystate
4460
4461 CHEK only
4462
4463 =item saved_cust_payby
4464
4465 scalar reference, for returning saved object
4466
4467 =back
4468
4469 =cut
4470
4471 #The code for this option is in place, but it's not currently used
4472 #
4473 # =item replace
4474 #
4475 # existing cust_payby object to be replaced (must match custnum)
4476
4477 # stateid/stateid_state/ss are not currently supported in cust_payby,
4478 # might not even work properly in 4.x, but will need to work here if ever added
4479
4480 sub save_cust_payby {
4481   my $self = shift;
4482   my %opt = @_;
4483
4484   my $old = $opt{'replace'};
4485   my $new = new FS::cust_payby { $old ? $old->hash : () };
4486   return "Customer number does not match" if $new->custnum and $new->custnum != $self->custnum;
4487   $new->set( 'custnum' => $self->custnum );
4488
4489   my $payby = $opt{'payment_payby'};
4490   return "Bad payby" unless grep(/^$payby$/,('CARD','CHEK'));
4491
4492   # don't allow turning off auto when replacing
4493   $opt{'auto'} ||= 1 if $old and $old->payby !~ /^D/;
4494
4495   my @check_existing; # payby relevant to this payment_payby
4496
4497   # set payby based on auto
4498   if ( $payby eq 'CARD' ) { 
4499     $new->set( 'payby' => ( $opt{'auto'} ? 'CARD' : 'DCRD' ) );
4500     @check_existing = qw( CARD DCRD );
4501   } elsif ( $payby eq 'CHEK' ) {
4502     $new->set( 'payby' => ( $opt{'auto'} ? 'CHEK' : 'DCHK' ) );
4503     @check_existing = qw( CHEK DCHK );
4504   }
4505
4506   $new->set( 'weight' => $opt{'auto'} ? $opt{'weight'} : '' );
4507
4508   # basic fields
4509   $new->payinfo($opt{'payinfo'}); # sets default paymask, but not if it's already tokenized
4510   $new->paymask($opt{'paymask'}) if $opt{'paymask'}; # in case it's been tokenized, override with loaded paymask
4511   $new->set( 'payname' => $opt{'payname'} );
4512   $new->set( 'payip' => $opt{'payip'} ); # will be preserved below
4513
4514   my $conf = new FS::Conf;
4515
4516   # compare to FS::cust_main::realtime_bop - check both to make sure working correctly
4517   if ( $payby eq 'CARD' &&
4518        ( (grep { $_ eq cardtype($opt{'payinfo'}) } $conf->config('cvv-save')) 
4519          || $conf->exists('business-onlinepayment-verification') 
4520        )
4521   ) {
4522     $new->set( 'paycvv' => $opt{'paycvv'} );
4523   } else {
4524     $new->set( 'paycvv' => '');
4525   }
4526
4527   local $SIG{HUP} = 'IGNORE';
4528   local $SIG{INT} = 'IGNORE';
4529   local $SIG{QUIT} = 'IGNORE';
4530   local $SIG{TERM} = 'IGNORE';
4531   local $SIG{TSTP} = 'IGNORE';
4532   local $SIG{PIPE} = 'IGNORE';
4533
4534   my $oldAutoCommit = $FS::UID::AutoCommit;
4535   local $FS::UID::AutoCommit = 0;
4536   my $dbh = dbh;
4537
4538   # set fields specific to payment_payby
4539   if ( $payby eq 'CARD' ) {
4540     if ($opt{'bill_location'}) {
4541       $opt{'bill_location'}->set('custnum' => $self->custnum);
4542       my $error = $opt{'bill_location'}->find_or_insert;
4543       if ( $error ) {
4544         $dbh->rollback if $oldAutoCommit;
4545         return $error;
4546       }
4547       $new->set( 'locationnum' => $opt{'bill_location'}->locationnum );
4548     }
4549     foreach my $field ( qw( paydate paystart_month paystart_year payissue ) ) {
4550       $new->set( $field => $opt{$field} );
4551     }
4552   } else {
4553     foreach my $field ( qw(paytype paystate) ) {
4554       $new->set( $field => $opt{$field} );
4555     }
4556   }
4557
4558   # other cust_payby to compare this to
4559   my @existing = $self->cust_payby(@check_existing);
4560
4561   # fields that can overwrite blanks with values, but not values with blanks
4562   my @preserve = qw( paymask locationnum paystart_month paystart_year payissue payip );
4563
4564   my $skip_cust_payby = 0; # true if we don't need to save or reweight cust_payby
4565   unless ($old) {
4566     # generally, we don't want to overwrite existing cust_payby with this,
4567     # but we can replace if we're only marking it auto or adding a preserved field
4568     # and we can avoid saving a total duplicate or merely turning off auto
4569 PAYBYLOOP:
4570     foreach my $cust_payby (@existing) {
4571       # check fields that absolutely should not change
4572       foreach my $field ($new->fields) {
4573         next if grep(/^$field$/, qw( custpaybynum payby weight ) );
4574         next if grep(/^$field$/, @preserve );
4575         next PAYBYLOOP unless $new->get($field) eq $cust_payby->get($field);
4576       }
4577       # now check fields that can replace if one value is blank
4578       my $replace = 0;
4579       foreach my $field (@preserve) {
4580         if (
4581           ( $new->get($field) and !$cust_payby->get($field) ) or
4582           ( $cust_payby->get($field) and !$new->get($field) )
4583         ) {
4584           # prevention of overwriting values with blanks happens farther below
4585           $replace = 1;
4586         } elsif ( $new->get($field) ne $cust_payby->get($field) ) {
4587           next PAYBYLOOP;
4588         }
4589       }
4590       unless ( $replace ) {
4591         # nearly identical, now check weight
4592         if ($new->get('weight') eq $cust_payby->get('weight') or !$new->get('weight')) {
4593           # ignore identical cust_payby, and ignore attempts to turn off auto
4594           # no need to save or re-weight cust_payby (but still need to update/commit $self)
4595           $skip_cust_payby = 1;
4596           last PAYBYLOOP;
4597         }
4598         # otherwise, only change is to mark this as primary
4599       }
4600       # if we got this far, we're definitely replacing
4601       $old = $cust_payby;
4602       last PAYBYLOOP;
4603     } #PAYBYLOOP
4604   }
4605
4606   if ($old) {
4607     $new->set( 'custpaybynum' => $old->custpaybynum );
4608     # don't turn off automatic payment (but allow it to be turned on)
4609     if ($new->payby =~ /^D/ and $new->payby ne $old->payby) {
4610       $opt{'auto'} = 1;
4611       $new->set( 'payby' => $old->payby );
4612       $new->set( 'weight' => 1 );
4613     }
4614     # make sure we're not overwriting values with blanks
4615     foreach my $field (@preserve) {
4616       if ( $old->get($field) and !$new->get($field) ) {
4617         $new->set( $field => $old->get($field) );
4618       }
4619     }
4620   }
4621
4622   # only overwrite cust_main bill_location if auto
4623   if ($opt{'auto'} && $opt{'bill_location'}) {
4624     $self->set('bill_location' => $opt{'bill_location'});
4625     my $error = $self->replace;
4626     if ( $error ) {
4627       $dbh->rollback if $oldAutoCommit;
4628       return $error;
4629     }
4630   }
4631
4632   # done with everything except reweighting and saving cust_payby
4633   # still need to commit changes to cust_main and cust_location
4634   if ($skip_cust_payby) {
4635     $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4636     return '';
4637   }
4638
4639   # re-weight existing primary cust_pay for this payby
4640   if ($opt{'auto'}) {
4641     foreach my $cust_payby (@existing) {
4642       # relies on cust_payby return order
4643       last unless $cust_payby->payby !~ /^D/;
4644       last if $cust_payby->weight > 1;
4645       next if $new->custpaybynum eq $cust_payby->custpaybynum;
4646       next if $cust_payby->weight < ($opt{'weight'} || 1);
4647       $cust_payby->weight( $cust_payby->weight + 1 );
4648       my $error = $cust_payby->replace;
4649       if ( $error ) {
4650         $dbh->rollback if $oldAutoCommit;
4651         return "Error reweighting cust_payby: $error";
4652       }
4653     }
4654   }
4655
4656   # finally, save cust_payby
4657   my $error = $old ? $new->replace($old) : $new->insert;
4658   if ( $error ) {
4659     $dbh->rollback if $oldAutoCommit;
4660     return $error;
4661   }
4662
4663   ${$opt{'saved_cust_payby'}} = $new
4664     if $opt{'saved_cust_payby'};
4665
4666   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4667   '';
4668
4669 }
4670
4671 =item remove_cvv_from_cust_payby PAYINFO
4672
4673 Removes paycvv from associated cust_payby with matching PAYINFO.
4674
4675 =cut
4676
4677 sub remove_cvv_from_cust_payby {
4678   my ($self,$payinfo) = @_;
4679
4680   my $oldAutoCommit = $FS::UID::AutoCommit;
4681   local $FS::UID::AutoCommit = 0;
4682   my $dbh = dbh;
4683
4684   foreach my $cust_payby ( qsearch('cust_payby',{ custnum => $self->custnum }) ) {
4685     next unless $cust_payby->payinfo eq $payinfo; # can't qsearch on payinfo
4686     $cust_payby->paycvv('');
4687     my $error = $cust_payby->replace;
4688     if ($error) {
4689       $dbh->rollback if $oldAutoCommit;
4690       return $error;
4691     }
4692   }
4693
4694   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4695   '';
4696 }
4697
4698 =back
4699
4700 =head1 CLASS METHODS
4701
4702 =over 4
4703
4704 =item statuses
4705
4706 Class method that returns the list of possible status strings for customers
4707 (see L<the status method|/status>).  For example:
4708
4709   @statuses = FS::cust_main->statuses();
4710
4711 =cut
4712
4713 sub statuses {
4714   my $self = shift;
4715   keys %{ $self->statuscolors };
4716 }
4717
4718 =item cust_status_sql
4719
4720 Returns an SQL fragment to determine the status of a cust_main record, as a 
4721 string.
4722
4723 =cut
4724
4725 sub cust_status_sql {
4726   my $sql = 'CASE';
4727   for my $status ( FS::cust_main->statuses() ) {
4728     my $method = $status.'_sql';
4729     $sql .= ' WHEN ('.FS::cust_main->$method.") THEN '$status'";
4730   }
4731   $sql .= ' END';
4732   return $sql;
4733 }
4734
4735
4736 =item prospect_sql
4737
4738 Returns an SQL expression identifying prospective cust_main records (customers
4739 with no packages ever ordered)
4740
4741 =cut
4742
4743 use vars qw($select_count_pkgs);
4744 $select_count_pkgs =
4745   "SELECT COUNT(*) FROM cust_pkg
4746     WHERE cust_pkg.custnum = cust_main.custnum";
4747
4748 sub select_count_pkgs_sql {
4749   $select_count_pkgs;
4750 }
4751
4752 sub prospect_sql {
4753   " 0 = ( $select_count_pkgs ) ";
4754 }
4755
4756 =item ordered_sql
4757
4758 Returns an SQL expression identifying ordered cust_main records (customers with
4759 no active packages, but recurring packages not yet setup or one time charges
4760 not yet billed).
4761
4762 =cut
4763
4764 sub ordered_sql {
4765   FS::cust_main->none_active_sql.
4766   " AND 0 < ( $select_count_pkgs AND ". FS::cust_pkg->not_yet_billed_sql. " ) ";
4767 }
4768
4769 =item active_sql
4770
4771 Returns an SQL expression identifying active cust_main records (customers with
4772 active recurring packages).
4773
4774 =cut
4775
4776 sub active_sql {
4777   " 0 < ( $select_count_pkgs AND ". FS::cust_pkg->active_sql. " ) ";
4778 }
4779
4780 =item none_active_sql
4781
4782 Returns an SQL expression identifying cust_main records with no active
4783 recurring packages.  This includes customers of status prospect, ordered,
4784 inactive, and suspended.
4785
4786 =cut
4787
4788 sub none_active_sql {
4789   " 0 = ( $select_count_pkgs AND ". FS::cust_pkg->active_sql. " ) ";
4790 }
4791
4792 =item inactive_sql
4793
4794 Returns an SQL expression identifying inactive cust_main records (customers with
4795 no active recurring packages, but otherwise unsuspended/uncancelled).
4796
4797 =cut
4798
4799 sub inactive_sql {
4800   FS::cust_main->none_active_sql.
4801   " AND 0 < ( $select_count_pkgs AND ". FS::cust_pkg->inactive_sql. " ) ";
4802 }
4803
4804 =item susp_sql
4805 =item suspended_sql
4806
4807 Returns an SQL expression identifying suspended cust_main records.
4808
4809 =cut
4810
4811
4812 sub suspended_sql { susp_sql(@_); }
4813 sub susp_sql {
4814   FS::cust_main->none_active_sql.
4815   " AND 0 < ( $select_count_pkgs AND ". FS::cust_pkg->suspended_sql. " ) ";
4816 }
4817
4818 =item cancel_sql
4819 =item cancelled_sql
4820
4821 Returns an SQL expression identifying cancelled cust_main records.
4822
4823 =cut
4824
4825 sub cancel_sql { shift->cancelled_sql(@_); }
4826
4827 =item uncancel_sql
4828 =item uncancelled_sql
4829
4830 Returns an SQL expression identifying un-cancelled cust_main records.
4831
4832 =cut
4833
4834 sub uncancelled_sql { uncancel_sql(@_); }
4835 sub uncancel_sql {
4836   my $self = shift;
4837   "( NOT (".$self->cancelled_sql.") )"; #sensitive to cust_main-status_module
4838 }
4839
4840 =item balance_sql
4841
4842 Returns an SQL fragment to retreive the balance.
4843
4844 =cut
4845
4846 sub balance_sql { "
4847     ( SELECT COALESCE( SUM(charged), 0 ) FROM cust_bill
4848         WHERE cust_bill.custnum   = cust_main.custnum     )
4849   - ( SELECT COALESCE( SUM(paid),    0 ) FROM cust_pay
4850         WHERE cust_pay.custnum    = cust_main.custnum     )
4851   - ( SELECT COALESCE( SUM(amount),  0 ) FROM cust_credit
4852         WHERE cust_credit.custnum = cust_main.custnum     )
4853   + ( SELECT COALESCE( SUM(refund),  0 ) FROM cust_refund
4854         WHERE cust_refund.custnum = cust_main.custnum     )
4855 "; }
4856
4857 =item balance_date_sql [ START_TIME [ END_TIME [ OPTION => VALUE ... ] ] ]
4858
4859 Returns an SQL fragment to retreive the balance for this customer, optionally
4860 considering invoices with date earlier than START_TIME, and not
4861 later than END_TIME (total_owed_date minus total_unapplied_credits minus
4862 total_unapplied_payments).
4863
4864 Times are specified as SQL fragments or numeric
4865 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
4866 L<Date::Parse> for conversion functions.  The empty string can be passed
4867 to disable that time constraint completely.
4868
4869 Available options are:
4870
4871 =over 4
4872
4873 =item unapplied_date
4874
4875 set to true to disregard unapplied credits, payments and refunds outside the specified time period - by default the time period restriction only applies to invoices (useful for reporting, probably a bad idea for event triggering)
4876
4877 =item total
4878
4879 (unused.  obsolete?)
4880 set to true to remove all customer comparison clauses, for totals
4881
4882 =item where
4883
4884 (unused.  obsolete?)
4885 WHERE clause hashref (elements "AND"ed together) (typically used with the total option)
4886
4887 =item join
4888
4889 (unused.  obsolete?)
4890 JOIN clause (typically used with the total option)
4891
4892 =item cutoff
4893
4894 An absolute cutoff time.  Payments, credits, and refunds I<applied> after this 
4895 time will be ignored.  Note that START_TIME and END_TIME only limit the date 
4896 range for invoices and I<unapplied> payments, credits, and refunds.
4897
4898 =back
4899
4900 =cut
4901
4902 sub balance_date_sql {
4903   my( $class, $start, $end, %opt ) = @_;
4904
4905   my $cutoff = $opt{'cutoff'};
4906
4907   my $owed         = FS::cust_bill->owed_sql($cutoff);
4908   my $unapp_refund = FS::cust_refund->unapplied_sql($cutoff);
4909   my $unapp_credit = FS::cust_credit->unapplied_sql($cutoff);
4910   my $unapp_pay    = FS::cust_pay->unapplied_sql($cutoff);
4911
4912   my $j = $opt{'join'} || '';
4913
4914   my $owed_wh   = $class->_money_table_where( 'cust_bill',   $start,$end,%opt );
4915   my $refund_wh = $class->_money_table_where( 'cust_refund', $start,$end,%opt );
4916   my $credit_wh = $class->_money_table_where( 'cust_credit', $start,$end,%opt );
4917   my $pay_wh    = $class->_money_table_where( 'cust_pay',    $start,$end,%opt );
4918
4919   "   ( SELECT COALESCE(SUM($owed),         0) FROM cust_bill   $j $owed_wh   )
4920     + ( SELECT COALESCE(SUM($unapp_refund), 0) FROM cust_refund $j $refund_wh )
4921     - ( SELECT COALESCE(SUM($unapp_credit), 0) FROM cust_credit $j $credit_wh )
4922     - ( SELECT COALESCE(SUM($unapp_pay),    0) FROM cust_pay    $j $pay_wh    )
4923   ";
4924
4925 }
4926
4927 =item unapplied_payments_date_sql START_TIME [ END_TIME ]
4928
4929 Returns an SQL fragment to retreive the total unapplied payments for this
4930 customer, only considering payments with date earlier than START_TIME, and
4931 optionally not later than END_TIME.
4932
4933 Times are specified as SQL fragments or numeric
4934 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
4935 L<Date::Parse> for conversion functions.  The empty string can be passed
4936 to disable that time constraint completely.
4937
4938 Available options are:
4939
4940 =cut
4941
4942 sub unapplied_payments_date_sql {
4943   my( $class, $start, $end, %opt ) = @_;
4944
4945   my $cutoff = $opt{'cutoff'};
4946
4947   my $unapp_pay    = FS::cust_pay->unapplied_sql($cutoff);
4948
4949   my $pay_where = $class->_money_table_where( 'cust_pay', $start, $end,
4950                                                           'unapplied_date'=>1 );
4951
4952   " ( SELECT COALESCE(SUM($unapp_pay), 0) FROM cust_pay $pay_where ) ";
4953 }
4954
4955 =item _money_table_where TABLE START_TIME [ END_TIME [ OPTION => VALUE ... ] ]
4956
4957 Helper method for balance_date_sql; name (and usage) subject to change
4958 (suggestions welcome).
4959
4960 Returns a WHERE clause for the specified monetary TABLE (cust_bill,
4961 cust_refund, cust_credit or cust_pay).
4962
4963 If TABLE is "cust_bill" or the unapplied_date option is true, only
4964 considers records with date earlier than START_TIME, and optionally not
4965 later than END_TIME .
4966
4967 =cut
4968
4969 sub _money_table_where {
4970   my( $class, $table, $start, $end, %opt ) = @_;
4971
4972   my @where = ();
4973   push @where, "cust_main.custnum = $table.custnum" unless $opt{'total'};
4974   if ( $table eq 'cust_bill' || $opt{'unapplied_date'} ) {
4975     push @where, "$table._date <= $start" if defined($start) && length($start);
4976     push @where, "$table._date >  $end"   if defined($end)   && length($end);
4977   }
4978   push @where, @{$opt{'where'}} if $opt{'where'};
4979   my $where = scalar(@where) ? 'WHERE '. join(' AND ', @where ) : '';
4980
4981   $where;
4982
4983 }
4984
4985 #for dyanmic FS::$table->search in httemplate/misc/email_customers.html
4986 use FS::cust_main::Search;
4987 sub search {
4988   my $class = shift;
4989   FS::cust_main::Search->search(@_);
4990 }
4991
4992 =back
4993
4994 =head1 SUBROUTINES
4995
4996 =over 4
4997
4998 =item generate_letter CUSTOMER_OBJECT TEMPLATE_NAME OPTIONS
4999
5000 Generates a templated notification to the customer (see L<Text::Template>).
5001
5002 OPTIONS is a hash and may include
5003
5004 I<extra_fields> - a hashref of name/value pairs which will be substituted
5005    into the template.  These values may override values mentioned below
5006    and those from the customer record.
5007
5008 I<template_text> - if present, ignores TEMPLATE_NAME and uses the provided text
5009
5010 The following variables are available in the template instead of or in addition
5011 to the fields of the customer record.
5012
5013 I<$returnaddress> - the return address defaults to invoice_latexreturnaddress or company_address
5014
5015 =cut
5016
5017 # a lot like cust_bill::print_latex
5018 sub generate_letter {
5019   my ($self, $template, %options) = @_;
5020
5021   warn "Template $template does not exist" && return
5022     unless $conf->exists($template) || $options{'template_text'};
5023
5024   my $template_source = $options{'template_text'} 
5025                         ? [ $options{'template_text'} ] 
5026                         : [ map "$_\n", $conf->config($template) ];
5027
5028   my $letter_template = new Text::Template
5029                         ( TYPE       => 'ARRAY',
5030                           SOURCE     => $template_source,
5031                           DELIMITERS => [ '[@--', '--@]' ],
5032                         )
5033     or die "can't create new Text::Template object: Text::Template::ERROR";
5034
5035   $letter_template->compile()
5036     or die "can't compile template: Text::Template::ERROR";
5037
5038   my %letter_data = map { $_ => $self->$_ } $self->fields;
5039
5040   for (keys %{$options{extra_fields}}){
5041     $letter_data{$_} = $options{extra_fields}->{$_};
5042   }
5043
5044   unless(exists($letter_data{returnaddress})){
5045     my $retadd = join("\n", $conf->config_orbase( 'invoice_latexreturnaddress',
5046                                                   $self->agent_template)
5047                      );
5048     if ( length($retadd) ) {
5049       $letter_data{returnaddress} = $retadd;
5050     } elsif ( grep /\S/, $conf->config('company_address', $self->agentnum) ) {
5051       $letter_data{returnaddress} =
5052         join( "\n", map { s/( {2,})/'~' x length($1)/eg;
5053                           s/$/\\\\\*/;
5054                           $_;
5055                         }
5056                     ( $conf->config('company_name', $self->agentnum),
5057                       $conf->config('company_address', $self->agentnum),
5058                     )
5059         );
5060     } else {
5061       $letter_data{returnaddress} = '~';
5062     }
5063   }
5064
5065   $letter_data{conf_dir} = "$FS::UID::conf_dir/conf.$FS::UID::datasrc";
5066
5067   $letter_data{company_name} = $conf->config('company_name', $self->agentnum);
5068
5069   my $dir = $FS::UID::conf_dir."/cache.". $FS::UID::datasrc;
5070
5071   my $lh = new File::Temp( TEMPLATE => 'letter.'. $self->custnum. '.XXXXXXXX',
5072                            DIR      => $dir,
5073                            SUFFIX   => '.eps',
5074                            UNLINK   => 0,
5075                          ) or die "can't open temp file: $!\n";
5076   print $lh $conf->config_binary('logo.eps', $self->agentnum)
5077     or die "can't write temp file: $!\n";
5078   close $lh;
5079   $letter_data{'logo_file'} = $lh->filename;
5080
5081   my $fh = new File::Temp( TEMPLATE => 'letter.'. $self->custnum. '.XXXXXXXX',
5082                            DIR      => $dir,
5083                            SUFFIX   => '.tex',
5084                            UNLINK   => 0,
5085                          ) or die "can't open temp file: $!\n";
5086
5087   $letter_template->fill_in( OUTPUT => $fh, HASH => \%letter_data );
5088   close $fh;
5089   $fh->filename =~ /^(.*).tex$/ or die "unparsable filename: ". $fh->filename;
5090   return ($1, $letter_data{'logo_file'});
5091
5092 }
5093
5094 =item print_ps TEMPLATE 
5095
5096 Returns an postscript letter filled in from TEMPLATE, as a scalar.
5097
5098 =cut
5099
5100 sub print_ps {
5101   my $self = shift;
5102   my($file, $lfile) = $self->generate_letter(@_);
5103   my $ps = FS::Misc::generate_ps($file);
5104   unlink($file.'.tex');
5105   unlink($lfile);
5106
5107   $ps;
5108 }
5109
5110 =item print TEMPLATE
5111
5112 Prints the filled in template.
5113
5114 TEMPLATE is the name of a L<Text::Template> to fill in and print.
5115
5116 =cut
5117
5118 sub queueable_print {
5119   my %opt = @_;
5120
5121   my $self = qsearchs('cust_main', { 'custnum' => $opt{custnum} } )
5122     or die "invalid customer number: " . $opt{custnum};
5123
5124 #do not backport this change to 3.x
5125 #  my $error = $self->print( { 'template' => $opt{template} } );
5126   my $error = $self->print( $opt{'template'} );
5127   die $error if $error;
5128 }
5129
5130 sub print {
5131   my ($self, $template) = (shift, shift);
5132   do_print(
5133     [ $self->print_ps($template) ],
5134     'agentnum' => $self->agentnum,
5135   );
5136 }
5137
5138 #these three subs should just go away once agent stuff is all config overrides
5139
5140 sub agent_template {
5141   my $self = shift;
5142   $self->_agent_plandata('agent_templatename');
5143 }
5144
5145 sub agent_invoice_from {
5146   my $self = shift;
5147   $self->_agent_plandata('agent_invoice_from');
5148 }
5149
5150 sub _agent_plandata {
5151   my( $self, $option ) = @_;
5152
5153   #yuck.  this whole thing needs to be reconciled better with 1.9's idea of
5154   #agent-specific Conf
5155
5156   use FS::part_event::Condition;
5157   
5158   my $agentnum = $self->agentnum;
5159
5160   my $regexp = regexp_sql();
5161
5162   my $part_event_option =
5163     qsearchs({
5164       'select'    => 'part_event_option.*',
5165       'table'     => 'part_event_option',
5166       'addl_from' => q{
5167         LEFT JOIN part_event USING ( eventpart )
5168         LEFT JOIN part_event_option AS peo_agentnum
5169           ON ( part_event.eventpart = peo_agentnum.eventpart
5170                AND peo_agentnum.optionname = 'agentnum'
5171                AND peo_agentnum.optionvalue }. $regexp. q{ '(^|,)}. $agentnum. q{(,|$)'
5172              )
5173         LEFT JOIN part_event_condition
5174           ON ( part_event.eventpart = part_event_condition.eventpart
5175                AND part_event_condition.conditionname = 'cust_bill_age'
5176              )
5177         LEFT JOIN part_event_condition_option
5178           ON ( part_event_condition.eventconditionnum = part_event_condition_option.eventconditionnum
5179                AND part_event_condition_option.optionname = 'age'
5180              )
5181       },
5182       #'hashref'   => { 'optionname' => $option },
5183       #'hashref'   => { 'part_event_option.optionname' => $option },
5184       'extra_sql' =>
5185         " WHERE part_event_option.optionname = ". dbh->quote($option).
5186         " AND action = 'cust_bill_send_agent' ".
5187         " AND ( disabled IS NULL OR disabled != 'Y' ) ".
5188         " AND peo_agentnum.optionname = 'agentnum' ".
5189         " AND ( agentnum IS NULL OR agentnum = $agentnum ) ".
5190         " ORDER BY
5191            CASE WHEN part_event_condition_option.optionname IS NULL
5192            THEN -1
5193            ELSE ". FS::part_event::Condition->age2seconds_sql('part_event_condition_option.optionvalue').
5194         " END
5195           , part_event.weight".
5196         " LIMIT 1"
5197     });
5198     
5199   unless ( $part_event_option ) {
5200     return $self->agent->invoice_template || ''
5201       if $option eq 'agent_templatename';
5202     return '';
5203   }
5204
5205   $part_event_option->optionvalue;
5206
5207 }
5208
5209 sub process_o2m_qsearch {
5210   my $self = shift;
5211   my $table = shift;
5212   return qsearch($table, @_) unless $table eq 'contact';
5213
5214   my $hashref = shift;
5215   my %hash = %$hashref;
5216   ( my $custnum = delete $hash{'custnum'} ) =~ /^(\d+)$/
5217     or die 'guru meditation #4343';
5218
5219   qsearch({ 'table'     => 'contact',
5220             'addl_from' => 'LEFT JOIN cust_contact USING ( contactnum )',
5221             'hashref'   => \%hash,
5222             'extra_sql' => ( keys %hash ? ' AND ' : ' WHERE ' ).
5223                            " cust_contact.custnum = $custnum "
5224          });                
5225 }
5226
5227 sub process_o2m_qsearchs {
5228   my $self = shift;
5229   my $table = shift;
5230   return qsearchs($table, @_) unless $table eq 'contact';
5231
5232   my $hashref = shift;
5233   my %hash = %$hashref;
5234   ( my $custnum = delete $hash{'custnum'} ) =~ /^(\d+)$/
5235     or die 'guru meditation #2121';
5236
5237   qsearchs({ 'table'     => 'contact',
5238              'addl_from' => 'LEFT JOIN cust_contact USING ( contactnum )',
5239              'hashref'   => \%hash,
5240              'extra_sql' => ( keys %hash ? ' AND ' : ' WHERE ' ).
5241                             " cust_contact.custnum = $custnum "
5242           });                
5243 }
5244
5245 =item queued_bill 'custnum' => CUSTNUM [ , OPTION => VALUE ... ]
5246
5247 Subroutine (not a method), designed to be called from the queue.
5248
5249 Takes a list of options and values.
5250
5251 Pulls up the customer record via the custnum option and calls bill_and_collect.
5252
5253 =cut
5254
5255 sub queued_bill {
5256   my (%args) = @_; #, ($time, $invoice_time, $check_freq, $resetup) = @_;
5257
5258   my $cust_main = qsearchs( 'cust_main', { custnum => $args{'custnum'} } );
5259   warn 'bill_and_collect custnum#'. $cust_main->custnum. "\n";#log custnum w/pid
5260
5261   #without this errors don't get rolled back
5262   $args{'fatal'} = 1; # runs from job queue, will be caught
5263
5264   $cust_main->bill_and_collect( %args );
5265 }
5266
5267 =item queued_collect 'custnum' => CUSTNUM [ , OPTION => VALUE ... ]
5268
5269 Like queued_bill, but instead of C<bill_and_collect>, just runs the 
5270 C<collect> part.  This is used in batch tax calculation, where invoice 
5271 generation and collection events have to be completely separated.
5272
5273 =cut
5274
5275 sub queued_collect {
5276   my (%args) = @_;
5277   my $cust_main = FS::cust_main->by_key($args{'custnum'});
5278   
5279   $cust_main->collect(%args);
5280 }
5281
5282 sub process_bill_and_collect {
5283   my $job = shift;
5284   my $param = shift;
5285   my $cust_main = qsearchs( 'cust_main', { custnum => $param->{'custnum'} } )
5286       or die "custnum '$param->{custnum}' not found!\n";
5287   $param->{'job'}   = $job;
5288   $param->{'fatal'} = 1; # runs from job queue, will be caught
5289   $param->{'retry'} = 1;
5290
5291   $cust_main->bill_and_collect( %$param );
5292 }
5293
5294 #starting to take quite a while for big dbs
5295 #   (JRNL: journaled so it only happens once per database)
5296 # - seq scan of h_cust_main (yuck), but not going to index paycvv, so
5297 # JRNL seq scan of cust_main on signupdate... index signupdate?  will that help?
5298 # JRNL seq scan of cust_main on paydate... index on substrings?  maybe set an
5299 # JRNL seq scan of cust_main on payinfo.. certainly not going toi ndex that...
5300 # JRNL leading/trailing spaces in first, last, company
5301 # JRNL migrate to cust_payby
5302 # - otaker upgrade?  journal and call it good?  (double check to make sure
5303 #    we're not still setting otaker here)
5304 #
5305 #only going to get worse with new location stuff...
5306
5307 sub _upgrade_data { #class method
5308   my ($class, %opts) = @_;
5309
5310   my @statements = ();
5311
5312   #this seems to be the only expensive one.. why does it take so long?
5313   unless ( FS::upgrade_journal->is_done('cust_main__signupdate') ) {
5314     push @statements,
5315       'UPDATE cust_main SET signupdate = (SELECT signupdate FROM h_cust_main WHERE signupdate IS NOT NULL AND h_cust_main.custnum = cust_main.custnum ORDER BY historynum DESC LIMIT 1) WHERE signupdate IS NULL';
5316     FS::upgrade_journal->set_done('cust_main__signupdate');
5317   }
5318
5319   my $t = time;
5320   foreach my $sql ( @statements ) {
5321     my $sth = dbh->prepare($sql) or die dbh->errstr;
5322     $sth->execute or die $sth->errstr;
5323     #warn ( (time - $t). " seconds\n" );
5324     #$t = time;
5325   }
5326
5327   local($ignore_expired_card) = 1;
5328   local($ignore_banned_card) = 1;
5329   local($skip_fuzzyfiles) = 1;
5330   local($import) = 1; #prevent automatic geocoding (need its own variable?)
5331
5332   FS::cust_main::Location->_upgrade_data(%opts);
5333
5334   unless ( FS::upgrade_journal->is_done('cust_main__trimspaces') ) {
5335
5336     foreach my $cust_main ( qsearch({
5337       'table'     => 'cust_main', 
5338       'hashref'   => {},
5339       'extra_sql' => 'WHERE '.
5340                        join(' OR ',
5341                          map "$_ LIKE ' %' OR $_ LIKE '% ' OR $_ LIKE '%  %'",
5342                            qw( first last company )
5343                        ),
5344     }) ) {
5345       my $error = $cust_main->replace;
5346       die $error if $error;
5347     }
5348
5349     FS::upgrade_journal->set_done('cust_main__trimspaces');
5350
5351   }
5352
5353   $class->_upgrade_otaker(%opts);
5354
5355 }
5356
5357 sub queueable_upgrade {
5358   my $class = shift;
5359   FS::cust_main::Billing_Realtime::token_check(@_);
5360 }
5361
5362 =back
5363
5364 =head1 BUGS
5365
5366 The delete method.
5367
5368 The delete method should possibly take an FS::cust_main object reference
5369 instead of a scalar customer number.
5370
5371 Bill and collect options should probably be passed as references instead of a
5372 list.
5373
5374 There should probably be a configuration file with a list of allowed credit
5375 card types.
5376
5377 No multiple currency support (probably a larger project than just this module).
5378
5379 Birthdates rely on negative epoch values.
5380
5381 B<collect> I<invoice_time> should be renamed I<time>, like B<bill>.
5382
5383 =head1 SEE ALSO
5384
5385 L<FS::Record>, L<FS::cust_pkg>, L<FS::cust_bill>, L<FS::cust_credit>
5386 L<FS::agent>, L<FS::part_referral>, L<FS::cust_main_county>,
5387 L<FS::cust_main_invoice>, L<FS::UID>, schema.html from the base documentation.
5388
5389 =cut
5390
5391 1;
5392