-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #374 from moov-io/Support-XCK---Destroyed-Check-En…
…try-#347 Support xck destroyed check entry #347
- Loading branch information
Showing
10 changed files
with
703 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
// 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 "fmt" | ||
|
||
// BatchXCK holds the BatchHeader and BatchControl and all EntryDetail for XCK Entries. | ||
// | ||
// Destroyed Check Entry identifies a debit entry initiated for a XCk eligible items. | ||
type BatchXCK struct { | ||
Batch | ||
} | ||
|
||
// NewBatchXCK returns a *BatchXCK | ||
func NewBatchXCK(bh *BatchHeader) *BatchXCK { | ||
batch := new(BatchXCK) | ||
batch.SetControl(NewBatchControl()) | ||
batch.SetHeader(bh) | ||
return batch | ||
} | ||
|
||
// Validate checks valid NACHA batch rules. Assumes properly parsed records. | ||
func (batch *BatchXCK) Validate() error { | ||
// basic verification of the batch before we validate specific rules. | ||
if err := batch.verify(); err != nil { | ||
return err | ||
} | ||
// Add configuration and type specific validation for this type. | ||
|
||
if batch.Header.StandardEntryClassCode != "XCK" { | ||
msg := fmt.Sprintf(msgBatchSECType, batch.Header.StandardEntryClassCode, "XCK") | ||
return &BatchError{BatchNumber: batch.Header.BatchNumber, FieldName: "StandardEntryClassCode", Msg: msg} | ||
} | ||
|
||
// XCK detail entries can only be a debit, ServiceClassCode must allow debits | ||
switch batch.Header.ServiceClassCode { | ||
case 200, 220, 280: | ||
msg := fmt.Sprintf(msgBatchServiceClassCode, batch.Header.ServiceClassCode, "XCK") | ||
return &BatchError{BatchNumber: batch.Header.BatchNumber, FieldName: "ServiceClassCode", Msg: msg} | ||
} | ||
|
||
for _, entry := range batch.Entries { | ||
// XCK detail entries must be a debit | ||
if entry.CreditOrDebit() != "D" { | ||
msg := fmt.Sprintf(msgBatchTransactionCodeCredit, entry.TransactionCode) | ||
return &BatchError{BatchNumber: batch.Header.BatchNumber, FieldName: "TransactionCode", Msg: msg} | ||
} | ||
// Amount must be 2,500 or less | ||
if entry.Amount > 250000 { | ||
msg := fmt.Sprintf(msgBatchAmount, "2,500", "XCK") | ||
return &BatchError{BatchNumber: batch.Header.BatchNumber, FieldName: "Amount", Msg: msg} | ||
} | ||
// ProcessControlField underlying IdentificationNumber, must be defined | ||
if entry.ProcessControlField() == "" { | ||
return &BatchError{BatchNumber: batch.Header.BatchNumber, FieldName: "ProcessControlField", Msg: msgFieldRequired} | ||
} | ||
// ItemResearchNumber underlying IdentificationNumber, must be defined | ||
if entry.ItemResearchNumber() == "" { | ||
return &BatchError{BatchNumber: batch.Header.BatchNumber, FieldName: "ItemResearchNumber", Msg: msgFieldRequired} | ||
} | ||
// Verify Addenda* FieldInclusion based on entry.Category and batchHeader.StandardEntryClassCode | ||
if err := batch.addendaFieldInclusion(entry); err != nil { | ||
return err | ||
} | ||
} | ||
return nil | ||
} | ||
|
||
// Create takes Batch Header and Entries and builds a valid batch | ||
func (batch *BatchXCK) Create() error { | ||
// generates sequence numbers and batch control | ||
if err := batch.build(); err != nil { | ||
return err | ||
} | ||
// Additional steps specific to batch type | ||
// ... | ||
|
||
return batch.Validate() | ||
} |
Oops, something went wrong.