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