customer tags, RT#9192
[freeside.git] / httemplate / edit / process / cust_main.cgi
1 % if ( $error ) {
2 %   $cgi->param('error', $error);
3 %
4 <% $cgi->redirect(popurl(2). "cust_main.cgi?". $cgi->query_string ) %>
5 %
6 % } else { 
7 %
8 <% $cgi->redirect(popurl(3). "view/cust_main.cgi?". $new->custnum) %>
9 %
10 % }
11 <%once>
12
13 my $me = '[edit/process/cust_main.cgi]';
14 my $DEBUG = 0;
15
16 </%once>
17 <%init>
18
19 die "access denied"
20   unless $FS::CurrentUser::CurrentUser->access_right('Edit customer');
21
22 my $conf = new FS::Conf;
23
24 my $error = '';
25
26 #unmunge stuff
27
28 $cgi->param('tax','') unless defined $cgi->param('tax');
29
30 $cgi->param('refnum', (split(/:/, ($cgi->param('refnum'))[0] ))[0] );
31
32 my $payby = $cgi->param('payby');
33
34 my %noauto = (
35   'CARD' => 'DCRD',
36   'CHEK' => 'DCHK',
37 );
38 $payby = $noauto{$payby}
39   if ! $cgi->param('payauto') && exists $noauto{$payby};
40
41 $cgi->param('payby', $payby);
42
43 if ( $payby ) {
44   if ( $payby eq 'CHEK' || $payby eq 'DCHK' ) {
45     $cgi->param('payinfo',
46       $cgi->param('payinfo1'). '@'. $cgi->param('payinfo2') );
47   }
48   $cgi->param('paydate',
49     $cgi->param( 'exp_month' ). '-'. $cgi->param( 'exp_year' ) );
50 }
51
52 my @invoicing_list = split( /\s*\,\s*/, $cgi->param('invoicing_list') );
53 push @invoicing_list, 'POST' if $cgi->param('invoicing_list_POST');
54 push @invoicing_list, 'FAX' if $cgi->param('invoicing_list_FAX');
55 $cgi->param('invoicing_list', join(',', @invoicing_list) );
56
57
58 #create new record object
59
60 my $new = new FS::cust_main ( {
61   map {
62     $_, scalar($cgi->param($_))
63 #  } qw(custnum agentnum last first ss company address1 address2 city county
64 #       state zip daytime night fax payby payinfo paydate payname tax
65 #       otaker refnum)
66   } fields('cust_main')
67 } );
68
69 if ( defined($cgi->param('same')) && $cgi->param('same') eq "Y" ) {
70   $new->setfield("ship_$_", '') foreach qw(
71     last first company address1 address2 city county state zip
72     country daytime night fax
73   );
74 }
75
76 $new->tagnum( [ $cgi->param('tagnum') ] );
77
78 my %usedatetime = ( 'birthdate' => 1 );
79
80 foreach my $dfield (qw( birthdate signupdate )) {
81
82   if ( $cgi->param($dfield) && $cgi->param($dfield) =~ /^([ 0-9\-\/]{0,10})$/) {
83
84     my $value = $1;
85     my $parsed = '';
86
87     if ( exists $usedatetime{$dfield} && $usedatetime{$dfield} ) {
88
89       my $format = $conf->config('date_format') || "%m/%d/%Y";
90       my $parser = DateTime::Format::Strptime->new( pattern   => $format,
91                                                     time_zone => 'floating',
92                                                   );
93       my $dt = $parser->parse_datetime($value);
94       if ( $dt ) {
95         $parsed = $dt->epoch;
96       } else {
97     #    $error ||= $cgi->param('birthdate') . " is an invalid birthdate:" . $parser->errmsg;
98         $error ||= "Invalid $dfield: $value";
99       }
100
101     } else {
102
103       $parsed = parse_datetime($value)
104         or $error ||= "Invalid $dfield: $value";
105
106     }
107
108     $new->setfield( $dfield, $parsed );
109     $cgi->param(    $dfield, $parsed );
110
111   }
112
113 }
114
115 $new->setfield('paid', $cgi->param('paid') )
116   if $cgi->param('paid');
117
118 my @exempt_groups = grep /\S/, $conf->config('tax-cust_exempt-groups');
119 my @tax_exempt = grep { $cgi->param("tax_$_") eq 'Y' } @exempt_groups;
120
121 #perhaps this stuff should go to cust_main.pm
122 if ( $new->custnum eq '' ) {
123
124   my $cust_pkg = '';
125   my $svc;
126
127   if ( $cgi->param('pkgpart_svcpart') ) {
128
129     my $x = $cgi->param('pkgpart_svcpart');
130     $x =~ /^(\d+)_(\d+)$/ or die "illegal pkgpart_svcpart $x\n";
131     my($pkgpart, $svcpart) = ($1, $2);
132     my $part_pkg = qsearchs('part_pkg', { 'pkgpart' => $pkgpart } );
133     #false laziness: copied from FS::cust_pkg::order (which should become a
134     #FS::cust_main method)
135     my(%part_pkg);
136     # generate %part_pkg
137     # $part_pkg{$pkgpart} is true iff $custnum may purchase $pkgpart
138     my $agent = qsearchs('agent',{'agentnum'=> $new->agentnum });
139
140     if ( $agent ) {
141       # $pkgpart_href->{PKGPART} is true iff $custnum may purchase $pkgpart
142       my $pkgpart_href = $agent->pkgpart_hashref
143         if $agent;
144       #eslaf
145
146       # this should wind up in FS::cust_pkg!
147       $error ||= "Agent ". $new->agentnum. " (type ". $agent->typenum.
148                  ") can't purchase pkgpart ". $pkgpart
149         #unless $part_pkg{ $pkgpart };
150         unless $pkgpart_href->{ $pkgpart }
151             || $agent->agentnum == $part_pkg->agentnum;
152     } else {
153       $error = 'Select agent';
154     }
155
156     $cust_pkg = new FS::cust_pkg ( {
157       #later         'custnum' => $custnum,
158       'pkgpart' => $pkgpart,
159     } );
160     #$error ||= $cust_pkg->check;
161
162     #$cust_svc = new FS::cust_svc ( { 'svcpart' => $svcpart } );
163
164     #$error ||= $cust_svc->check;
165
166     my $part_svc = qsearchs('part_svc', { 'svcpart' => $svcpart } );
167     my $svcdb = $part_svc->svcdb;
168
169     if ( $svcdb eq 'svc_acct' ) {
170
171       my %svc_acct = (
172                        'svcpart'   => $svcpart,
173                        'username'  => scalar($cgi->param('username')),
174                        '_password' => scalar($cgi->param('_password')),
175                        'popnum'    => scalar($cgi->param('popnum')),
176                      );
177       $svc_acct{'domsvc'} = $cgi->param('domsvc')
178         if $cgi->param('domsvc');
179
180       $svc = new FS::svc_acct \%svc_acct;
181
182       #and just in case you were silly
183       $svc->svcpart($svcpart);
184       $svc->username($cgi->param('username'));
185       $svc->_password($cgi->param('_password'));
186       $svc->popnum($cgi->param('popnum'));
187
188     } elsif ( $svcdb eq 'svc_phone' ) {
189
190       my %svc_phone = (
191                         'svcpart' => $svcpart,
192                         map { $_ => scalar($cgi->param($_)) }
193                           qw( countrycode phonenum sip_password pin phone_name )
194                       );
195
196       $svc = new FS::svc_phone \%svc_phone;
197
198     } else {
199       die "$svcdb not handled on new customer yet";
200     }
201
202     #$error ||= $svc_acct->check;
203
204   }
205
206   use Tie::RefHash;
207   tie my %hash, 'Tie::RefHash';
208   %hash = ( $cust_pkg => [ $svc ] ) if $cust_pkg;
209   $error ||= $new->insert( \%hash, \@invoicing_list,
210                            'tax_exemption' => \@tax_exempt,
211                          );
212
213   my $conf = new FS::Conf;
214   if ( $conf->exists('backend-realtime') && ! $error ) {
215
216     my $berror =    $new->bill
217                  || $new->apply_payments_and_credits
218                  || $new->collect( 'realtime' => 1 );
219     warn "Warning, error billing during backend-realtime: $berror" if $berror;
220
221   }
222   
223 } else { #create old record object
224
225   my $old = qsearchs( 'cust_main', { 'custnum' => $new->custnum } ); 
226   $error ||= "Old record not found!" unless $old;
227   if ( length($old->paycvv) && $new->paycvv =~ /^\s*\*+\s*$/ ) {
228     $new->paycvv($old->paycvv);
229   }
230   if ($new->ss =~ /xx/) {
231     $new->ss($old->ss);
232   }
233   if ($new->stateid =~ /^xxx/) {
234     $new->stateid($old->stateid);
235   }
236   if ($new->payby =~ /^(CARD|DCRD)$/ && $new->payinfo =~ /xx/) {
237     $new->payinfo($old->payinfo);
238   } elsif ($new->payby =~ /^(CHEK|DCHK)$/ && $new->payinfo =~ /xx/) {
239     #fix for #3085 "edit of customer's routing code only surprisingly causes
240     #nothing to happen...
241     # this probably won't do the right thing when we don't have the
242     # public key (can't actually get the real $old->payinfo)
243     my($new_account, $new_aba) = split('@', $new->payinfo);
244     my($old_account, $old_aba) = split('@', $old->payinfo);
245     $new_account = $old_account if $new_account =~ /xx/;
246     $new_aba     = $old_aba     if $new_aba     =~ /xx/;
247     $new->payinfo($new_account.'@'.$new_aba);
248   }
249
250   warn "$me calling $new -> replace( $old, \ @invoicing_list )" if $DEBUG;
251   local($FS::cust_main::DEBUG) = $DEBUG if $DEBUG;
252   local($FS::Record::DEBUG)    = $DEBUG if $DEBUG;
253
254   $error ||= $new->replace( $old, \@invoicing_list,
255                             'tax_exemption' => \@tax_exempt,
256                           );
257
258   warn "$me returned from replace" if $DEBUG;
259   
260 }
261
262 </%init>