[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 750c8cc13516735ace1f36650b3596508a8304a8

Ivan ivan at 420.am
Mon Sep 17 21:58:07 PDT 2012


The branch, FREESIDE_2_3_BRANCH has been updated
       via  750c8cc13516735ace1f36650b3596508a8304a8 (commit)
      from  3f01678a76be026258c604463fa58e7c6391cb97 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 750c8cc13516735ace1f36650b3596508a8304a8
Author: Ivan Kohler <ivan at freeside.biz>
Date:   Mon Sep 17 21:58:07 2012 -0700

    fix 79 char footer

diff --git a/FS/FS/pay_batch/BoM.pm b/FS/FS/pay_batch/BoM.pm
index 7bfc22a..719b504 100644
--- a/FS/FS/pay_batch/BoM.pm
+++ b/FS/FS/pay_batch/BoM.pm
@@ -31,13 +31,13 @@ $name = 'BoM';
   },
   header => sub { 
     my $pay_batch = shift;
-    sprintf( "A%10s%04u%06u%05u%54s\n", 
+    sprintf( "A%10s%04u%06u%05u%54s\n",  #80
       $origid,
       $pay_batch->batchnum,
       jdate($pay_batch->download),
       $datacenter,
       "") .
-    sprintf( "XD%03u%06u%-15s%-30s%09u%-12s   \n",
+    sprintf( "XD%03u%06u%-15s%-30s%09u%-12s   \n", #80
       $typecode,
       jdate($pay_batch->download),
       $shortname,
@@ -48,7 +48,7 @@ $name = 'BoM';
   row => sub {
     my ($cust_pay_batch, $pay_batch) = @_;
     my ($account, $aba) = split('@', $cust_pay_batch->payinfo);
-    sprintf( "D%010.0f%09u%-12s%-29s%-19s\n",
+    sprintf( "D%010.0f%09u%-12s%-29s%-19s\n", #80
       $cust_pay_batch->amount * 100,
       $aba,
       $account,
@@ -58,8 +58,8 @@ $name = 'BoM';
   },
   footer => sub {
     my ($pay_batch, $batchcount, $batchtotal) = @_;
-    sprintf( "YD%08u%014.0f%56s\n", $batchcount, $batchtotal*100, "").
-    sprintf( "Z%014u%04u%014u%05u%41s\n", 
+    sprintf( "YD%08u%014.0f%56s\n", $batchcount, $batchtotal*100, ""). #80
+    sprintf( "Z%014u%04u%014u%05u%42s\n",  #80 now
       $batchtotal*100, $batchcount, "0", "0", "");
   },
 );

-----------------------------------------------------------------------

Summary of changes:
 FS/FS/pay_batch/BoM.pm |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)




More information about the freeside-commits mailing list