add DateTime as a proper rather than hidden dependency
[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 % delete( $new->hashref->{'agent_custid'} )
50 %   unless $new->hashref->{'agent_custid'};
51 %
52 %if ( defined($cgi->param('same')) && $cgi->param('same') eq "Y" ) {
53 %  $new->setfield("ship_$_", '') foreach qw(
54 %    last first company address1 address2 city county state zip
55 %    country daytime night fax
56 %  );
57 %}
58 %
59 %if ( $cgi->param('birthdate') && $cgi->param('birthdate') =~ /^([ 0-9\-\/]{0,10})$/ ) {
60 %  my $conf = new FS::Conf;
61 %  my $format = $conf->config('date_format') || "%m/%d/%Y";
62 %  my $parser = DateTime::Format::Strptime->new(pattern => $format,
63 %                                               time_zone => 'floating',
64 %                                              );
65 %  $new->setfield('birthdate', $parser->parse_datetime($1)->epoch);
66 %}
67 %
68 %$new->setfield('paid', $cgi->param('paid') )
69 %  if $cgi->param('paid');
70 %
71 %#perhaps this stuff should go to cust_main.pm
72 %my $cust_pkg = '';
73 %my $svc_acct = '';
74 %if ( $new->custnum eq '' ) {
75 %
76 %  if ( $cgi->param('pkgpart_svcpart') ) {
77 %    my $x = $cgi->param('pkgpart_svcpart');
78 %    $x =~ /^(\d+)_(\d+)$/ or die "illegal pkgpart_svcpart $x\n";
79 %    my($pkgpart, $svcpart) = ($1, $2);
80 %    #false laziness: copied from FS::cust_pkg::order (which should become a
81 %    #FS::cust_main method)
82 %    my(%part_pkg);
83 %    # generate %part_pkg
84 %    # $part_pkg{$pkgpart} is true iff $custnum may purchase $pkgpart
85 %    my $agent = qsearchs('agent',{'agentnum'=> $new->agentnum });
86 %       #my($type_pkgs);
87 %       #foreach $type_pkgs ( qsearch('type_pkgs',{'typenum'=> $agent->typenum }) ) {
88 %       #  my($pkgpart)=$type_pkgs->pkgpart;
89 %       #  $part_pkg{$pkgpart}++;
90 %       #}
91 %    # $pkgpart_href->{PKGPART} is true iff $custnum may purchase $pkgpart
92 %    my $pkgpart_href = $agent->pkgpart_hashref;
93 %    #eslaf
94 %
95 %    # this should wind up in FS::cust_pkg!
96 %    $error ||= "Agent ". $new->agentnum. " (type ". $agent->typenum. ") can't ".
97 %               "purchase pkgpart ". $pkgpart
98 %      #unless $part_pkg{ $pkgpart };
99 %      unless $pkgpart_href->{ $pkgpart };
100 %
101 %    $cust_pkg = new FS::cust_pkg ( {
102 %      #later         'custnum' => $custnum,
103 %      'pkgpart' => $pkgpart,
104 %    } );
105 %    #$error ||= $cust_pkg->check;
106 %
107 %    #$cust_svc = new FS::cust_svc ( { 'svcpart' => $svcpart } );
108 %
109 %    #$error ||= $cust_svc->check;
110 %
111 %    $svc_acct = new FS::svc_acct ( {
112 %                                     'svcpart'   => $svcpart,
113 %                                     'username'  => $cgi->param('username'),
114 %                                     '_password' => $cgi->param('_password'),
115 %                                     'popnum'    => $cgi->param('popnum'),
116 %                                   } );
117 %
118 %    #and just in case you were silly
119 %    $svc_acct->svcpart($svcpart);
120 %    $svc_acct->username($cgi->param('username'));
121 %    $svc_acct->_password($cgi->param('_password'));
122 %    $svc_acct->popnum($cgi->param('popnum'));
123 %
124 %    #$error ||= $svc_acct->check;
125 %
126 %  } elsif ( $cgi->param('username') ) { #good thing to catch
127 %    $error = "Can't assign username without a package!";
128 %  }
129 %
130 %  use Tie::RefHash;
131 %  tie my %hash, 'Tie::RefHash';
132 %  %hash = ( $cust_pkg => [ $svc_acct ] ) if $cust_pkg;
133 %  $error ||= $new->insert( \%hash, \@invoicing_list );
134 %
135 %  my $conf = new FS::Conf;
136 %  if ( $conf->exists('backend-realtime') && ! $error ) {
137 %
138 %    my $berror = $new->bill;
139 %    $new->apply_payments;
140 %    $new->apply_credits;
141 %    $berror ||= $new->collect( 'realtime' => 1 );
142 %    warn "Warning, error billing during backend-realtime: $berror" if $berror;
143 %
144 %  }
145 %  
146 %} else { #create old record object
147 %
148 %  my $old = qsearchs( 'cust_main', { 'custnum' => $new->custnum } ); 
149 %  $error ||= "Old record not found!" unless $old;
150 %  if ( defined dbdef->table('cust_main')->column('paycvv')
151 %       && length($old->paycvv)
152 %       && $new->paycvv =~ /^\s*\*+\s*$/ ) {
153 %    $new->paycvv($old->paycvv);
154 %  }
155 %  if ($new->payby =~ /CARD|DCRD|CHEK|DCHK/ && $new->payinfo =~ /xx/) {
156 %    $new->payinfo($old->payinfo);
157 %  }
158 %  $error ||= $new->replace($old, \@invoicing_list);
159 %  
160 %}
161 %
162 %if ( $error ) {
163 %  $cgi->param('error', $error);
164 %  print $cgi->redirect(popurl(2). "cust_main.cgi?". $cgi->query_string );
165 %} else { 
166 %  print $cgi->redirect(popurl(3). "view/cust_main.cgi?". $new->custnum);
167 %} 
168 %
169
170