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