%
my $conf = new FS::Conf;
print header("Customer View", menubar(
  'Main Menu' => popurl(2)
));
die "No customer specified (bad URL)!" unless $cgi->keywords;
my($query) = $cgi->keywords; # needs parens with my, ->keywords returns array
$query =~ /^(\d+)$/;
my $custnum = $1;
my $cust_main = qsearchs('cust_main',{'custnum'=>$custnum});
die "Customer not found!" unless $cust_main;
print qq!Edit this customer!;
print qq! |  Delete this customer!
  if $conf->exists('deletecustomers');
unless ( $conf->exists('disable_customer_referrals') ) {
  print qq! | !,
        qq!Refer a new customer!;
  print qq! | !,
        qq!View this customer's referrals!;
}
print '
';
my $signupurl = $conf->config('signupurl');
if ( $signupurl ) {
print "This customer's signup URL: ".
      "$signupurl?ref=$custnum
";
}
print '';
print &itable(), '
';
print '| ';
  print "Billing address", &ntable("#cccccc"), " | 
| ",
        &ntable("#cccccc",2),
    ' | 
| Contact name',
      ' | ',
      $cust_main->last, ', ', $cust_main->first,
      '';
print ' | SS# | ',
      $cust_main->ss || ' ', ''
  if $conf->exists('show_ss');
print ' | 
',
    '| Company | ',
      $cust_main->company,
      ' | 
',
    '| Address | ',
      $cust_main->address1,
      ' | 
',
  ;
  print '|  | ',
        $cust_main->address2, ' | 
'
    if $cust_main->address2;
  print '| City | ',
          $cust_main->city,
          ' | State | ',
          $cust_main->state,
          ' | Zip | ',
          $cust_main->zip, ' | 
',
        '| Country | ',
          $cust_main->country,
          ' | 
',
  ;
  print '| Day Phone | ',
          $cust_main->daytime || ' ', ' | 
',
       '| Night Phone | ',
          $cust_main->night || ' ', ' | 
',
        '| Fax | ',
          $cust_main->fax || ' ', ' | 
',
        '', ""
  ;
  if ( defined $cust_main->dbdef_table->column('ship_last') ) {
    my $pre = $cust_main->ship_last ? 'ship_' : '';
    print "
Service address", &ntable("#cccccc"), "| ",
          &ntable("#cccccc",2),
      ' | 
| Contact name',
        ' | ',
        $cust_main->get("${pre}last"), ', ', $cust_main->get("${pre}first"),
        ' | 
',
      '| Company | ',
        $cust_main->get("${pre}company"),
        ' | 
',
      '| Address | ',
        $cust_main->get("${pre}address1"),
        ' | 
',
    ;
    print '|  | ',
          $cust_main->get("${pre}address2"), ' | 
'
      if $cust_main->get("${pre}address2");
    print '| City | ',
            $cust_main->get("${pre}city"),
            ' | State | ',
            $cust_main->get("${pre}state"),
            ' | Zip | ',
            $cust_main->get("${pre}zip"), ' | 
',
          '| Country | ',
            $cust_main->get("${pre}country"),
            ' | 
',
    ;
    print '| Day Phone',
          ' | ',
            $cust_main->get("${pre}daytime") || ' ', ' | 
',
          '| Night Phone'.
          ' | ',
            $cust_main->get("${pre}night") || ' ', ' | 
',
          '| Fax | ',
            $cust_main->get("${pre}fax") || ' ', ' | 
',
          '', ""
    ;
  }
print '';
print '';
  print &ntable("#cccccc"), " | | ", &ntable("#cccccc",2),
        ' | 
| Customer number | ',
        $custnum, ' | 
',
  ;
  my @agents = qsearch( 'agent', {} );
  my $agent;
  unless ( scalar(@agents) == 1 ) {
    $agent = qsearchs('agent',{ 'agentnum' => $cust_main->agentnum } );
    print '| Agent | ',
        $agent->agentnum, ": ", $agent->agent, ' | 
';
  } else {
    $agent = $agents[0];
  }
  my @referrals = qsearch( 'part_referral', {} );
  unless ( scalar(@referrals) == 1 ) {
    my $referral = qsearchs('part_referral', {
      'refnum' => $cust_main->refnum
    } );
    print '| Referral | ',
          $referral->refnum, ": ", $referral->referral, ' | 
';
  }
  print '| Order taker | ',
    $cust_main->otaker, ' | 
';
  print '| Referring Customer | ';
  my $referring_cust_main = '';
  if ( $cust_main->referral_custnum
       && ( $referring_cust_main =
            qsearchs('cust_main', { custnum => $cust_main->referral_custnum } )
          )
     ) {
    print ''.
          $cust_main->referral_custnum. ': '.
          ( $referring_cust_main->company
              ? $referring_cust_main->company. ' ('.
                  $referring_cust_main->last. ', '. $referring_cust_main->first.
                  ')'
              : $referring_cust_main->last. ', '. $referring_cust_main->first
          ).
          '';
  }
  print ' | 
';
  print '';
print '
';
  my @invoicing_list = $cust_main->invoicing_list;
  print "Billing information (",
       qq!!, "Bill now)",
        &ntable("#cccccc"), "| ", &ntable("#cccccc",2),
        ' | 
| Tax exempt | ',
        $cust_main->tax ? 'yes' : 'no',
        ' | 
',
        '| Postal invoices | ',
        ( grep { $_ eq 'POST' } @invoicing_list ) ? 'yes' : 'no',
        ' | 
',
        '| Email invoices | ',
        join(', ', grep { $_ ne 'POST' } @invoicing_list ) || 'no',
        ' | 
',
        '| Billing type | ',
  ;
  if ( $cust_main->payby eq 'CARD' ) {
    my $payinfo = $cust_main->payinfo;
    $payinfo = substr($payinfo,0,4). 'x'x(length($payinfo)-4);
    print 'Credit card | 
',
          '| Card number | ',
          $payinfo, ' | 
',
          '| Expiration | ',
          $cust_main->paydate, ' | 
',
          '| Name on card | ',
          $cust_main->payname, ' | 
'
    ;
  } elsif ( $cust_main->payby eq 'BILL' ) {
    print 'Billing';
    print '| P.O. | ',
          $cust_main->payinfo, ' | 
',
      if $cust_main->payinfo;
    print '| Expiration | ',
          $cust_main->paydate, ' | 
',
          '| Attention | ',
          $cust_main->payname, ' | 
',
    ;
  } elsif ( $cust_main->payby eq 'COMP' ) {
    print 'Complimentary',
          '| Authorized by | ',
          $cust_main->payinfo, ' | 
',
          '| Expiration | ',
          $cust_main->paydate, ' | 
',
    ;
  }
  print "";
print '';
if ( defined $cust_main->dbdef_table->column('comments')
     && $cust_main->comments )
{
  print "
Comments", &ntable("#cccccc"), "| ",
        &ntable("#cccccc",2),
        ' | 
| ', $cust_main->comments,
        ' | 
';
}
print '';
print '
'.
  '