[freeside-commits] branch FREESIDE_2_3_BRANCH updated. e169cafd3a30a51ad8976cdb94058b057de846b6
Jeremy Davis
jeremyd at 420.am
Tue Apr 30 13:01:35 PDT 2013
The branch, FREESIDE_2_3_BRANCH has been updated
via e169cafd3a30a51ad8976cdb94058b057de846b6 (commit)
from 2487e70d1fa40cdfa2a8d0eca1bcc3ca9d1170cc (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 e169cafd3a30a51ad8976cdb94058b057de846b6
Author: Jeremy Davis <jeremyd at freeside.biz>
Date: Tue Apr 30 16:00:23 2013 -0400
Fixed rounding issue in footer #21692
diff --git a/FS/FS/pay_batch/BoM.pm b/FS/FS/pay_batch/BoM.pm
index a3708d4..b609df3 100644
--- a/FS/FS/pay_batch/BoM.pm
+++ b/FS/FS/pay_batch/BoM.pm
@@ -59,7 +59,7 @@ $name = 'BoM';
footer => sub {
my ($pay_batch, $batchcount, $batchtotal) = @_;
sprintf( "YD%08u%014.0f%55s\n", $batchcount, $batchtotal*100, ""). #80
- sprintf( "Z%014u%05u%014u%05u%40s", #80 now
+ sprintf( "Z%014.0f%05u%014u%05u%40s", #80 now
$batchtotal*100, $batchcount, "0", "0", "");
},
);
-----------------------------------------------------------------------
Summary of changes:
FS/FS/pay_batch/BoM.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list