Merge branch 'master' of git.freeside.biz:/home/git/freeside
[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 cust_bill [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
3408
3409 Returns all the invoices (see L<FS::cust_bill>) for this customer.
3410
3411 Optionally, a list or hashref of additional arguments to the qsearch call can
3412 be passed.
3413
3414 =cut
3415
3416 sub cust_bill {
3417   my $self = shift;
3418   my $opt = ref($_[0]) ? shift : { @_ };
3419
3420   #return $self->num_cust_bill unless wantarray || keys %$opt;
3421
3422   $opt->{'table'} = 'cust_bill';
3423   $opt->{'hashref'} ||= {}; #i guess it would autovivify anyway...
3424   $opt->{'hashref'}{'custnum'} = $self->custnum;
3425   $opt->{'order_by'} ||= 'ORDER BY _date ASC';
3426
3427   map { $_ } #behavior of sort undefined in scalar context
3428     sort { $a->_date <=> $b->_date }
3429       qsearch($opt);
3430 }
3431
3432 =item open_cust_bill
3433
3434 Returns all the open (owed > 0) invoices (see L<FS::cust_bill>) for this
3435 customer.
3436
3437 =cut
3438
3439 sub open_cust_bill {
3440   my $self = shift;
3441
3442   $self->cust_bill(
3443     'extra_sql' => ' AND '. FS::cust_bill->owed_sql. ' > 0',
3444     #@_
3445   );
3446
3447 }
3448
3449 =item legacy_cust_bill [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
3450
3451 Returns all the legacy invoices (see L<FS::legacy_cust_bill>) for this customer.
3452
3453 =cut
3454
3455 sub legacy_cust_bill {
3456   my $self = shift;
3457
3458   #return $self->num_legacy_cust_bill unless wantarray;
3459
3460   map { $_ } #behavior of sort undefined in scalar context
3461     sort { $a->_date <=> $b->_date }
3462       qsearch({ 'table'    => 'legacy_cust_bill',
3463                 'hashref'  => { 'custnum' => $self->custnum, },
3464                 'order_by' => 'ORDER BY _date ASC',
3465              });
3466 }
3467
3468 =item cust_statement [ OPTION => VALUE... | EXTRA_QSEARCH_PARAMS_HASHREF ]
3469
3470 Returns all the statements (see L<FS::cust_statement>) for this customer.
3471
3472 Optionally, a list or hashref of additional arguments to the qsearch call can
3473 be passed.
3474
3475 =cut
3476
3477 =item cust_bill_void
3478
3479 Returns all the voided invoices (see L<FS::cust_bill_void>) for this customer.
3480
3481 =cut
3482
3483 sub cust_bill_void {
3484   my $self = shift;
3485
3486   map { $_ } #return $self->num_cust_bill_void unless wantarray;
3487   sort { $a->_date <=> $b->_date }
3488     qsearch( 'cust_bill_void', { 'custnum' => $self->custnum } )
3489 }
3490
3491 sub cust_statement {
3492   my $self = shift;
3493   my $opt = ref($_[0]) ? shift : { @_ };
3494
3495   #return $self->num_cust_statement unless wantarray || keys %$opt;
3496
3497   $opt->{'table'} = 'cust_statement';
3498   $opt->{'hashref'} ||= {}; #i guess it would autovivify anyway...
3499   $opt->{'hashref'}{'custnum'} = $self->custnum;
3500   $opt->{'order_by'} ||= 'ORDER BY _date ASC';
3501
3502   map { $_ } #behavior of sort undefined in scalar context
3503     sort { $a->_date <=> $b->_date }
3504       qsearch($opt);
3505 }
3506
3507 =item svc_x SVCDB [ OPTION => VALUE | EXTRA_QSEARCH_PARAMS_HASHREF ]
3508
3509 Returns all services of type SVCDB (such as 'svc_acct') for this customer.  
3510
3511 Optionally, a list or hashref of additional arguments to the qsearch call can 
3512 be passed following the SVCDB.
3513
3514 =cut
3515
3516 sub svc_x {
3517   my $self = shift;
3518   my $svcdb = shift;
3519   if ( ! $svcdb =~ /^svc_\w+$/ ) {
3520     warn "$me svc_x requires a svcdb";
3521     return;
3522   }
3523   my $opt = ref($_[0]) ? shift : { @_ };
3524
3525   $opt->{'table'} = $svcdb;
3526   $opt->{'addl_from'} = 
3527     'LEFT JOIN cust_svc USING (svcnum) LEFT JOIN cust_pkg USING (pkgnum) '.
3528     ($opt->{'addl_from'} || '');
3529
3530   my $custnum = $self->custnum;
3531   $custnum =~ /^\d+$/ or die "bad custnum '$custnum'";
3532   my $where = "cust_pkg.custnum = $custnum";
3533
3534   my $extra_sql = $opt->{'extra_sql'} || '';
3535   if ( keys %{ $opt->{'hashref'} } ) {
3536     $extra_sql = " AND $where $extra_sql";
3537   }
3538   else {
3539     if ( $opt->{'extra_sql'} =~ /^\s*where\s(.*)/si ) {
3540       $extra_sql = "WHERE $where AND $1";
3541     }
3542     else {
3543       $extra_sql = "WHERE $where $extra_sql";
3544     }
3545   }
3546   $opt->{'extra_sql'} = $extra_sql;
3547
3548   qsearch($opt);
3549 }
3550
3551 # required for use as an eventtable; 
3552 sub svc_acct {
3553   my $self = shift;
3554   $self->svc_x('svc_acct', @_);
3555 }
3556
3557 =item cust_credit
3558
3559 Returns all the credits (see L<FS::cust_credit>) for this customer.
3560
3561 =cut
3562
3563 sub cust_credit {
3564   my $self = shift;
3565
3566   #return $self->num_cust_credit unless wantarray;
3567
3568   map { $_ } #behavior of sort undefined in scalar context
3569     sort { $a->_date <=> $b->_date }
3570       qsearch( 'cust_credit', { 'custnum' => $self->custnum } )
3571 }
3572
3573 =item cust_credit_pkgnum
3574
3575 Returns all the credits (see L<FS::cust_credit>) for this customer's specific
3576 package when using experimental package balances.
3577
3578 =cut
3579
3580 sub cust_credit_pkgnum {
3581   my( $self, $pkgnum ) = @_;
3582   map { $_ } #return $self->num_cust_credit_pkgnum($pkgnum) unless wantarray;
3583   sort { $a->_date <=> $b->_date }
3584     qsearch( 'cust_credit', { 'custnum' => $self->custnum,
3585                               'pkgnum'  => $pkgnum,
3586                             }
3587     );
3588 }
3589
3590 =item cust_credit_void
3591
3592 Returns all voided credits (see L<FS::cust_credit_void>) for this customer.
3593
3594 =cut
3595
3596 sub cust_credit_void {
3597   my $self = shift;
3598   map { $_ }
3599   sort { $a->_date <=> $b->_date }
3600     qsearch( 'cust_credit_void', { 'custnum' => $self->custnum } )
3601 }
3602
3603 =item cust_pay
3604
3605 Returns all the payments (see L<FS::cust_pay>) for this customer.
3606
3607 =cut
3608
3609 sub cust_pay {
3610   my $self = shift;
3611   my $opt = ref($_[0]) ? shift : { @_ };
3612
3613   return $self->num_cust_pay unless wantarray || keys %$opt;
3614
3615   $opt->{'table'} = 'cust_pay';
3616   $opt->{'hashref'}{'custnum'} = $self->custnum;
3617
3618   map { $_ } #behavior of sort undefined in scalar context
3619     sort { $a->_date <=> $b->_date }
3620       qsearch($opt);
3621
3622 }
3623
3624 =item num_cust_pay
3625
3626 Returns the number of payments (see L<FS::cust_pay>) for this customer.  Also
3627 called automatically when the cust_pay method is used in a scalar context.
3628
3629 =cut
3630
3631 sub num_cust_pay {
3632   my $self = shift;
3633   my $sql = "SELECT COUNT(*) FROM cust_pay WHERE custnum = ?";
3634   my $sth = dbh->prepare($sql) or die dbh->errstr;
3635   $sth->execute($self->custnum) or die $sth->errstr;
3636   $sth->fetchrow_arrayref->[0];
3637 }
3638
3639 =item unapplied_cust_pay
3640
3641 Returns all the unapplied payments (see L<FS::cust_pay>) for this customer.
3642
3643 =cut
3644
3645 sub unapplied_cust_pay {
3646   my $self = shift;
3647
3648   $self->cust_pay(
3649     'extra_sql' => ' AND '. FS::cust_pay->unapplied_sql. ' > 0',
3650     #@_
3651   );
3652
3653 }
3654
3655 =item cust_pay_pkgnum
3656
3657 Returns all the payments (see L<FS::cust_pay>) for this customer's specific
3658 package when using experimental package balances.
3659
3660 =cut
3661
3662 sub cust_pay_pkgnum {
3663   my( $self, $pkgnum ) = @_;
3664   map { $_ } #return $self->num_cust_pay_pkgnum($pkgnum) unless wantarray;
3665   sort { $a->_date <=> $b->_date }
3666     qsearch( 'cust_pay', { 'custnum' => $self->custnum,
3667                            'pkgnum'  => $pkgnum,
3668                          }
3669     );
3670 }
3671
3672 =item cust_pay_void
3673
3674 Returns all voided payments (see L<FS::cust_pay_void>) for this customer.
3675
3676 =cut
3677
3678 sub cust_pay_void {
3679   my $self = shift;
3680   map { $_ } #return $self->num_cust_pay_void unless wantarray;
3681   sort { $a->_date <=> $b->_date }
3682     qsearch( 'cust_pay_void', { 'custnum' => $self->custnum } )
3683 }
3684
3685 =item cust_pay_pending
3686
3687 Returns all pending payments (see L<FS::cust_pay_pending>) for this customer
3688 (without status "done").
3689
3690 =cut
3691
3692 sub cust_pay_pending {
3693   my $self = shift;
3694   return $self->num_cust_pay_pending unless wantarray;
3695   sort { $a->_date <=> $b->_date }
3696     qsearch( 'cust_pay_pending', {
3697                                    'custnum' => $self->custnum,
3698                                    'status'  => { op=>'!=', value=>'done' },
3699                                  },
3700            );
3701 }
3702
3703 =item cust_pay_pending_attempt
3704
3705 Returns all payment attempts / declined payments for this customer, as pending
3706 payments objects (see L<FS::cust_pay_pending>), with status "done" but without
3707 a corresponding payment (see L<FS::cust_pay>).
3708
3709 =cut
3710
3711 sub cust_pay_pending_attempt {
3712   my $self = shift;
3713   return $self->num_cust_pay_pending_attempt unless wantarray;
3714   sort { $a->_date <=> $b->_date }
3715     qsearch( 'cust_pay_pending', {
3716                                    'custnum' => $self->custnum,
3717                                    'status'  => 'done',
3718                                    'paynum'  => '',
3719                                  },
3720            );
3721 }
3722
3723 =item num_cust_pay_pending
3724
3725 Returns the number of pending payments (see L<FS::cust_pay_pending>) for this
3726 customer (without status "done").  Also called automatically when the
3727 cust_pay_pending method is used in a scalar context.
3728
3729 =cut
3730
3731 sub num_cust_pay_pending {
3732   my $self = shift;
3733   $self->scalar_sql(
3734     " SELECT COUNT(*) FROM cust_pay_pending ".
3735       " WHERE custnum = ? AND status != 'done' ",
3736     $self->custnum
3737   );
3738 }
3739
3740 =item num_cust_pay_pending_attempt
3741
3742 Returns the number of pending payments (see L<FS::cust_pay_pending>) for this
3743 customer, with status "done" but without a corresp.  Also called automatically when the
3744 cust_pay_pending method is used in a scalar context.
3745
3746 =cut
3747
3748 sub num_cust_pay_pending_attempt {
3749   my $self = shift;
3750   $self->scalar_sql(
3751     " SELECT COUNT(*) FROM cust_pay_pending ".
3752       " WHERE custnum = ? AND status = 'done' AND paynum IS NULL",
3753     $self->custnum
3754   );
3755 }
3756
3757 =item cust_refund
3758
3759 Returns all the refunds (see L<FS::cust_refund>) for this customer.
3760
3761 =cut
3762
3763 sub cust_refund {
3764   my $self = shift;
3765   map { $_ } #return $self->num_cust_refund unless wantarray;
3766   sort { $a->_date <=> $b->_date }
3767     qsearch( 'cust_refund', { 'custnum' => $self->custnum } )
3768 }
3769
3770 =item display_custnum
3771
3772 Returns the displayed customer number for this customer: agent_custid if
3773 cust_main-default_agent_custid is set and it has a value, custnum otherwise.
3774
3775 =cut
3776
3777 sub display_custnum {
3778   my $self = shift;
3779
3780   return $self->agent_custid
3781     if $default_agent_custid && $self->agent_custid;
3782
3783   my $prefix = $conf->config('cust_main-custnum-display_prefix', $self->agentnum) || '';
3784
3785   if ( $prefix ) {
3786     return $prefix . 
3787            sprintf('%0'.($custnum_display_length||8).'d', $self->custnum)
3788   } elsif ( $custnum_display_length ) {
3789     return sprintf('%0'.$custnum_display_length.'d', $self->custnum);
3790   } else {
3791     return $self->custnum;
3792   }
3793 }
3794
3795 =item name
3796
3797 Returns a name string for this customer, either "Company (Last, First)" or
3798 "Last, First".
3799
3800 =cut
3801
3802 sub name {
3803   my $self = shift;
3804   my $name = $self->contact;
3805   $name = $self->company. " ($name)" if $self->company;
3806   $name;
3807 }
3808
3809 =item service_contact
3810
3811 Returns the L<FS::contact> object for this customer that has the 'Service'
3812 contact class, or undef if there is no such contact.  Deprecated; don't use
3813 this in new code.
3814
3815 =cut
3816
3817 sub service_contact {
3818   my $self = shift;
3819   if ( !exists($self->{service_contact}) ) {
3820     my $classnum = $self->scalar_sql(
3821       'SELECT classnum FROM contact_class WHERE classname = \'Service\''
3822     ) || 0; #if it's zero, qsearchs will return nothing
3823     my $cust_contact = qsearchs('cust_contact', { 
3824         'classnum' => $classnum,
3825         'custnum'  => $self->custnum,
3826     });
3827     $self->{service_contact} = $cust_contact->contact if $cust_contact;
3828   }
3829   $self->{service_contact};
3830 }
3831
3832 =item ship_name
3833
3834 Returns a name string for this (service/shipping) contact, either
3835 "Company (Last, First)" or "Last, First".
3836
3837 =cut
3838
3839 sub ship_name {
3840   my $self = shift;
3841
3842   my $name = $self->ship_contact;
3843   $name = $self->company. " ($name)" if $self->company;
3844   $name;
3845 }
3846
3847 =item name_short
3848
3849 Returns a name string for this customer, either "Company" or "First Last".
3850
3851 =cut
3852
3853 sub name_short {
3854   my $self = shift;
3855   $self->company !~ /^\s*$/ ? $self->company : $self->contact_firstlast;
3856 }
3857
3858 =item ship_name_short
3859
3860 Returns a name string for this (service/shipping) contact, either "Company"
3861 or "First Last".
3862
3863 =cut
3864
3865 sub ship_name_short {
3866   my $self = shift;
3867   $self->service_contact 
3868     ? $self->ship_contact_firstlast 
3869     : $self->name_short
3870 }
3871
3872 =item contact
3873
3874 Returns this customer's full (billing) contact name only, "Last, First"
3875
3876 =cut
3877
3878 sub contact {
3879   my $self = shift;
3880   $self->get('last'). ', '. $self->first;
3881 }
3882
3883 =item ship_contact
3884
3885 Returns this customer's full (shipping) contact name only, "Last, First"
3886
3887 =cut
3888
3889 sub ship_contact {
3890   my $self = shift;
3891   my $contact = $self->service_contact || $self;
3892   $contact->get('last') . ', ' . $contact->get('first');
3893 }
3894
3895 =item contact_firstlast
3896
3897 Returns this customers full (billing) contact name only, "First Last".
3898
3899 =cut
3900
3901 sub contact_firstlast {
3902   my $self = shift;
3903   $self->first. ' '. $self->get('last');
3904 }
3905
3906 =item ship_contact_firstlast
3907
3908 Returns this customer's full (shipping) contact name only, "First Last".
3909
3910 =cut
3911
3912 sub ship_contact_firstlast {
3913   my $self = shift;
3914   my $contact = $self->service_contact || $self;
3915   $contact->get('first') . ' '. $contact->get('last');
3916 }
3917
3918 sub bill_country_full {
3919   my $self = shift;
3920   $self->bill_location->country_full;
3921 }
3922
3923 sub ship_country_full {
3924   my $self = shift;
3925   $self->ship_location->country_full;
3926 }
3927
3928 =item county_state_county [ PREFIX ]
3929
3930 Returns a string consisting of just the county, state and country.
3931
3932 =cut
3933
3934 sub county_state_country {
3935   my $self = shift;
3936   my $locationnum;
3937   if ( @_ && $_[0] && $self->has_ship_address ) {
3938     $locationnum = $self->ship_locationnum;
3939   } else {
3940     $locationnum = $self->bill_locationnum;
3941   }
3942   my $cust_location = qsearchs('cust_location', { locationnum=>$locationnum });
3943   $cust_location->county_state_country;
3944 }
3945
3946 =item geocode DATA_VENDOR
3947
3948 Returns a value for the customer location as encoded by DATA_VENDOR.
3949 Currently this only makes sense for "CCH" as DATA_VENDOR.
3950
3951 =cut
3952
3953 =item cust_status
3954
3955 =item status
3956
3957 Returns a status string for this customer, currently:
3958
3959 =over 4
3960
3961 =item prospect
3962
3963 No packages have ever been ordered.  Displayed as "No packages".
3964
3965 =item ordered
3966
3967 Recurring packages all are new (not yet billed).
3968
3969 =item active
3970
3971 One or more recurring packages is active.
3972
3973 =item inactive
3974
3975 No active recurring packages, but otherwise unsuspended/uncancelled (the inactive status is new - previously inactive customers were mis-identified as cancelled).
3976
3977 =item suspended
3978
3979 All non-cancelled recurring packages are suspended.
3980
3981 =item cancelled
3982
3983 All recurring packages are cancelled.
3984
3985 =back
3986
3987 Behavior of inactive vs. cancelled edge cases can be adjusted with the
3988 cust_main-status_module configuration option.
3989
3990 =cut
3991
3992 sub status { shift->cust_status(@_); }
3993
3994 sub cust_status {
3995   my $self = shift;
3996   return $self->hashref->{cust_status} if $self->hashref->{cust_status};
3997   for my $status ( FS::cust_main->statuses() ) {
3998     my $method = $status.'_sql';
3999     my $numnum = ( my $sql = $self->$method() ) =~ s/cust_main\.custnum/?/g;
4000     my $sth = dbh->prepare("SELECT $sql") or die dbh->errstr;
4001     $sth->execute( ($self->custnum) x $numnum )
4002       or die "Error executing 'SELECT $sql': ". $sth->errstr;
4003     if ( $sth->fetchrow_arrayref->[0] ) {
4004       $self->hashref->{cust_status} = $status;
4005       return $status;
4006     }
4007   }
4008 }
4009
4010 =item is_status_delay_cancel
4011
4012 Returns true if customer status is 'suspended'
4013 and all suspended cust_pkg return true for
4014 cust_pkg->is_status_delay_cancel.
4015
4016 This is not a real status, this only meant for hacking display 
4017 values, because otherwise treating the customer as suspended is 
4018 really the whole point of the delay_cancel option.
4019
4020 =cut
4021
4022 sub is_status_delay_cancel {
4023   my ($self) = @_;
4024   return 0 unless $self->status eq 'suspended';
4025   foreach my $cust_pkg ($self->ncancelled_pkgs) {
4026     return 0 unless $cust_pkg->is_status_delay_cancel;
4027   }
4028   return 1;
4029 }
4030
4031 =item ucfirst_cust_status
4032
4033 =item ucfirst_status
4034
4035 Deprecated, use the cust_status_label method instead.
4036
4037 Returns the status with the first character capitalized.
4038
4039 =cut
4040
4041 sub ucfirst_status {
4042   carp "ucfirst_status deprecated, use cust_status_label" unless $ucfirst_nowarn;
4043   local($ucfirst_nowarn) = 1;
4044   shift->ucfirst_cust_status(@_);
4045 }
4046
4047 sub ucfirst_cust_status {
4048   carp "ucfirst_cust_status deprecated, use cust_status_label" unless $ucfirst_nowarn;
4049   my $self = shift;
4050   ucfirst($self->cust_status);
4051 }
4052
4053 =item cust_status_label
4054
4055 =item status_label
4056
4057 Returns the display label for this status.
4058
4059 =cut
4060
4061 sub status_label { shift->cust_status_label(@_); }
4062
4063 sub cust_status_label {
4064   my $self = shift;
4065   __PACKAGE__->statuslabels->{$self->cust_status};
4066 }
4067
4068 =item statuscolor
4069
4070 Returns a hex triplet color string for this customer's status.
4071
4072 =cut
4073
4074 sub statuscolor { shift->cust_statuscolor(@_); }
4075
4076 sub cust_statuscolor {
4077   my $self = shift;
4078   __PACKAGE__->statuscolors->{$self->cust_status};
4079 }
4080
4081 =item tickets [ STATUS ]
4082
4083 Returns an array of hashes representing the customer's RT tickets.
4084
4085 An optional status (or arrayref or hashref of statuses) may be specified.
4086
4087 =cut
4088
4089 sub tickets {
4090   my $self = shift;
4091   my $status = ( @_ && $_[0] ) ? shift : '';
4092
4093   my $num = $conf->config('cust_main-max_tickets') || 10;
4094   my @tickets = ();
4095
4096   if ( $conf->config('ticket_system') ) {
4097     unless ( $conf->config('ticket_system-custom_priority_field') ) {
4098
4099       @tickets = @{ FS::TicketSystem->customer_tickets( $self->custnum,
4100                                                         $num,
4101                                                         undef,
4102                                                         $status,
4103                                                       )
4104                   };
4105
4106     } else {
4107
4108       foreach my $priority (
4109         $conf->config('ticket_system-custom_priority_field-values'), ''
4110       ) {
4111         last if scalar(@tickets) >= $num;
4112         push @tickets, 
4113           @{ FS::TicketSystem->customer_tickets( $self->custnum,
4114                                                  $num - scalar(@tickets),
4115                                                  $priority,
4116                                                  $status,
4117                                                )
4118            };
4119       }
4120     }
4121   }
4122   (@tickets);
4123 }
4124
4125 =item appointments [ STATUS ]
4126
4127 Returns an array of hashes representing the customer's RT tickets which
4128 are appointments.
4129
4130 =cut
4131
4132 sub appointments {
4133   my $self = shift;
4134   my $status = ( @_ && $_[0] ) ? shift : '';
4135
4136   return () unless $conf->config('ticket_system');
4137
4138   my $queueid = $conf->config('ticket_system-appointment-queueid');
4139
4140   @{ FS::TicketSystem->customer_tickets( $self->custnum,
4141                                          99,
4142                                          undef,
4143                                          $status,
4144                                          $queueid,
4145                                        )
4146   };
4147 }
4148
4149 # Return services representing svc_accts in customer support packages
4150 sub support_services {
4151   my $self = shift;
4152   my %packages = map { $_ => 1 } $conf->config('support_packages');
4153
4154   grep { $_->pkg_svc && $_->pkg_svc->primary_svc eq 'Y' }
4155     grep { $_->part_svc->svcdb eq 'svc_acct' }
4156     map { $_->cust_svc }
4157     grep { exists $packages{ $_->pkgpart } }
4158     $self->ncancelled_pkgs;
4159
4160 }
4161
4162 # Return a list of latitude/longitude for one of the services (if any)
4163 sub service_coordinates {
4164   my $self = shift;
4165
4166   my @svc_X = 
4167     grep { $_->latitude && $_->longitude }
4168     map { $_->svc_x }
4169     map { $_->cust_svc }
4170     $self->ncancelled_pkgs;
4171
4172   scalar(@svc_X) ? ( $svc_X[0]->latitude, $svc_X[0]->longitude ) : ()
4173 }
4174
4175 =item masked FIELD
4176
4177 Returns a masked version of the named field
4178
4179 =cut
4180
4181 sub masked {
4182 my ($self,$field) = @_;
4183
4184 # Show last four
4185
4186 'x'x(length($self->getfield($field))-4).
4187   substr($self->getfield($field), (length($self->getfield($field))-4));
4188
4189 }
4190
4191 =item payment_history
4192
4193 Returns an array of hashrefs standardizing information from cust_bill, cust_pay,
4194 cust_credit and cust_refund objects.  Each hashref has the following fields:
4195
4196 I<type> - one of 'Line item', 'Invoice', 'Payment', 'Credit', 'Refund' or 'Previous'
4197
4198 I<date> - value of _date field, unix timestamp
4199
4200 I<date_pretty> - user-friendly date
4201
4202 I<description> - user-friendly description of item
4203
4204 I<amount> - impact of item on user's balance 
4205 (positive for Invoice/Refund/Line item, negative for Payment/Credit.)
4206 Not to be confused with the native 'amount' field in cust_credit, see below.
4207
4208 I<amount_pretty> - includes money char
4209
4210 I<balance> - customer balance, chronologically as of this item
4211
4212 I<balance_pretty> - includes money char
4213
4214 I<charged> - amount charged for cust_bill (Invoice or Line item) records, undef for other types
4215
4216 I<paid> - amount paid for cust_pay records, undef for other types
4217
4218 I<credit> - amount credited for cust_credit records, undef for other types.
4219 Literally the 'amount' field from cust_credit, renamed here to avoid confusion.
4220
4221 I<refund> - amount refunded for cust_refund records, undef for other types
4222
4223 The four table-specific keys always have positive values, whether they reflect charges or payments.
4224
4225 The following options may be passed to this method:
4226
4227 I<line_items> - if true, returns charges ('Line item') rather than invoices
4228
4229 I<start_date> - unix timestamp, only include records on or after.
4230 If specified, an item of type 'Previous' will also be included.
4231 It does not have table-specific fields.
4232
4233 I<end_date> - unix timestamp, only include records before
4234
4235 I<reverse_sort> - order from newest to oldest (default is oldest to newest)
4236
4237 I<conf> - optional already-loaded FS::Conf object.
4238
4239 =cut
4240
4241 # Caution: this gets used by FS::ClientAPI::MyAccount::billing_history,
4242 # and also for sending customer statements, which should both be kept customer-friendly.
4243 # If you add anything that shouldn't be passed on through the API or exposed 
4244 # to customers, add a new option to include it, don't include it by default
4245 sub payment_history {
4246   my $self = shift;
4247   my $opt = ref($_[0]) ? $_[0] : { @_ };
4248
4249   my $conf = $$opt{'conf'} || new FS::Conf;
4250   my $money_char = $conf->config("money_char") || '$',
4251
4252   #first load entire history, 
4253   #need previous to calculate previous balance
4254   #loading after end_date shouldn't hurt too much?
4255   my @history = ();
4256   if ( $$opt{'line_items'} ) {
4257
4258     foreach my $cust_bill ( $self->cust_bill ) {
4259
4260       push @history, {
4261         'type'        => 'Line item',
4262         'description' => $_->desc( $self->locale ).
4263                            ( $_->sdate && $_->edate
4264                                ? ' '. time2str('%d-%b-%Y', $_->sdate).
4265                                  ' To '. time2str('%d-%b-%Y', $_->edate)
4266                                : ''
4267                            ),
4268         'amount'      => sprintf('%.2f', $_->setup + $_->recur ),
4269         'charged'     => sprintf('%.2f', $_->setup + $_->recur ),
4270         'date'        => $cust_bill->_date,
4271         'date_pretty' => $self->time2str_local('short', $cust_bill->_date ),
4272       }
4273         foreach $cust_bill->cust_bill_pkg;
4274
4275     }
4276
4277   } else {
4278
4279     push @history, {
4280                      'type'        => 'Invoice',
4281                      'description' => 'Invoice #'. $_->display_invnum,
4282                      'amount'      => sprintf('%.2f', $_->charged ),
4283                      'charged'     => sprintf('%.2f', $_->charged ),
4284                      'date'        => $_->_date,
4285                      'date_pretty' => $self->time2str_local('short', $_->_date ),
4286                    }
4287       foreach $self->cust_bill;
4288
4289   }
4290
4291   push @history, {
4292                    'type'        => 'Payment',
4293                    'description' => 'Payment', #XXX type
4294                    'amount'      => sprintf('%.2f', 0 - $_->paid ),
4295                    'paid'        => sprintf('%.2f', $_->paid ),
4296                    'date'        => $_->_date,
4297                    'date_pretty' => $self->time2str_local('short', $_->_date ),
4298                  }
4299     foreach $self->cust_pay;
4300
4301   push @history, {
4302                    'type'        => 'Credit',
4303                    'description' => 'Credit', #more info?
4304                    'amount'      => sprintf('%.2f', 0 -$_->amount ),
4305                    'credit'      => sprintf('%.2f', $_->amount ),
4306                    'date'        => $_->_date,
4307                    'date_pretty' => $self->time2str_local('short', $_->_date ),
4308                  }
4309     foreach $self->cust_credit;
4310
4311   push @history, {
4312                    'type'        => 'Refund',
4313                    'description' => 'Refund', #more info?  type, like payment?
4314                    'amount'      => $_->refund,
4315                    'refund'      => $_->refund,
4316                    'date'        => $_->_date,
4317                    'date_pretty' => $self->time2str_local('short', $_->_date ),
4318                  }
4319     foreach $self->cust_refund;
4320
4321   #put it all in chronological order
4322   @history = sort { $a->{'date'} <=> $b->{'date'} } @history;
4323
4324   #calculate balance, filter items outside date range
4325   my $previous = 0;
4326   my $balance = 0;
4327   my @out = ();
4328   foreach my $item (@history) {
4329     last if $$opt{'end_date'} && ($$item{'date'} >= $$opt{'end_date'});
4330     $balance += $$item{'amount'};
4331     if ($$opt{'start_date'} && ($$item{'date'} < $$opt{'start_date'})) {
4332       $previous += $$item{'amount'};
4333       next;
4334     }
4335     $$item{'balance'} = sprintf("%.2f",$balance);
4336     foreach my $key ( qw(amount balance) ) {
4337       $$item{$key.'_pretty'} = money_pretty($$item{$key});
4338     }
4339     push(@out,$item);
4340   }
4341
4342   # start with previous balance, if there was one
4343   if ($previous) {
4344     my $item = {
4345       'type'        => 'Previous',
4346       'description' => 'Previous balance',
4347       'amount'      => sprintf("%.2f",$previous),
4348       'balance'     => sprintf("%.2f",$previous),
4349       'date'        => $$opt{'start_date'},
4350       'date_pretty' => $self->time2str_local('short', $$opt{'start_date'} ),
4351     };
4352     #false laziness with above
4353     foreach my $key ( qw(amount balance) ) {
4354       $$item{$key.'_pretty'} = $$item{$key};
4355       $$item{$key.'_pretty'} =~ s/^(-?)/$1$money_char/;
4356     }
4357     unshift(@out,$item);
4358   }
4359
4360   @out = reverse @history if $$opt{'reverse_sort'};
4361
4362   return @out;
4363 }
4364
4365 =item save_cust_payby
4366
4367 Saves a new cust_payby for this customer, replacing an existing entry only
4368 in select circumstances.  Does not validate input.
4369
4370 If auto is specified, marks this as the customer's primary method, or the 
4371 specified weight.  Existing payment methods have their weight incremented as
4372 appropriate.
4373
4374 If bill_location is specified with auto, also sets location in cust_main.
4375
4376 Will not insert complete duplicates of existing records, or records in which the
4377 only difference from an existing record is to turn off automatic payment (will
4378 return without error.)  Will replace existing records in which the only difference 
4379 is to add a value to a previously empty preserved field and/or turn on automatic payment.
4380 Fields marked as preserved are optional, and existing values will not be overwritten with 
4381 blanks when replacing.
4382
4383 Accepts the following named parameters:
4384
4385 =over 4
4386
4387 =item payment_payby
4388
4389 either CARD or CHEK
4390
4391 =item auto
4392
4393 save as an automatic payment type (CARD/CHEK if true, DCRD/DCHK if false)
4394
4395 =item weight
4396
4397 optional, set higher than 1 for secondary, etc.
4398
4399 =item payinfo
4400
4401 required
4402
4403 =item paymask
4404
4405 optional, but should be specified for anything that might be tokenized, will be preserved when replacing
4406
4407 =item payname
4408
4409 required
4410
4411 =item payip
4412
4413 optional, will be preserved when replacing
4414
4415 =item paydate
4416
4417 CARD only, required
4418
4419 =item bill_location
4420
4421 CARD only, required, FS::cust_location object
4422
4423 =item paystart_month
4424
4425 CARD only, optional, will be preserved when replacing
4426
4427 =item paystart_year
4428
4429 CARD only, optional, will be preserved when replacing
4430
4431 =item payissue
4432
4433 CARD only, optional, will be preserved when replacing
4434
4435 =item paycvv
4436
4437 CARD only, only used if conf cvv-save is set appropriately
4438
4439 =item paytype
4440
4441 CHEK only
4442
4443 =item paystate
4444
4445 CHEK only
4446
4447 =item saved_cust_payby
4448
4449 scalar reference, for returning saved object
4450
4451 =back
4452
4453 =cut
4454
4455 #The code for this option is in place, but it's not currently used
4456 #
4457 # =item replace
4458 #
4459 # existing cust_payby object to be replaced (must match custnum)
4460
4461 # stateid/stateid_state/ss are not currently supported in cust_payby,
4462 # might not even work properly in 4.x, but will need to work here if ever added
4463
4464 sub save_cust_payby {
4465   my $self = shift;
4466   my %opt = @_;
4467
4468   my $old = $opt{'replace'};
4469   my $new = new FS::cust_payby { $old ? $old->hash : () };
4470   return "Customer number does not match" if $new->custnum and $new->custnum != $self->custnum;
4471   $new->set( 'custnum' => $self->custnum );
4472
4473   my $payby = $opt{'payment_payby'};
4474   return "Bad payby" unless grep(/^$payby$/,('CARD','CHEK'));
4475
4476   # don't allow turning off auto when replacing
4477   $opt{'auto'} ||= 1 if $old and $old->payby !~ /^D/;
4478
4479   my @check_existing; # payby relevant to this payment_payby
4480
4481   # set payby based on auto
4482   if ( $payby eq 'CARD' ) { 
4483     $new->set( 'payby' => ( $opt{'auto'} ? 'CARD' : 'DCRD' ) );
4484     @check_existing = qw( CARD DCRD );
4485   } elsif ( $payby eq 'CHEK' ) {
4486     $new->set( 'payby' => ( $opt{'auto'} ? 'CHEK' : 'DCHK' ) );
4487     @check_existing = qw( CHEK DCHK );
4488   }
4489
4490   $new->set( 'weight' => $opt{'auto'} ? $opt{'weight'} : '' );
4491
4492   # basic fields
4493   $new->payinfo($opt{'payinfo'}); # sets default paymask, but not if it's already tokenized
4494   $new->paymask($opt{'paymask'}) if $opt{'paymask'}; # in case it's been tokenized, override with loaded paymask
4495   $new->set( 'payname' => $opt{'payname'} );
4496   $new->set( 'payip' => $opt{'payip'} ); # will be preserved below
4497
4498   my $conf = new FS::Conf;
4499
4500   # compare to FS::cust_main::realtime_bop - check both to make sure working correctly
4501   if ( $payby eq 'CARD' &&
4502        ( (grep { $_ eq cardtype($opt{'payinfo'}) } $conf->config('cvv-save')) 
4503          || $conf->exists('business-onlinepayment-verification') 
4504        )
4505   ) {
4506     $new->set( 'paycvv' => $opt{'paycvv'} );
4507   } else {
4508     $new->set( 'paycvv' => '');
4509   }
4510
4511   local $SIG{HUP} = 'IGNORE';
4512   local $SIG{INT} = 'IGNORE';
4513   local $SIG{QUIT} = 'IGNORE';
4514   local $SIG{TERM} = 'IGNORE';
4515   local $SIG{TSTP} = 'IGNORE';
4516   local $SIG{PIPE} = 'IGNORE';
4517
4518   my $oldAutoCommit = $FS::UID::AutoCommit;
4519   local $FS::UID::AutoCommit = 0;
4520   my $dbh = dbh;
4521
4522   # set fields specific to payment_payby
4523   if ( $payby eq 'CARD' ) {
4524     if ($opt{'bill_location'}) {
4525       $opt{'bill_location'}->set('custnum' => $self->custnum);
4526       my $error = $opt{'bill_location'}->find_or_insert;
4527       if ( $error ) {
4528         $dbh->rollback if $oldAutoCommit;
4529         return $error;
4530       }
4531       $new->set( 'locationnum' => $opt{'bill_location'}->locationnum );
4532     }
4533     foreach my $field ( qw( paydate paystart_month paystart_year payissue ) ) {
4534       $new->set( $field => $opt{$field} );
4535     }
4536   } else {
4537     foreach my $field ( qw(paytype paystate) ) {
4538       $new->set( $field => $opt{$field} );
4539     }
4540   }
4541
4542   # other cust_payby to compare this to
4543   my @existing = $self->cust_payby(@check_existing);
4544
4545   # fields that can overwrite blanks with values, but not values with blanks
4546   my @preserve = qw( paymask locationnum paystart_month paystart_year payissue payip );
4547
4548   my $skip_cust_payby = 0; # true if we don't need to save or reweight cust_payby
4549   unless ($old) {
4550     # generally, we don't want to overwrite existing cust_payby with this,
4551     # but we can replace if we're only marking it auto or adding a preserved field
4552     # and we can avoid saving a total duplicate or merely turning off auto
4553 PAYBYLOOP:
4554     foreach my $cust_payby (@existing) {
4555       # check fields that absolutely should not change
4556       foreach my $field ($new->fields) {
4557         next if grep(/^$field$/, qw( custpaybynum payby weight ) );
4558         next if grep(/^$field$/, @preserve );
4559         next PAYBYLOOP unless $new->get($field) eq $cust_payby->get($field);
4560       }
4561       # now check fields that can replace if one value is blank
4562       my $replace = 0;
4563       foreach my $field (@preserve) {
4564         if (
4565           ( $new->get($field) and !$cust_payby->get($field) ) or
4566           ( $cust_payby->get($field) and !$new->get($field) )
4567         ) {
4568           # prevention of overwriting values with blanks happens farther below
4569           $replace = 1;
4570         } elsif ( $new->get($field) ne $cust_payby->get($field) ) {
4571           next PAYBYLOOP;
4572         }
4573       }
4574       unless ( $replace ) {
4575         # nearly identical, now check weight
4576         if ($new->get('weight') eq $cust_payby->get('weight') or !$new->get('weight')) {
4577           # ignore identical cust_payby, and ignore attempts to turn off auto
4578           # no need to save or re-weight cust_payby (but still need to update/commit $self)
4579           $skip_cust_payby = 1;
4580           last PAYBYLOOP;
4581         }
4582         # otherwise, only change is to mark this as primary
4583       }
4584       # if we got this far, we're definitely replacing
4585       $old = $cust_payby;
4586       last PAYBYLOOP;
4587     } #PAYBYLOOP
4588   }
4589
4590   if ($old) {
4591     $new->set( 'custpaybynum' => $old->custpaybynum );
4592     # don't turn off automatic payment (but allow it to be turned on)
4593     if ($new->payby =~ /^D/ and $new->payby ne $old->payby) {
4594       $opt{'auto'} = 1;
4595       $new->set( 'payby' => $old->payby );
4596       $new->set( 'weight' => 1 );
4597     }
4598     # make sure we're not overwriting values with blanks
4599     foreach my $field (@preserve) {
4600       if ( $old->get($field) and !$new->get($field) ) {
4601         $new->set( $field => $old->get($field) );
4602       }
4603     }
4604   }
4605
4606   # only overwrite cust_main bill_location if auto
4607   if ($opt{'auto'} && $opt{'bill_location'}) {
4608     $self->set('bill_location' => $opt{'bill_location'});
4609     my $error = $self->replace;
4610     if ( $error ) {
4611       $dbh->rollback if $oldAutoCommit;
4612       return $error;
4613     }
4614   }
4615
4616   # done with everything except reweighting and saving cust_payby
4617   # still need to commit changes to cust_main and cust_location
4618   if ($skip_cust_payby) {
4619     $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4620     return '';
4621   }
4622
4623   # re-weight existing primary cust_pay for this payby
4624   if ($opt{'auto'}) {
4625     foreach my $cust_payby (@existing) {
4626       # relies on cust_payby return order
4627       last unless $cust_payby->payby !~ /^D/;
4628       last if $cust_payby->weight > 1;
4629       next if $new->custpaybynum eq $cust_payby->custpaybynum;
4630       next if $cust_payby->weight < ($opt{'weight'} || 1);
4631       $cust_payby->weight( $cust_payby->weight + 1 );
4632       my $error = $cust_payby->replace;
4633       if ( $error ) {
4634         $dbh->rollback if $oldAutoCommit;
4635         return "Error reweighting cust_payby: $error";
4636       }
4637     }
4638   }
4639
4640   # finally, save cust_payby
4641   my $error = $old ? $new->replace($old) : $new->insert;
4642   if ( $error ) {
4643     $dbh->rollback if $oldAutoCommit;
4644     return $error;
4645   }
4646
4647   ${$opt{'saved_cust_payby'}} = $new
4648     if $opt{'saved_cust_payby'};
4649
4650   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4651   '';
4652
4653 }
4654
4655 =item remove_cvv_from_cust_payby PAYINFO
4656
4657 Removes paycvv from associated cust_payby with matching PAYINFO.
4658
4659 =cut
4660
4661 sub remove_cvv_from_cust_payby {
4662   my ($self,$payinfo) = @_;
4663
4664   my $oldAutoCommit = $FS::UID::AutoCommit;
4665   local $FS::UID::AutoCommit = 0;
4666   my $dbh = dbh;
4667
4668   foreach my $cust_payby ( qsearch('cust_payby',{ custnum => $self->custnum }) ) {
4669     next unless $cust_payby->payinfo eq $payinfo; # can't qsearch on payinfo
4670     $cust_payby->paycvv('');
4671     my $error = $cust_payby->replace;
4672     if ($error) {
4673       $dbh->rollback if $oldAutoCommit;
4674       return $error;
4675     }
4676   }
4677
4678   $dbh->commit or die $dbh->errstr if $oldAutoCommit;
4679   '';
4680 }
4681
4682 =back
4683
4684 =head1 CLASS METHODS
4685
4686 =over 4
4687
4688 =item statuses
4689
4690 Class method that returns the list of possible status strings for customers
4691 (see L<the status method|/status>).  For example:
4692
4693   @statuses = FS::cust_main->statuses();
4694
4695 =cut
4696
4697 sub statuses {
4698   my $self = shift;
4699   keys %{ $self->statuscolors };
4700 }
4701
4702 =item cust_status_sql
4703
4704 Returns an SQL fragment to determine the status of a cust_main record, as a 
4705 string.
4706
4707 =cut
4708
4709 sub cust_status_sql {
4710   my $sql = 'CASE';
4711   for my $status ( FS::cust_main->statuses() ) {
4712     my $method = $status.'_sql';
4713     $sql .= ' WHEN ('.FS::cust_main->$method.") THEN '$status'";
4714   }
4715   $sql .= ' END';
4716   return $sql;
4717 }
4718
4719
4720 =item prospect_sql
4721
4722 Returns an SQL expression identifying prospective cust_main records (customers
4723 with no packages ever ordered)
4724
4725 =cut
4726
4727 use vars qw($select_count_pkgs);
4728 $select_count_pkgs =
4729   "SELECT COUNT(*) FROM cust_pkg
4730     WHERE cust_pkg.custnum = cust_main.custnum";
4731
4732 sub select_count_pkgs_sql {
4733   $select_count_pkgs;
4734 }
4735
4736 sub prospect_sql {
4737   " 0 = ( $select_count_pkgs ) ";
4738 }
4739
4740 =item ordered_sql
4741
4742 Returns an SQL expression identifying ordered cust_main records (customers with
4743 no active packages, but recurring packages not yet setup or one time charges
4744 not yet billed).
4745
4746 =cut
4747
4748 sub ordered_sql {
4749   FS::cust_main->none_active_sql.
4750   " AND 0 < ( $select_count_pkgs AND ". FS::cust_pkg->not_yet_billed_sql. " ) ";
4751 }
4752
4753 =item active_sql
4754
4755 Returns an SQL expression identifying active cust_main records (customers with
4756 active recurring packages).
4757
4758 =cut
4759
4760 sub active_sql {
4761   " 0 < ( $select_count_pkgs AND ". FS::cust_pkg->active_sql. " ) ";
4762 }
4763
4764 =item none_active_sql
4765
4766 Returns an SQL expression identifying cust_main records with no active
4767 recurring packages.  This includes customers of status prospect, ordered,
4768 inactive, and suspended.
4769
4770 =cut
4771
4772 sub none_active_sql {
4773   " 0 = ( $select_count_pkgs AND ". FS::cust_pkg->active_sql. " ) ";
4774 }
4775
4776 =item inactive_sql
4777
4778 Returns an SQL expression identifying inactive cust_main records (customers with
4779 no active recurring packages, but otherwise unsuspended/uncancelled).
4780
4781 =cut
4782
4783 sub inactive_sql {
4784   FS::cust_main->none_active_sql.
4785   " AND 0 < ( $select_count_pkgs AND ". FS::cust_pkg->inactive_sql. " ) ";
4786 }
4787
4788 =item susp_sql
4789 =item suspended_sql
4790
4791 Returns an SQL expression identifying suspended cust_main records.
4792
4793 =cut
4794
4795
4796 sub suspended_sql { susp_sql(@_); }
4797 sub susp_sql {
4798   FS::cust_main->none_active_sql.
4799   " AND 0 < ( $select_count_pkgs AND ". FS::cust_pkg->suspended_sql. " ) ";
4800 }
4801
4802 =item cancel_sql
4803 =item cancelled_sql
4804
4805 Returns an SQL expression identifying cancelled cust_main records.
4806
4807 =cut
4808
4809 sub cancel_sql { shift->cancelled_sql(@_); }
4810
4811 =item uncancel_sql
4812 =item uncancelled_sql
4813
4814 Returns an SQL expression identifying un-cancelled cust_main records.
4815
4816 =cut
4817
4818 sub uncancelled_sql { uncancel_sql(@_); }
4819 sub uncancel_sql {
4820   my $self = shift;
4821   "( NOT (".$self->cancelled_sql.") )"; #sensitive to cust_main-status_module
4822 }
4823
4824 =item balance_sql
4825
4826 Returns an SQL fragment to retreive the balance.
4827
4828 =cut
4829
4830 sub balance_sql { "
4831     ( SELECT COALESCE( SUM(charged), 0 ) FROM cust_bill
4832         WHERE cust_bill.custnum   = cust_main.custnum     )
4833   - ( SELECT COALESCE( SUM(paid),    0 ) FROM cust_pay
4834         WHERE cust_pay.custnum    = cust_main.custnum     )
4835   - ( SELECT COALESCE( SUM(amount),  0 ) FROM cust_credit
4836         WHERE cust_credit.custnum = cust_main.custnum     )
4837   + ( SELECT COALESCE( SUM(refund),  0 ) FROM cust_refund
4838         WHERE cust_refund.custnum = cust_main.custnum     )
4839 "; }
4840
4841 =item balance_date_sql [ START_TIME [ END_TIME [ OPTION => VALUE ... ] ] ]
4842
4843 Returns an SQL fragment to retreive the balance for this customer, optionally
4844 considering invoices with date earlier than START_TIME, and not
4845 later than END_TIME (total_owed_date minus total_unapplied_credits minus
4846 total_unapplied_payments).
4847
4848 Times are specified as SQL fragments or numeric
4849 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
4850 L<Date::Parse> for conversion functions.  The empty string can be passed
4851 to disable that time constraint completely.
4852
4853 Available options are:
4854
4855 =over 4
4856
4857 =item unapplied_date
4858
4859 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)
4860
4861 =item total
4862
4863 (unused.  obsolete?)
4864 set to true to remove all customer comparison clauses, for totals
4865
4866 =item where
4867
4868 (unused.  obsolete?)
4869 WHERE clause hashref (elements "AND"ed together) (typically used with the total option)
4870
4871 =item join
4872
4873 (unused.  obsolete?)
4874 JOIN clause (typically used with the total option)
4875
4876 =item cutoff
4877
4878 An absolute cutoff time.  Payments, credits, and refunds I<applied> after this 
4879 time will be ignored.  Note that START_TIME and END_TIME only limit the date 
4880 range for invoices and I<unapplied> payments, credits, and refunds.
4881
4882 =back
4883
4884 =cut
4885
4886 sub balance_date_sql {
4887   my( $class, $start, $end, %opt ) = @_;
4888
4889   my $cutoff = $opt{'cutoff'};
4890
4891   my $owed         = FS::cust_bill->owed_sql($cutoff);
4892   my $unapp_refund = FS::cust_refund->unapplied_sql($cutoff);
4893   my $unapp_credit = FS::cust_credit->unapplied_sql($cutoff);
4894   my $unapp_pay    = FS::cust_pay->unapplied_sql($cutoff);
4895
4896   my $j = $opt{'join'} || '';
4897
4898   my $owed_wh   = $class->_money_table_where( 'cust_bill',   $start,$end,%opt );
4899   my $refund_wh = $class->_money_table_where( 'cust_refund', $start,$end,%opt );
4900   my $credit_wh = $class->_money_table_where( 'cust_credit', $start,$end,%opt );
4901   my $pay_wh    = $class->_money_table_where( 'cust_pay',    $start,$end,%opt );
4902
4903   "   ( SELECT COALESCE(SUM($owed),         0) FROM cust_bill   $j $owed_wh   )
4904     + ( SELECT COALESCE(SUM($unapp_refund), 0) FROM cust_refund $j $refund_wh )
4905     - ( SELECT COALESCE(SUM($unapp_credit), 0) FROM cust_credit $j $credit_wh )
4906     - ( SELECT COALESCE(SUM($unapp_pay),    0) FROM cust_pay    $j $pay_wh    )
4907   ";
4908
4909 }
4910
4911 =item unapplied_payments_date_sql START_TIME [ END_TIME ]
4912
4913 Returns an SQL fragment to retreive the total unapplied payments for this
4914 customer, only considering payments with date earlier than START_TIME, and
4915 optionally not later than END_TIME.
4916
4917 Times are specified as SQL fragments or numeric
4918 UNIX timestamps; see L<perlfunc/"time">).  Also see L<Time::Local> and
4919 L<Date::Parse> for conversion functions.  The empty string can be passed
4920 to disable that time constraint completely.
4921
4922 Available options are:
4923
4924 =cut
4925
4926 sub unapplied_payments_date_sql {
4927   my( $class, $start, $end, %opt ) = @_;
4928
4929   my $cutoff = $opt{'cutoff'};
4930
4931   my $unapp_pay    = FS::cust_pay->unapplied_sql($cutoff);
4932
4933   my $pay_where = $class->_money_table_where( 'cust_pay', $start, $end,
4934                                                           'unapplied_date'=>1 );
4935
4936   " ( SELECT COALESCE(SUM($unapp_pay), 0) FROM cust_pay $pay_where ) ";
4937 }
4938
4939 =item _money_table_where TABLE START_TIME [ END_TIME [ OPTION => VALUE ... ] ]
4940
4941 Helper method for balance_date_sql; name (and usage) subject to change
4942 (suggestions welcome).
4943
4944 Returns a WHERE clause for the specified monetary TABLE (cust_bill,
4945 cust_refund, cust_credit or cust_pay).
4946
4947 If TABLE is "cust_bill" or the unapplied_date option is true, only
4948 considers records with date earlier than START_TIME, and optionally not
4949 later than END_TIME .
4950
4951 =cut
4952
4953 sub _money_table_where {
4954   my( $class, $table, $start, $end, %opt ) = @_;
4955
4956   my @where = ();
4957   push @where, "cust_main.custnum = $table.custnum" unless $opt{'total'};
4958   if ( $table eq 'cust_bill' || $opt{'unapplied_date'} ) {
4959     push @where, "$table._date <= $start" if defined($start) && length($start);
4960     push @where, "$table._date >  $end"   if defined($end)   && length($end);
4961   }
4962   push @where, @{$opt{'where'}} if $opt{'where'};
4963   my $where = scalar(@where) ? 'WHERE '. join(' AND ', @where ) : '';
4964
4965   $where;
4966
4967 }
4968
4969 #for dyanmic FS::$table->search in httemplate/misc/email_customers.html
4970 use FS::cust_main::Search;
4971 sub search {
4972   my $class = shift;
4973   FS::cust_main::Search->search(@_);
4974 }
4975
4976 =back
4977
4978 =head1 SUBROUTINES
4979
4980 =over 4
4981
4982 =item generate_letter CUSTOMER_OBJECT TEMPLATE_NAME OPTIONS
4983
4984 Generates a templated notification to the customer (see L<Text::Template>).
4985
4986 OPTIONS is a hash and may include
4987
4988 I<extra_fields> - a hashref of name/value pairs which will be substituted
4989    into the template.  These values may override values mentioned below
4990    and those from the customer record.
4991
4992 I<template_text> - if present, ignores TEMPLATE_NAME and uses the provided text
4993
4994 The following variables are available in the template instead of or in addition
4995 to the fields of the customer record.
4996
4997 I<$returnaddress> - the return address defaults to invoice_latexreturnaddress or company_address
4998
4999 =cut
5000
5001 # a lot like cust_bill::print_latex
5002 sub generate_letter {
5003   my ($self, $template, %options) = @_;
5004
5005   warn "Template $template does not exist" && return
5006     unless $conf->exists($template) || $options{'template_text'};
5007
5008   my $template_source = $options{'template_text'} 
5009                         ? [ $options{'template_text'} ] 
5010                         : [ map "$_\n", $conf->config($template) ];
5011
5012   my $letter_template = new Text::Template
5013                         ( TYPE       => 'ARRAY',
5014                           SOURCE     => $template_source,
5015                           DELIMITERS => [ '[@--', '--@]' ],
5016                         )
5017     or die "can't create new Text::Template object: Text::Template::ERROR";
5018
5019   $letter_template->compile()
5020     or die "can't compile template: Text::Template::ERROR";
5021
5022   my %letter_data = map { $_ => $self->$_ } $self->fields;
5023
5024   for (keys %{$options{extra_fields}}){
5025     $letter_data{$_} = $options{extra_fields}->{$_};
5026   }
5027
5028   unless(exists($letter_data{returnaddress})){
5029     my $retadd = join("\n", $conf->config_orbase( 'invoice_latexreturnaddress',
5030                                                   $self->agent_template)
5031                      );
5032     if ( length($retadd) ) {
5033       $letter_data{returnaddress} = $retadd;
5034     } elsif ( grep /\S/, $conf->config('company_address', $self->agentnum) ) {
5035       $letter_data{returnaddress} =
5036         join( "\n", map { s/( {2,})/'~' x length($1)/eg;
5037                           s/$/\\\\\*/;
5038                           $_;
5039                         }
5040                     ( $conf->config('company_name', $self->agentnum),
5041                       $conf->config('company_address', $self->agentnum),
5042                     )
5043         );
5044     } else {
5045       $letter_data{returnaddress} = '~';
5046     }
5047   }
5048
5049   $letter_data{conf_dir} = "$FS::UID::conf_dir/conf.$FS::UID::datasrc";
5050
5051   $letter_data{company_name} = $conf->config('company_name', $self->agentnum);
5052
5053   my $dir = $FS::UID::conf_dir."/cache.". $FS::UID::datasrc;
5054
5055   my $lh = new File::Temp( TEMPLATE => 'letter.'. $self->custnum. '.XXXXXXXX',
5056                            DIR      => $dir,
5057                            SUFFIX   => '.eps',
5058                            UNLINK   => 0,
5059                          ) or die "can't open temp file: $!\n";
5060   print $lh $conf->config_binary('logo.eps', $self->agentnum)
5061     or die "can't write temp file: $!\n";
5062   close $lh;
5063   $letter_data{'logo_file'} = $lh->filename;
5064
5065   my $fh = new File::Temp( TEMPLATE => 'letter.'. $self->custnum. '.XXXXXXXX',
5066                            DIR      => $dir,
5067                            SUFFIX   => '.tex',
5068                            UNLINK   => 0,
5069                          ) or die "can't open temp file: $!\n";
5070
5071   $letter_template->fill_in( OUTPUT => $fh, HASH => \%letter_data );
5072   close $fh;
5073   $fh->filename =~ /^(.*).tex$/ or die "unparsable filename: ". $fh->filename;
5074   return ($1, $letter_data{'logo_file'});
5075
5076 }
5077
5078 =item print_ps TEMPLATE 
5079
5080 Returns an postscript letter filled in from TEMPLATE, as a scalar.
5081
5082 =cut
5083
5084 sub print_ps {
5085   my $self = shift;
5086   my($file, $lfile) = $self->generate_letter(@_);
5087   my $ps = FS::Misc::generate_ps($file);
5088   unlink($file.'.tex');
5089   unlink($lfile);
5090
5091   $ps;
5092 }
5093
5094 =item print TEMPLATE
5095
5096 Prints the filled in template.
5097
5098 TEMPLATE is the name of a L<Text::Template> to fill in and print.
5099
5100 =cut
5101
5102 sub queueable_print {
5103   my %opt = @_;
5104
5105   my $self = qsearchs('cust_main', { 'custnum' => $opt{custnum} } )
5106     or die "invalid customer number: " . $opt{custnum};
5107
5108 #do not backport this change to 3.x
5109 #  my $error = $self->print( { 'template' => $opt{template} } );
5110   my $error = $self->print( $opt{'template'} );
5111   die $error if $error;
5112 }
5113
5114 sub print {
5115   my ($self, $template) = (shift, shift);
5116   do_print(
5117     [ $self->print_ps($template) ],
5118     'agentnum' => $self->agentnum,
5119   );
5120 }
5121
5122 #these three subs should just go away once agent stuff is all config overrides
5123
5124 sub agent_template {
5125   my $self = shift;
5126   $self->_agent_plandata('agent_templatename');
5127 }
5128
5129 sub agent_invoice_from {
5130   my $self = shift;
5131   $self->_agent_plandata('agent_invoice_from');
5132 }
5133
5134 sub _agent_plandata {
5135   my( $self, $option ) = @_;
5136
5137   #yuck.  this whole thing needs to be reconciled better with 1.9's idea of
5138   #agent-specific Conf
5139
5140   use FS::part_event::Condition;
5141   
5142   my $agentnum = $self->agentnum;
5143
5144   my $regexp = regexp_sql();
5145
5146   my $part_event_option =
5147     qsearchs({
5148       'select'    => 'part_event_option.*',
5149       'table'     => 'part_event_option',
5150       'addl_from' => q{
5151         LEFT JOIN part_event USING ( eventpart )
5152         LEFT JOIN part_event_option AS peo_agentnum
5153           ON ( part_event.eventpart = peo_agentnum.eventpart
5154                AND peo_agentnum.optionname = 'agentnum'
5155                AND peo_agentnum.optionvalue }. $regexp. q{ '(^|,)}. $agentnum. q{(,|$)'
5156              )
5157         LEFT JOIN part_event_condition
5158           ON ( part_event.eventpart = part_event_condition.eventpart
5159                AND part_event_condition.conditionname = 'cust_bill_age'
5160              )
5161         LEFT JOIN part_event_condition_option
5162           ON ( part_event_condition.eventconditionnum = part_event_condition_option.eventconditionnum
5163                AND part_event_condition_option.optionname = 'age'
5164              )
5165       },
5166       #'hashref'   => { 'optionname' => $option },
5167       #'hashref'   => { 'part_event_option.optionname' => $option },
5168       'extra_sql' =>
5169         " WHERE part_event_option.optionname = ". dbh->quote($option).
5170         " AND action = 'cust_bill_send_agent' ".
5171         " AND ( disabled IS NULL OR disabled != 'Y' ) ".
5172         " AND peo_agentnum.optionname = 'agentnum' ".
5173         " AND ( agentnum IS NULL OR agentnum = $agentnum ) ".
5174         " ORDER BY
5175            CASE WHEN part_event_condition_option.optionname IS NULL
5176            THEN -1
5177            ELSE ". FS::part_event::Condition->age2seconds_sql('part_event_condition_option.optionvalue').
5178         " END
5179           , part_event.weight".
5180         " LIMIT 1"
5181     });
5182     
5183   unless ( $part_event_option ) {
5184     return $self->agent->invoice_template || ''
5185       if $option eq 'agent_templatename';
5186     return '';
5187   }
5188
5189   $part_event_option->optionvalue;
5190
5191 }
5192
5193 sub process_o2m_qsearch {
5194   my $self = shift;
5195   my $table = shift;
5196   return qsearch($table, @_) unless $table eq 'contact';
5197
5198   my $hashref = shift;
5199   my %hash = %$hashref;
5200   ( my $custnum = delete $hash{'custnum'} ) =~ /^(\d+)$/
5201     or die 'guru meditation #4343';
5202
5203   qsearch({ 'table'     => 'contact',
5204             'addl_from' => 'LEFT JOIN cust_contact USING ( contactnum )',
5205             'hashref'   => \%hash,
5206             'extra_sql' => ( keys %hash ? ' AND ' : ' WHERE ' ).
5207                            " cust_contact.custnum = $custnum "
5208          });                
5209 }
5210
5211 sub process_o2m_qsearchs {
5212   my $self = shift;
5213   my $table = shift;
5214   return qsearchs($table, @_) unless $table eq 'contact';
5215
5216   my $hashref = shift;
5217   my %hash = %$hashref;
5218   ( my $custnum = delete $hash{'custnum'} ) =~ /^(\d+)$/
5219     or die 'guru meditation #2121';
5220
5221   qsearchs({ 'table'     => 'contact',
5222              'addl_from' => 'LEFT JOIN cust_contact USING ( contactnum )',
5223              'hashref'   => \%hash,
5224              'extra_sql' => ( keys %hash ? ' AND ' : ' WHERE ' ).
5225                             " cust_contact.custnum = $custnum "
5226           });                
5227 }
5228
5229 =item queued_bill 'custnum' => CUSTNUM [ , OPTION => VALUE ... ]
5230
5231 Subroutine (not a method), designed to be called from the queue.
5232
5233 Takes a list of options and values.
5234
5235 Pulls up the customer record via the custnum option and calls bill_and_collect.
5236
5237 =cut
5238
5239 sub queued_bill {
5240   my (%args) = @_; #, ($time, $invoice_time, $check_freq, $resetup) = @_;
5241
5242   my $cust_main = qsearchs( 'cust_main', { custnum => $args{'custnum'} } );
5243   warn 'bill_and_collect custnum#'. $cust_main->custnum. "\n";#log custnum w/pid
5244
5245   #without this errors don't get rolled back
5246   $args{'fatal'} = 1; # runs from job queue, will be caught
5247
5248   $cust_main->bill_and_collect( %args );
5249 }
5250
5251 =item queued_collect 'custnum' => CUSTNUM [ , OPTION => VALUE ... ]
5252
5253 Like queued_bill, but instead of C<bill_and_collect>, just runs the 
5254 C<collect> part.  This is used in batch tax calculation, where invoice 
5255 generation and collection events have to be completely separated.
5256
5257 =cut
5258
5259 sub queued_collect {
5260   my (%args) = @_;
5261   my $cust_main = FS::cust_main->by_key($args{'custnum'});
5262   
5263   $cust_main->collect(%args);
5264 }
5265
5266 sub process_bill_and_collect {
5267   my $job = shift;
5268   my $param = shift;
5269   my $cust_main = qsearchs( 'cust_main', { custnum => $param->{'custnum'} } )
5270       or die "custnum '$param->{custnum}' not found!\n";
5271   $param->{'job'}   = $job;
5272   $param->{'fatal'} = 1; # runs from job queue, will be caught
5273   $param->{'retry'} = 1;
5274
5275   $cust_main->bill_and_collect( %$param );
5276 }
5277
5278 #starting to take quite a while for big dbs
5279 #   (JRNL: journaled so it only happens once per database)
5280 # - seq scan of h_cust_main (yuck), but not going to index paycvv, so
5281 # JRNL seq scan of cust_main on signupdate... index signupdate?  will that help?
5282 # JRNL seq scan of cust_main on paydate... index on substrings?  maybe set an
5283 # JRNL seq scan of cust_main on payinfo.. certainly not going toi ndex that...
5284 # JRNL leading/trailing spaces in first, last, company
5285 # JRNL migrate to cust_payby
5286 # - otaker upgrade?  journal and call it good?  (double check to make sure
5287 #    we're not still setting otaker here)
5288 #
5289 #only going to get worse with new location stuff...
5290
5291 sub _upgrade_data { #class method
5292   my ($class, %opts) = @_;
5293
5294   my @statements = ();
5295
5296   #this seems to be the only expensive one.. why does it take so long?
5297   unless ( FS::upgrade_journal->is_done('cust_main__signupdate') ) {
5298     push @statements,
5299       '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';
5300     FS::upgrade_journal->set_done('cust_main__signupdate');
5301   }
5302
5303   my $t = time;
5304   foreach my $sql ( @statements ) {
5305     my $sth = dbh->prepare($sql) or die dbh->errstr;
5306     $sth->execute or die $sth->errstr;
5307     #warn ( (time - $t). " seconds\n" );
5308     #$t = time;
5309   }
5310
5311   local($ignore_expired_card) = 1;
5312   local($ignore_banned_card) = 1;
5313   local($skip_fuzzyfiles) = 1;
5314   local($import) = 1; #prevent automatic geocoding (need its own variable?)
5315
5316   FS::cust_main::Location->_upgrade_data(%opts);
5317
5318   unless ( FS::upgrade_journal->is_done('cust_main__trimspaces') ) {
5319
5320     foreach my $cust_main ( qsearch({
5321       'table'     => 'cust_main', 
5322       'hashref'   => {},
5323       'extra_sql' => 'WHERE '.
5324                        join(' OR ',
5325                          map "$_ LIKE ' %' OR $_ LIKE '% ' OR $_ LIKE '%  %'",
5326                            qw( first last company )
5327                        ),
5328     }) ) {
5329       my $error = $cust_main->replace;
5330       die $error if $error;
5331     }
5332
5333     FS::upgrade_journal->set_done('cust_main__trimspaces');
5334
5335   }
5336
5337   $class->_upgrade_otaker(%opts);
5338
5339 }
5340
5341 =back
5342
5343 =head1 BUGS
5344
5345 The delete method.
5346
5347 The delete method should possibly take an FS::cust_main object reference
5348 instead of a scalar customer number.
5349
5350 Bill and collect options should probably be passed as references instead of a
5351 list.
5352
5353 There should probably be a configuration file with a list of allowed credit
5354 card types.
5355
5356 No multiple currency support (probably a larger project than just this module).
5357
5358 Birthdates rely on negative epoch values.
5359
5360 B<collect> I<invoice_time> should be renamed I<time>, like B<bill>.
5361
5362 =head1 SEE ALSO
5363
5364 L<FS::Record>, L<FS::cust_pkg>, L<FS::cust_bill>, L<FS::cust_credit>
5365 L<FS::agent>, L<FS::part_referral>, L<FS::cust_main_county>,
5366 L<FS::cust_main_invoice>, L<FS::UID>, schema.html from the base documentation.
5367
5368 =cut
5369
5370 1;
5371