forked from moov-io/ach
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addenda17.go
133 lines (121 loc) · 5.29 KB
/
addenda17.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
// Copyright 2018 The Moov Authors
// Use of this source code is governed by an Apache License
// license that can be found in the LICENSE file.
package ach
import (
"strings"
)
// Addenda17 is an addenda which provides business transaction information for Addenda Type
// Code 17 in a machine readable format. It is usually formatted according to ANSI, ASC, X12 Standard.
//
// Addenda17 is optional for IAT entries
//
// The Addenda17 record identifies payment-related data. A maximum of two of these Addenda Records
// may be included with each IAT entry.
type Addenda17 struct {
// ID is a client defined string used as a reference to this record.
ID string `json:"id"`
// RecordType defines the type of record in the block. entryAddenda17 Pos 7
recordType string
// TypeCode Addenda17 types code '17'
TypeCode string `json:"typeCode"`
// PaymentRelatedInformation
PaymentRelatedInformation string `json:"paymentRelatedInformation"`
// SequenceNumber is consecutively assigned to each Addenda17 Record following
// an Entry Detail Record. The first addenda17 sequence number must always
// be a "1".
SequenceNumber int `json:"sequenceNumber,omitempty"`
// EntryDetailSequenceNumber contains the ascending sequence number section of the Entry
// Detail or Corporate Entry Detail Record's trace number This number is
// the same as the last seven digits of the trace number of the related
// Entry Detail Record or Corporate Entry Detail Record.
EntryDetailSequenceNumber int `json:"entryDetailSequenceNumber,omitempty"`
// validator is composed for data validation
validator
// converters is composed for ACH to GoLang Converters
converters
}
// NewAddenda17 returns a new Addenda17 with default values for none exported fields
func NewAddenda17() *Addenda17 {
addenda17 := new(Addenda17)
addenda17.recordType = "7"
addenda17.TypeCode = "17"
return addenda17
}
// Parse takes the input record string and parses the Addenda17 values
//
// Parse provides no guarantee about all fields being filled in. Callers should make a Validate() call to confirm successful parsing and data validity.
func (addenda17 *Addenda17) Parse(record string) {
// 1-1 Always "7"
addenda17.recordType = "7"
// 2-3 Always 17
addenda17.TypeCode = record[1:3]
// 4-83 Based on the information entered (04-83) 80 alphanumeric
addenda17.PaymentRelatedInformation = strings.TrimSpace(record[3:83])
// 84-87 SequenceNumber is consecutively assigned to each Addenda17 Record following
// an Entry Detail Record
addenda17.SequenceNumber = addenda17.parseNumField(record[83:87])
// 88-94 Contains the last seven digits of the number entered in the Trace Number field in the corresponding Entry Detail Record
addenda17.EntryDetailSequenceNumber = addenda17.parseNumField(record[87:94])
}
// String writes the Addenda17 struct to a 94 character string.
func (addenda17 *Addenda17) String() string {
var buf strings.Builder
buf.Grow(94)
buf.WriteString(addenda17.recordType)
buf.WriteString(addenda17.TypeCode)
buf.WriteString(addenda17.PaymentRelatedInformationField())
buf.WriteString(addenda17.SequenceNumberField())
buf.WriteString(addenda17.EntryDetailSequenceNumberField())
return buf.String()
}
// Validate performs NACHA format rule checks on the record and returns an error if not Validated
// The first error encountered is returned and stops that parsing.
func (addenda17 *Addenda17) Validate() error {
if err := addenda17.fieldInclusion(); err != nil {
return err
}
if addenda17.recordType != "7" {
return fieldError("recordType", NewErrRecordType(7), addenda17.recordType)
}
if err := addenda17.isTypeCode(addenda17.TypeCode); err != nil {
return fieldError("TypeCode", err, addenda17.TypeCode)
}
// Type Code must be 17
if addenda17.TypeCode != "17" {
return fieldError("TypeCode", ErrAddendaTypeCode, addenda17.TypeCode)
}
if err := addenda17.isAlphanumeric(addenda17.PaymentRelatedInformation); err != nil {
return fieldError("PaymentRelatedInformation", err, addenda17.PaymentRelatedInformation)
}
return nil
}
// fieldInclusion validate mandatory fields are not default values. If fields are
// invalid the ACH transfer will be returned.
func (addenda17 *Addenda17) fieldInclusion() error {
if addenda17.recordType == "" {
return fieldError("recordType", ErrConstructor, addenda17.recordType)
}
if addenda17.TypeCode == "" {
return fieldError("TypeCode", ErrConstructor, addenda17.TypeCode)
}
if addenda17.SequenceNumber == 0 {
return fieldError("SequenceNumber", ErrConstructor, addenda17.SequenceNumberField())
}
if addenda17.EntryDetailSequenceNumber == 0 {
return fieldError("EntryDetailSequenceNumber", ErrConstructor, addenda17.EntryDetailSequenceNumberField())
}
return nil
}
// PaymentRelatedInformationField returns a zero padded PaymentRelatedInformation string
func (addenda17 *Addenda17) PaymentRelatedInformationField() string {
return addenda17.alphaField(addenda17.PaymentRelatedInformation, 80)
}
// SequenceNumberField returns a zero padded SequenceNumber string
func (addenda17 *Addenda17) SequenceNumberField() string {
return addenda17.numericField(addenda17.SequenceNumber, 4)
}
// EntryDetailSequenceNumberField returns a zero padded EntryDetailSequenceNumber string
func (addenda17 *Addenda17) EntryDetailSequenceNumberField() string {
return addenda17.numericField(addenda17.EntryDetailSequenceNumber, 7)
}