diff options
| author | Jeremy Davis <jeremyd@freeside.biz> | 2013-04-30 16:00:23 -0400 |
|---|---|---|
| committer | Jeremy Davis <jeremyd@freeside.biz> | 2013-04-30 16:00:23 -0400 |
| commit | e169cafd3a30a51ad8976cdb94058b057de846b6 (patch) | |
| tree | 79782a097357b901e82fd0022de25cdafb8b038d | |
| parent | 2487e70d1fa40cdfa2a8d0eca1bcc3ca9d1170cc (diff) | |
Fixed rounding issue in footer #21692
| -rw-r--r-- | FS/FS/pay_batch/BoM.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/pay_batch/BoM.pm b/FS/FS/pay_batch/BoM.pm index a3708d477..b609df351 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", ""); }, ); |
