[freeside-commits] branch master updated. 7031d0c599829fa3f3f6d8a24e955146cea883f5
Ivan
ivan at 420.am
Wed Dec 19 16:11:54 PST 2012
The branch, master has been updated
via 7031d0c599829fa3f3f6d8a24e955146cea883f5 (commit)
from e5c1e2e0ca42e5857b27890307bca616ee8982aa (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 7031d0c599829fa3f3f6d8a24e955146cea883f5
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Dec 19 16:11:53 2012 -0800
eft_canada: don't zero-pad account numbers, RT#20023
diff --git a/FS/FS/pay_batch/eft_canada.pm b/FS/FS/pay_batch/eft_canada.pm
index ea9d584..220fecb 100644
--- a/FS/FS/pay_batch/eft_canada.pm
+++ b/FS/FS/pay_batch/eft_canada.pm
@@ -112,7 +112,7 @@ my %holiday = (
}
push @fields, sprintf('%05s', $branch),
sprintf('%03s', $bankno),
- sprintf('%012s', $account),
+ $account,
sprintf('%.02f', $cust_pay_batch->amount);
# DB = debit
push @fields, 'DB', $trans_code, $process_date;
-----------------------------------------------------------------------
Summary of changes:
FS/FS/pay_batch/eft_canada.pm | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
More information about the freeside-commits
mailing list