[freeside-commits] branch FREESIDE_2_3_BRANCH updated. 464ac8197ad03bc735092060ba20a3c3ef9c8d61
Ivan
ivan at 420.am
Wed Dec 19 16:11:55 PST 2012
The branch, FREESIDE_2_3_BRANCH has been updated
via 464ac8197ad03bc735092060ba20a3c3ef9c8d61 (commit)
from a7cf7448f7eed5614edede260a719e3dbe4ce355 (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 464ac8197ad03bc735092060ba20a3c3ef9c8d61
Author: Ivan Kohler <ivan at freeside.biz>
Date: Wed Dec 19 16:11:54 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