From: ivan Date: Sun, 21 Sep 2003 07:31:26 +0000 (+0000) Subject: remove trancode from batching X-Git-Tag: freeside_1_4_2beta1~497 X-Git-Url: http://git.freeside.biz/gitweb/?a=commitdiff_plain;h=bf975d7230268400f24572d1cfc38e65c5f60cb5;p=freeside.git remove trancode from batching --- diff --git a/FS/FS/cust_bill.pm b/FS/FS/cust_bill.pm index c35985f23..d9f860684 100644 --- a/FS/FS/cust_bill.pm +++ b/FS/FS/cust_bill.pm @@ -999,7 +999,6 @@ sub batch_card { 'state' => $cust_main->getfield('state'), 'zip' => $cust_main->getfield('zip'), 'country' => $cust_main->getfield('country'), - 'trancode' => 77, 'cardnum' => $cust_main->getfield('payinfo'), 'exp' => $cust_main->getfield('paydate'), 'payname' => $cust_main->getfield('payname'), @@ -1228,7 +1227,7 @@ sub print_text { =head1 VERSION -$Id: cust_bill.pm,v 1.41.2.22 2003-09-19 04:25:33 ivan Exp $ +$Id: cust_bill.pm,v 1.41.2.23 2003-09-21 07:31:26 ivan Exp $ =head1 BUGS diff --git a/httemplate/misc/download-batch.cgi b/httemplate/misc/download-batch.cgi index 5ee12f174..ecb80d256 100644 --- a/httemplate/misc/download-batch.cgi +++ b/httemplate/misc/download-batch.cgi @@ -1,6 +1,6 @@ <% -http_header('Content-Type' => 'text/comma-separated-values'); +http_header('Content-Type' => 'text/comma-separated-values' ); for my $cust_pay_batch ( sort { $a->paybatchnum <=> $b->paybatchnum } qsearch('cust_pay_batch', {} )