[freeside-commits] branch master updated. dfe6570a5d327350d93148633bef5eb8c1aaa9d3
Jeremy Davis
jeremyd at 420.am
Thu May 2 09:33:19 PDT 2013
The branch, master has been updated
via dfe6570a5d327350d93148633bef5eb8c1aaa9d3 (commit)
from 51d26d73eb99d9f7f45591fa6a4b99c3a3429565 (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 dfe6570a5d327350d93148633bef5eb8c1aaa9d3
Author: Jeremy Davis <jeremyd at freeside.biz>
Date: Thu May 2 12:32:21 2013 -0400
Fixed Rounding issue in summary
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