Skip to content

Commit 9029d3a

Browse files
committed
According to the NACHA spec, Addenda Sequence Number (position 84-87) should always start with '1'
1 parent dca01e2 commit 9029d3a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ach/builder.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,7 @@ def __init__(self, entry_detail, addenda_record=[]):
327327
AddendaRecord(
328328
self.entry_detail.std_ent_cls_code,
329329
pmt_rel_info=addenda.get('payment_related_info').upper(),
330-
add_seq_num=index,
330+
add_seq_num=index + 1,
331331
ent_det_seq_num=entry_detail.trace_num[-7:]
332332
)
333333
)

0 commit comments

Comments
 (0)