bb4b9733c7deb8dfb8657d9cfb72fd4e298931bd
[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                   }
44     if    $param->{"custnum$row"}
45        || $param->{"paid$row"}
46        || $param->{"payinfo$row"};
47   next if !$cust_pay;
48   #$row++;
49
50   # payment applications, if any
51   my @cust_bill_pay = ();
52   foreach my $app ( sort {$a <=> $b} map /^invnum$row\.(\d+)$/, @invrows ) {
53 #  for ( my $app = 0; exists($param->{"invnum$row.$app"}); $app++ ) {
54     next if !$param->{"invnum$row.$app"};
55     push @cust_bill_pay, new FS::cust_bill_pay {
56                             'invnum'  => $param->{"invnum$row.$app"},
57                             'amount'  => $param->{"amount$row.$app"}
58                           };
59   }
60   $cust_pay->set('apply_to', \@cust_bill_pay) if scalar(@cust_bill_pay) > 0;
61
62   push @cust_pay, $cust_pay;
63
64 }
65
66 my @errors = FS::cust_pay->batch_insert(@cust_pay);
67 my $num_errors = scalar(grep $_, @errors);
68 </%init>
69 %  if ( $num_errors ) {
70 %
71 %    $cgi->param('error', "$num_errors error". ($num_errors>1 ? 's' : '').
72 %                         ' - Batch not processed, correct and resubmit'
73 %               );
74 %
75 %    my $erow=0;
76 %    $cgi->param('error'. $erow++, shift @errors) while @errors;
77 %    
78 %    my $query = $m->scomp('/elements/create_uri_query');
79 %
80 <% $cgi->redirect($p."batch-cust_pay.html?$query")
81
82   %>
83 % } else {
84 %
85 %    
86 <% $cgi->redirect(popurl(3). "search/cust_pay.html?magic=paybatch;paybatch=$paybatch") %>
87 % }