batch refactor
[freeside.git] / httemplate / misc / download-batch.cgi
1 <%
2
3 my $conf=new FS::Conf;
4
5 #http_header('Content-Type' => 'text/comma-separated-values' ); #IE chokes
6 http_header('Content-Type' => 'text/plain' );
7
8 my $batchnum;
9 if ( $cgi->param('batchnum') =~ /^(\d+)$/ ) {
10   $batchnum = $1;
11 } else {
12   die "No batch number (bad URL) \n";
13 }
14
15 my $format;
16 if ( $cgi->param('format') =~ /^([\w\- ]+)$/ ) {
17   $format = $1;
18 } else {
19   $format = $conf->config('batch-default_format');
20 }
21
22 my $oldAutoCommit = $FS::UID::AutoCommit;
23 local $FS::UID::AutoCommit = 0;
24 my $dbh = dbh;
25
26 my $pay_batch = qsearchs('pay_batch', {'batchnum'=>$batchnum, 'status'=>'O'} );
27 die "No pending batch. \n" unless $pay_batch;
28
29 my %batchhash = $pay_batch->hash;
30 $batchhash{'status'} = 'I';
31 $batchhash{'download'} = time unless $batchhash{'download'};
32 my $new = new FS::pay_batch \%batchhash;
33 my $error = $new->replace($pay_batch);
34 die "error updating batch status: $error\n" if $error;
35
36 my $batchtotal=0;
37 my $batchcount=0;
38
39 my (@date)=localtime($new->download);
40 my $jdate = sprintf("%03d", $date[5] % 100).sprintf("%03d", $date[7] + 1);
41 my $cdate = sprintf("%02d", $date[3]).sprintf("%02d", $date[4] + 1).
42             sprintf("%02d", $date[5] % 100);
43
44 if ($format eq "BoM") {
45
46   my($origid,$datacenter,$typecode,$shortname,$longname,$mybank,$myacct) =
47     $conf->config("batchconfig-$format");
48   %><%= sprintf( "A%10s%04u%06u%05u%54s\n",$origid,$pay_batch->batchnum,$jdate,$datacenter,"").
49         sprintf( "XD%03u%06u%-15s%-30s%09u%-12s   \n",$typecode,$jdate,$shortname,$longname,$mybank,$myacct )
50   %><%
51
52 }elsif ($format eq "PAP"){
53
54   my($origid,$datacenter,$typecode,$shortname,$longname,$mybank,$myacct) =
55     $conf->config("batchconfig-$format");
56   %><%= sprintf( "H%10sD%3s%06u%-15s%09u%-12s%04u%19s\n",$origid,$typecode,$cdate,$shortname,$mybank,$myacct,$pay_batch->batchnum,"")
57
58   %><%
59
60 }elsif ($format eq "csv-td_canada_trust-merchant_pc_batch"){
61 #  1;
62 }else{
63   die "Unknown format for batch in batchconfig. \n";
64 }
65
66
67 for my $cust_pay_batch ( sort { $a->paybatchnum <=> $b->paybatchnum }
68                            qsearch('cust_pay_batch',
69                               {'batchnum'=>$pay_batch->batchnum} )
70 ) {
71
72   $cust_pay_batch->exp =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
73   my( $mon, $y ) = ( $2, $1 );
74   $mon = "0$mon" if $mon < 10;
75   my $exp = "$mon$y";
76   $batchcount++;
77   $batchtotal += $cust_pay_batch->amount;
78   
79   if ($format eq "BoM") {
80
81     my( $account, $aba ) = split( '@', $cust_pay_batch->payinfo );
82     %><%= sprintf( "D%010.0f%09u%-12s%-29s%-19s\n",$cust_pay_batch->amount*100,$aba,$account,$cust_pay_batch->payname,$cust_pay_batch->paybatchnum) %><%
83
84   } elsif ($format eq "PAP"){
85
86     my( $account, $aba ) = split( '@', $cust_pay_batch->payinfo );
87     %><%= sprintf( "D%-23s%06u%-19s%09u%-12s%010.0f\n",$cust_pay_batch->payname,$cdate,$cust_pay_batch->paybatchnum,$aba,$account,$cust_pay_batch->amount*100) %><%
88
89   } elsif ($format eq "csv-td_canada_trust-merchant_pc_batch") {
90
91     %>,,,,<%= $cust_pay_batch->payinfo %>,<%= $exp %>,<%= $cust_pay_batch->amount %>,<%= $cust_pay_batch->paybatchnum %><%
92
93   } else {
94     die "I'm already dead, but you did not know that.\n";
95   }
96
97 }
98
99 if ($format eq "BoM") {
100
101   %><%= sprintf( "YD%08u%014.0f%56s\n",$batchcount,$batchtotal*100,"" ).
102         sprintf( "Z%014u%05u%014u%05u%41s\n",$batchtotal*100,$batchcount,"0","0","" ) %><%
103
104 } elsif ($format eq "PAP"){
105
106   %><%= sprintf( "T%08u%014.0f%57s\n",$batchcount,$batchtotal*100,"" ) %><%
107
108 } elsif ($format eq "csv-td_canada_trust-merchant_pc_batch"){
109   #1;
110 } else {
111   die "I'm already dead (again), but you did not know that.\n";
112 }
113
114 $dbh->commit or die $dbh->errstr if $oldAutoCommit;
115
116 %>
117