|
|
|
@ -74,7 +74,7 @@ public class ABAFile {
|
|
|
|
|
lineBuilder.replace(62, 80, StringUtils.rightPad(DateFormatUtils.format(settleDate, "yyyyMMdd"), 18));
|
|
|
|
|
lineBuilder.replace(80, 87, bsbNo(selfBSB));
|
|
|
|
|
lineBuilder.replace(87, 96, StringUtils.leftPad(selfAccountNo, 9));
|
|
|
|
|
lineBuilder.replace(96, 112, StringUtils.rightPad(company, 16));
|
|
|
|
|
lineBuilder.replace(96, 112, StringUtils.left(StringUtils.rightPad(company, 16), 16));
|
|
|
|
|
lineBuilder.replace(112, 120, StringUtils.leftPad("0", 8, "0"));
|
|
|
|
|
return lineBuilder.toString();
|
|
|
|
|
}
|
|
|
|
|