switch birthdate to DateTime
[freeside.git] / httemplate / edit / process / cust_main.cgi
1 %
2 %
3 %my $error = '';
4 %
5 %#unmunge stuff
6 %
7 %$cgi->param('tax','') unless defined $cgi->param('tax');
8 %
9 %$cgi->param('refnum', (split(/:/, ($cgi->param('refnum'))[0] ))[0] );
10 %
11 %#my $payby = $cgi->param('payby');
12 %my $payby = $cgi->param('select'); # XXX key
13 %
14 %my %noauto = (
15 %  'CARD' => 'DCRD',
16 %  'CHEK' => 'DCHK',
17 %);
18 %$payby = $noauto{$payby}
19 %  if ! $cgi->param('payauto') && exists $noauto{$payby};
20 %
21 %$cgi->param('payby', $payby);
22 %
23 %if ( $payby ) {
24 %  if ( $payby eq 'CHEK' || $payby eq 'DCHK' ) {
25 %    $cgi->param('payinfo',
26 %      $cgi->param('payinfo1'). '@'. $cgi->param('payinfo2') );
27 %  }
28 %  $cgi->param('paydate',
29 %    $cgi->param( 'exp_month' ). '-'. $cgi->param( 'exp_year' ) );
30 %}
31 %
32 %my @invoicing_list = split( /\s*\,\s*/, $cgi->param('invoicing_list') );
33 %push @invoicing_list, 'POST' if $cgi->param('invoicing_list_POST');
34 %push @invoicing_list, 'FAX' if $cgi->param('invoicing_list_FAX');
35 %$cgi->param('invoicing_list', join(',', @invoicing_list) );
36 %
37 %
38 %#create new record object
39 %
40 %my $new = new FS::cust_main ( {
41 %  map {
42 %    $_, scalar($cgi->param($_))
43 %#  } qw(custnum agentnum last first ss company address1 address2 city county
44 %#       state zip daytime night fax payby payinfo paydate payname tax
45 %#       otaker refnum)
46 %  } fields('cust_main')
47 %} );
48 %
49 %if ( defined($cgi->param('same')) && $cgi->param('same') eq "Y" ) {
50 %  $new->setfield("ship_$_", '') foreach qw(
51 %    last first company address1 address2 city county state zip
52 %    country daytime night fax
53 %  );
54 %}
55 %
56 %if ( $cgi->param('birthdate') && $cgi->param('birthdate') =~ /^([ 0-9\-\/]{0,10})$/ ) {
57 %  eval "use DateTime::Format::Strptime;";
58 %  die $@ if $@;
59 %  my $conf = new FS::Conf;
60 %  my $format = $conf->config('date_format') || "%m/%d/%Y";
61 %  my $parser = DateTime::Format::Strptime->new(pattern => $format,
62 %                                               time_zone => 'floating',
63 %                                              );
64 %  $new->setfield('birthdate', $parser->parse_datetime($1)->epoch);
65 %}
66 %
67 %$new->setfield('paid', $cgi->param('paid') )
68 %  if $cgi->param('paid');
69 %
70 %#perhaps this stuff should go to cust_main.pm
71 %my $cust_pkg = '';
72 %my $svc_acct = '';
73 %if ( $new->custnum eq '' ) {
74 %
75 %  if ( $cgi->param('pkgpart_svcpart') ) {
76 %    my $x = $cgi->param('pkgpart_svcpart');
77 %    $x =~ /^(\d+)_(\d+)$/ or die "illegal pkgpart_svcpart $x\n";
78 %    my($pkgpart, $svcpart) = ($1, $2);
79 %    #false laziness: copied from FS::cust_pkg::order (which should become a
80 %    #FS::cust_main method)
81 %    my(%part_pkg);
82 %    # generate %part_pkg
83 %    # $part_pkg{$pkgpart} is true iff $custnum may purchase $pkgpart
84 %    my $agent = qsearchs('agent',{'agentnum'=> $new->agentnum });
85 %       #my($type_pkgs);
86 %       #foreach $type_pkgs ( qsearch('type_pkgs',{'typenum'=> $agent->typenum }) ) {
87 %       #  my($pkgpart)=$type_pkgs->pkgpart;
88 %       #  $part_pkg{$pkgpart}++;
89 %       #}
90 %    # $pkgpart_href->{PKGPART} is true iff $custnum may purchase $pkgpart
91 %    my $pkgpart_href = $agent->pkgpart_hashref;
92 %    #eslaf
93 %
94 %    # this should wind up in FS::cust_pkg!
95 %    $error ||= "Agent ". $new->agentnum. " (type ". $agent->typenum. ") can't ".
96 %               "purchase pkgpart ". $pkgpart
97 %      #unless $part_pkg{ $pkgpart };
98 %      unless $pkgpart_href->{ $pkgpart };
99 %
100 %    $cust_pkg = new FS::cust_pkg ( {
101 %      #later         'custnum' => $custnum,
102 %      'pkgpart' => $pkgpart,
103 %    } );
104 %    #$error ||= $cust_pkg->check;
105 %
106 %    #$cust_svc = new FS::cust_svc ( { 'svcpart' => $svcpart } );
107 %
108 %    #$error ||= $cust_svc->check;
109 %
110 %    $svc_acct = new FS::svc_acct ( {
111 %                                     'svcpart'   => $svcpart,
112 %                                     'username'  => $cgi->param('username'),
113 %                                     '_password' => $cgi->param('_password'),
114 %                                     'popnum'    => $cgi->param('popnum'),
115 %                                   } );
116 %
117 %    #and just in case you were silly
118 %    $svc_acct->svcpart($svcpart);
119 %    $svc_acct->username($cgi->param('username'));
120 %    $svc_acct->_password($cgi->param('_password'));
121 %    $svc_acct->popnum($cgi->param('popnum'));
122 %
123 %    #$error ||= $svc_acct->check;
124 %
125 %  } elsif ( $cgi->param('username') ) { #good thing to catch
126 %    $error = "Can't assign username without a package!";
127 %  }
128 %
129 %  use Tie::RefHash;
130 %  tie my %hash, 'Tie::RefHash';
131 %  %hash = ( $cust_pkg => [ $svc_acct ] ) if $cust_pkg;
132 %  $error ||= $new->insert( \%hash, \@invoicing_list );
133 %
134 %  my $conf = new FS::Conf;
135 %  if ( $conf->exists('backend-realtime') && ! $error ) {
136 %
137 %    my $berror = $new->bill;
138 %    $new->apply_payments;
139 %    $new->apply_credits;
140 %    $berror ||= $new->collect( 'realtime' => 1 );
141 %    warn "Warning, error billing during backend-realtime: $berror" if $berror;
142 %
143 %  }
144 %  
145 %} else { #create old record object
146 %
147 %  my $old = qsearchs( 'cust_main', { 'custnum' => $new->custnum } ); 
148 %  $error ||= "Old record not found!" unless $old;
149 %  if ( defined dbdef->table('cust_main')->column('paycvv')
150 %       && length($old->paycvv)
151 %       && $new->paycvv =~ /^\s*\*+\s*$/ ) {
152 %    $new->paycvv($old->paycvv);
153 %  }
154 %  $error ||= $new->replace($old, \@invoicing_list);
155 %  
156 %}
157 %
158 %if ( $error ) {
159 %  $cgi->param('error', $error);
160 %  print $cgi->redirect(popurl(2). "cust_main.cgi?". $cgi->query_string );
161 %} else { 
162 %  print $cgi->redirect(popurl(3). "view/cust_main.cgi?". $new->custnum);
163 %} 
164 %
165
166