Will things ever be the same again?
[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 %  
49 <% sprintf( "A%10s%04u%06u%05u%54s\n",$origid,$pay_batch->batchnum,$jdate,$datacenter,"").
50         sprintf( "XD%03u%06u%-15s%-30s%09u%-12s   \n",$typecode,$jdate,$shortname,$longname,$mybank,$myacct )
51   %>
52 %
53 %
54 %}elsif ($format eq "PAP"){
55 %
56 %  my($origid,$datacenter,$typecode,$shortname,$longname,$mybank,$myacct) =
57 %    $conf->config("batchconfig-$format");
58 %  
59 <% sprintf( "H%10sD%3s%06u%-15s%09u%-12s%04u%19s\n",$origid,$typecode,$cdate,$shortname,$mybank,$myacct,$pay_batch->batchnum,"")
60
61   %>
62 %
63 %
64 %}elsif ($format eq "csv-td_canada_trust-merchant_pc_batch"){
65 %#  1;
66 %}else{
67 %  die "Unknown format for batch in batchconfig. \n";
68 %}
69 %
70 %
71 %for my $cust_pay_batch ( sort { $a->paybatchnum <=> $b->paybatchnum }
72 %                           qsearch('cust_pay_batch',
73 %                             {'batchnum'=>$pay_batch->batchnum} )
74 %) {
75 %
76 %  $cust_pay_batch->exp =~ /^\d{2}(\d{2})[\/\-](\d+)[\/\-]\d+$/;
77 %  my( $mon, $y ) = ( $2, $1 );
78 %  $mon = "0$mon" if $mon < 10;
79 %  my $exp = "$mon$y";
80 %  $batchcount++;
81 %  $batchtotal += $cust_pay_batch->amount;
82 %  
83 %  if ($format eq "BoM") {
84 %
85 %    my( $account, $aba ) = split( '@', $cust_pay_batch->payinfo );
86 %    
87 <% sprintf( "D%010.0f%09u%-12s%-29s%-19s\n",$cust_pay_batch->amount*100,$aba,$account,$cust_pay_batch->payname,$cust_pay_batch->paybatchnum) %>
88 %
89 %
90 %  } elsif ($format eq "PAP"){
91 %
92 %    my( $account, $aba ) = split( '@', $cust_pay_batch->payinfo );
93 %    
94 <% 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) %>
95 %
96 %
97 %  } elsif ($format eq "csv-td_canada_trust-merchant_pc_batch") {
98 %
99 %    
100 ,,,,<% $cust_pay_batch->payinfo %>,<% $exp %>,<% $cust_pay_batch->amount %>,<% $cust_pay_batch->paybatchnum %>
101 %
102 %
103 %  } else {
104 %    die "I'm already dead, but you did not know that.\n";
105 %  }
106 %
107 %}
108 %
109 %if ($format eq "BoM") {
110 %
111 %  
112 <% sprintf( "YD%08u%014.0f%56s\n",$batchcount,$batchtotal*100,"" ).
113         sprintf( "Z%014u%05u%014u%05u%41s\n",$batchtotal*100,$batchcount,"0","0","" ) %>
114 %
115 %
116 %} elsif ($format eq "PAP"){
117 %
118 %  
119 <% sprintf( "T%08u%014.0f%57s\n",$batchcount,$batchtotal*100,"" ) %>
120 %
121 %
122 %} elsif ($format eq "csv-td_canada_trust-merchant_pc_batch"){
123 %  #1;
124 %} else {
125 %  die "I'm already dead (again), but you did not know that.\n";
126 %}
127 %
128 %$dbh->commit or die $dbh->errstr if $oldAutoCommit;
129 %
130 %
131
132