ff78862398588f6376034aea8c1e245718fda3a0
[freeside.git] / httemplate / misc / process / batch-cust_pay.cgi
1 <%init>
2 my $DEBUG = 0;
3 die "access denied"
4   unless $FS::CurrentUser::CurrentUser->access_right('Post payment batch');
5
6 my $param = $cgi->Vars;
7 warn Dumper($param) if $DEBUG;
8
9 #my $paybatch = $param->{'paybatch'};
10 my $paybatch = time2str('webbatch-%Y/%m/%d-%T'. "-$$-". rand() * 2**32, time);
11
12 my @cust_pay = ();
13 #my $row = 0;
14 #while ( exists($param->{"custnum$row"}) ) {
15 my @invrows = grep(/^invnum\d+\.\d+$/, keys %$param);
16 foreach my $row ( map /^custnum(\d+)$/, keys %$param ) {
17   my $custnum = $param->{"custnum$row"};
18   my $cust_main;
19   if ( $custnum =~ /^(\d+)$/ and $1 <= 2147483647 ) {
20     $cust_main = qsearchs({ 
21       'table'     => 'cust_main',
22       'hashref'   => { 'custnum' => $1 },
23       'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
24     });
25   }
26   if ( length($custnum) and !$cust_main ) { # not found, try agent_custid
27     $cust_main = qsearchs({ 
28       'table'     => 'cust_main',
29       'hashref'   => { 'agent_custid' => $custnum },
30       'extra_sql' => ' AND '. $FS::CurrentUser::CurrentUser->agentnums_sql,
31     });
32   }
33   $custnum = $cust_main->custnum if $cust_main;
34   # if !$cust_main, then this will throw an error on batch_insert
35
36   my $cust_pay = new FS::cust_pay {
37                     'custnum'        => $custnum,
38                     'paid'           => $param->{"paid$row"},
39                     'payby'          => 'BILL',
40                     'payinfo'        => $param->{"payinfo$row"},
41                     'discount_term'  => $param->{"discount_term$row"},
42                     'paybatch'       => $paybatch,
43                     'no_auto_apply'  => exists($param->{"no_auto_apply$row"}) ? 'Y' : '',
44                   }
45     if    $param->{"custnum$row"}
46        || $param->{"paid$row"}
47        || $param->{"payinfo$row"};
48   next if !$cust_pay;
49   #$row++;
50
51   # payment applications, if any
52   my @cust_bill_pay = ();
53   foreach my $app ( sort {$a <=> $b} map /^invnum$row\.(\d+)$/, @invrows ) {
54 #  for ( my $app = 0; exists($param->{"invnum$row.$app"}); $app++ ) {
55     next if !$param->{"invnum$row.$app"};
56     push @cust_bill_pay, new FS::cust_bill_pay {
57                             'invnum'  => $param->{"invnum$row.$app"},
58                             'amount'  => $param->{"amount$row.$app"}
59                           };
60   }
61   $cust_pay->set('apply_to', \@cust_bill_pay) if scalar(@cust_bill_pay) > 0;
62
63   push @cust_pay, $cust_pay;
64
65 }
66
67 my @errors = FS::cust_pay->batch_insert(@cust_pay);
68 my $num_errors = scalar(grep $_, @errors);
69 </%init>
70 %  if ( $num_errors ) {
71 %
72 %    $cgi->param('error', "$num_errors error". ($num_errors>1 ? 's' : '').
73 %                         ' - Batch not processed, correct and resubmit'
74 %               );
75 %
76 %    my $erow=0;
77 %    $cgi->param('error'. $erow++, shift @errors) while @errors;
78 %    
79 %    my $query = $m->scomp('/elements/create_uri_query');
80 %
81 <% $cgi->redirect($p."batch-cust_pay.html?$query")
82
83   %>
84 % } else {
85 %
86 %    
87 <% $cgi->redirect(popurl(3). "search/cust_pay.html?magic=paybatch;paybatch=$paybatch") %>
88 % }