-
Notifications
You must be signed in to change notification settings - Fork 151
/
advEntryDetail.go
311 lines (281 loc) · 12.5 KB
/
advEntryDetail.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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
// Licensed to The Moov Authors under one or more contributor
// license agreements. See the NOTICE file distributed with
// this work for additional information regarding copyright
// ownership. The Moov Authors licenses this file to you under
// the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing,
// software distributed under the License is distributed on an
// "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
// KIND, either express or implied. See the License for the
// specific language governing permissions and limitations
// under the License.
package ach
import (
"fmt"
"strconv"
"unicode/utf8"
)
// ADVEntryDetail contains the actual transaction data for an individual entry.
// Fields include those designating the entry as a deposit (credit) or
// withdrawal (debit), the transit routing number for the entry recipient's financial
// institution, the account number (left justify,no zero fill), name, and dollar amount.
type ADVEntryDetail struct {
// ID is an identifier only used by the moov-io/ach HTTP server as a way to identify a batch.
ID string `json:"id"`
// TransactionCode representing Accounting Entries
// Credit for ACH debits originated - 81
// Debit for ACH credits originated - 82
// Credit for ACH credits received 83
// Debit for ACH debits received 84
// Credit for ACH credits in rejected batches 85
// Debit for ACH debits in rejected batches - 86
// Summary credit for respondent ACH activity - 87
// Summary debit for respondent ACH activity - 88
TransactionCode int `json:"transactionCode"`
// RDFIIdentification is the RDFI's routing number without the last digit.
// Receiving Depository Financial Institution
RDFIIdentification string `json:"RDFIIdentification"`
// CheckDigit the last digit of the RDFI's routing number
CheckDigit string `json:"checkDigit"`
// DFIAccountNumber is the receiver's bank account number you are crediting/debiting.
// It important to note that this is an alphanumeric field, so its space padded, no zero padded
DFIAccountNumber string `json:"DFIAccountNumber"`
// Amount Number of cents you are debiting/crediting this account
Amount int `json:"amount"`
// AdviceRoutingNumber
AdviceRoutingNumber string `json:"adviceRoutingNumber"`
// FileIdentification
FileIdentification string `json:"fileIdentification,omitempty"`
// ACHOperatorData
ACHOperatorData string `json:"achOperatorData,omitempty"`
// IndividualName The name of the receiver, usually the name on the bank account
IndividualName string `json:"individualName"`
// DiscretionaryData allows ODFIs to include codes, of significance only to them,
// to enable specialized handling of the entry. There will be no
// standardized interpretation for the value of this field. It can either
// be a single two-character code, or two distinct one-character codes,
// according to the needs of the ODFI and/or Originator involved. This
// field must be returned intact for any returned entry.
DiscretionaryData string `json:"discretionaryData,omitempty"`
// AddendaRecordIndicator indicates the existence of an Addenda Record.
// A value of "1" indicates that one ore more addenda records follow,
// and "0" means no such record is present.
AddendaRecordIndicator int `json:"addendaRecordIndicator,omitempty"`
// ACHOperatorRoutingNumber
ACHOperatorRoutingNumber string `json:"achOperatorRoutingNumber"`
// JulianDay
JulianDay int `json:"julianDay"`
// SequenceNumber
SequenceNumber int `json:"sequenceNumber"`
// Addenda99 for use with Returns
Addenda99 *Addenda99 `json:"addenda99,omitempty"`
// Category defines if the entry is a Forward, Return, or NOC
Category string `json:"category,omitempty"`
// validator is composed for data validation
validator
// converters is composed for ACH to golang Converters
converters
}
const (
// ADV Transaction Code Values
// These transaction codes represent accounting entries
// CreditForDebitsOriginated is an accounting entry credit for ACH debits originated
CreditForDebitsOriginated = 81
// CreditForCreditsReceived is an accounting entry credits for ACH credits received
CreditForCreditsReceived = 83
// CreditForCreditsRejected is an accounting entry credit for ACH credits in rejected batches
CreditForCreditsRejected = 85
// CreditSummary is an accounting entry for summary credit for respondent ACH activity
CreditSummary = 87
// DebitForCreditsOriginated is an accounting entry debit for ACH credits originated
DebitForCreditsOriginated = 82
// DebitForDebitsReceived is an accounting entry debit for ACH debits received
DebitForDebitsReceived = 84
// DebitForDebitsRejectedBatches is an accounting entry debit for ACH debits in rejected batches
DebitForDebitsRejectedBatches = 86
// DebitSummary is an accounting entry for summary debit for respondent ACH activity
DebitSummary = 88
)
// NewADVEntryDetail returns a new ADVEntryDetail with default values for non exported fields
func NewADVEntryDetail() *ADVEntryDetail {
entry := &ADVEntryDetail{
Category: CategoryForward,
}
return entry
}
// Parse takes the input record string and parses the ADVEntryDetail values
// Parse provides no guarantee about all fields being filled in. Callers should make a Validate call to confirm
// successful parsing and data validity.
// Parse ADVEntryDetail
func (ed *ADVEntryDetail) Parse(record string) {
if utf8.RuneCountInString(record) != 94 {
return
}
runes := []rune(record)
// 1-1 Always "6"
// 2-3 is checking credit 22 debit 27 savings credit 32 debit 37
ed.TransactionCode = ed.parseNumField(string(runes[1:3]))
// 4-11 the RDFI's routing number without the last digit.
ed.RDFIIdentification = ed.parseStringField(string(runes[3:11]))
// 12-12 The last digit of the RDFI's routing number
ed.CheckDigit = ed.parseStringField(string(runes[11:12]))
// 13-27 The receiver's bank account number you are crediting/debiting
ed.DFIAccountNumber = string(runes[12:27])
// 28-39 Number of cents you are debiting/crediting this account
ed.Amount = ed.parseNumField(string(runes[27:39]))
// 40-48 Advice Routing Number
ed.AdviceRoutingNumber = ed.parseStringField(string(runes[39:48]))
// 49-53 File Identification
ed.FileIdentification = ed.parseStringField(string(runes[48:53]))
// 54-54 ACH Operator Data
ed.ACHOperatorData = ed.parseStringField(string(runes[53:54]))
// 55-76 Individual Name
ed.IndividualName = string(runes[54:76])
// 77-78 allows ODFIs to include codes of significance only to them, normally blank
ed.DiscretionaryData = string(runes[76:78])
// 79-79 1 if addenda exists 0 if it does not
ed.AddendaRecordIndicator = ed.parseNumField(string(runes[78:79]))
// 80-87
ed.ACHOperatorRoutingNumber = ed.parseStringField(string(runes[79:87]))
// 88-90
ed.JulianDay = ed.parseNumField(string(runes[87:90]))
// 91-94
ed.SequenceNumber = ed.parseNumField(string(runes[90:94]))
}
// String writes the ADVEntryDetail struct to a 94 character string.
func (ed *ADVEntryDetail) String() string {
buf := getBuffer()
defer saveBuffer(buf)
buf.WriteString(entryDetailPos)
buf.WriteString(fmt.Sprintf("%v", ed.TransactionCode))
buf.WriteString(ed.RDFIIdentificationField())
buf.WriteString(ed.CheckDigit)
buf.WriteString(ed.DFIAccountNumberField())
buf.WriteString(ed.AmountField())
buf.WriteString(ed.AdviceRoutingNumberField())
buf.WriteString(ed.FileIdentificationField())
buf.WriteString(ed.ACHOperatorDataField())
buf.WriteString(ed.IndividualNameField())
buf.WriteString(ed.DiscretionaryDataField())
buf.WriteString(fmt.Sprintf("%v", ed.AddendaRecordIndicator))
buf.WriteString(ed.ACHOperatorRoutingNumberField())
buf.WriteString(ed.JulianDateDayField())
buf.WriteString(ed.SequenceNumberField())
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 (ed *ADVEntryDetail) Validate() error {
if err := ed.fieldInclusion(); err != nil {
return err
}
if err := ed.isTransactionCode(ed.TransactionCode); err != nil {
return fieldError("TransactionCode", err, strconv.Itoa(ed.TransactionCode))
}
if err := ed.isAlphanumeric(ed.DFIAccountNumber); err != nil {
return fieldError("DFIAccountNumber", err, ed.DFIAccountNumber)
}
if err := ed.isAlphanumeric(ed.AdviceRoutingNumber); err != nil {
return fieldError("AdviceRoutingNumber", err, ed.AdviceRoutingNumber)
}
if err := ed.isAlphanumeric(ed.IndividualName); err != nil {
return fieldError("IndividualName", err, ed.IndividualName)
}
if err := ed.isAlphanumeric(ed.DiscretionaryData); err != nil {
return fieldError("DiscretionaryData", err, ed.DiscretionaryData)
}
if err := ed.isAlphanumeric(ed.ACHOperatorRoutingNumber); err != nil {
return fieldError("ACHOperatorRoutingNumber", err, ed.ACHOperatorRoutingNumber)
}
calculated := CalculateCheckDigit(ed.RDFIIdentificationField())
edCheckDigit, _ := strconv.Atoi(ed.CheckDigit)
if calculated != edCheckDigit {
return fieldError("RDFIIdentification", NewErrValidCheckDigit(calculated), ed.CheckDigit)
}
return nil
}
// fieldInclusion validate mandatory fields are not default values. If fields are
// invalid the ACH transfer will be returned.
func (ed *ADVEntryDetail) fieldInclusion() error {
if ed.TransactionCode == 0 {
return fieldError("TransactionCode", ErrConstructor, strconv.Itoa(ed.TransactionCode))
}
if ed.RDFIIdentification == "" {
return fieldError("RDFIIdentification", ErrConstructor, ed.RDFIIdentificationField())
}
if ed.DFIAccountNumber == "" {
return fieldError("DFIAccountNumber", ErrConstructor, ed.DFIAccountNumber)
}
if ed.AdviceRoutingNumber == "" {
return fieldError("AdviceRoutingNumber", ErrConstructor, ed.AdviceRoutingNumber)
}
if ed.IndividualName == "" {
return fieldError("IndividualName", ErrFieldRequired, ed.IndividualName)
}
if ed.ACHOperatorRoutingNumber == "" {
return fieldError("ACHOperatorRoutingNumber", ErrConstructor, ed.ACHOperatorRoutingNumber)
}
if ed.JulianDay <= 0 {
return fieldError("JulianDay", ErrConstructor, strconv.Itoa(ed.JulianDay))
}
if ed.SequenceNumber == 0 {
return fieldError("SequenceNumber", ErrConstructor, strconv.Itoa(ed.SequenceNumber))
}
return nil
}
// SetRDFI takes the 9 digit RDFI account number and separates it for RDFIIdentification and CheckDigit
func (ed *ADVEntryDetail) SetRDFI(rdfi string) *ADVEntryDetail {
s := ed.stringField(rdfi, 9)
ed.RDFIIdentification = ed.parseStringField(s[:8])
ed.CheckDigit = ed.parseStringField(s[8:9])
return ed
}
// RDFIIdentificationField get the rdfiIdentification with zero padding
func (ed *ADVEntryDetail) RDFIIdentificationField() string {
return ed.stringField(ed.RDFIIdentification, 8)
}
// DFIAccountNumberField gets the DFIAccountNumber with space padding
func (ed *ADVEntryDetail) DFIAccountNumberField() string {
return ed.alphaField(ed.DFIAccountNumber, 15)
}
// AmountField returns a zero padded string of amount
func (ed *ADVEntryDetail) AmountField() string {
return ed.numericField(ed.Amount, 12)
}
// AdviceRoutingNumberField gets the AdviceRoutingNumber with zero padding
func (ed *ADVEntryDetail) AdviceRoutingNumberField() string {
return ed.stringField(ed.AdviceRoutingNumber, 9)
}
// FileIdentificationField returns a space padded string of FileIdentification
func (ed *ADVEntryDetail) FileIdentificationField() string {
return ed.alphaField(ed.FileIdentification, 5)
}
// ACHOperatorDataField returns a space padded string of ACHOperatorData
func (ed *ADVEntryDetail) ACHOperatorDataField() string {
return ed.alphaField(ed.ACHOperatorData, 1)
}
// IndividualNameField returns a space padded string of IndividualName
func (ed *ADVEntryDetail) IndividualNameField() string {
return ed.alphaField(ed.IndividualName, 22)
}
// DiscretionaryDataField returns a space padded string of DiscretionaryData
func (ed *ADVEntryDetail) DiscretionaryDataField() string {
return ed.alphaField(ed.DiscretionaryData, 2)
}
// ACHOperatorRoutingNumberField returns a space padded string of ACHOperatorRoutingNumber
func (ed *ADVEntryDetail) ACHOperatorRoutingNumberField() string {
return ed.alphaField(ed.ACHOperatorRoutingNumber, 8)
}
// JulianDateDayField returns a zero padded string of JulianDay
func (ed *ADVEntryDetail) JulianDateDayField() string {
return ed.numericField(ed.JulianDay, 3)
}
// SequenceNumberField returns a zero padded string of SequenceNumber
func (ed *ADVEntryDetail) SequenceNumberField() string {
return ed.numericField(ed.SequenceNumber, 4)
}