Skip to content

Latest commit

History

215 Commits

Folders and files

NameName
Last commit message
Last commit date

Repository files navigation

moov-io/ach

GoDocBuild StatusCoverage StatusGo Report CardApache 2 licensed

Package 'moov-io/ach' implements a file reader and writer for parsing ACH Automated Clearing House files. ACH is the primary method of electronic money movement throughout the United States.

Project Status

ACH is at an early stage and under active development. Please star the project if you are interested in its progress.

  • Library currently supports the reading and writing
    • PPD (Prearranged payment and deposits)
    • WEB (Internet-initiated Entries )
    • CCD (Corporate credit or debit)

Project Roadmap

  • Additional SEC codes will be added based on library users needs. Please open an issue with a valid test file.
  • Review the project issues for more detailed information

Usage and examples

Examples exist in projects example folder. The following is based on simple file creation

To create a file

file:=ach.NewFile(ach.FileParam{
ImmediateDestination: "0210000890",
ImmediateOrigin: "123456789",
ImmediateDestinationName: "Your Bank",
ImmediateOriginName: "Your Company",
ReferenceCode: "#00000A1"})

To create a batch

Errors only if payment type is not supported

batch:=ach.NewBatch(ach.BatchParam{
ServiceClassCode: "220",
CompanyName: "Your Company",
StandardEntryClass: "PPD",
CompanyIdentification: "123456789",
CompanyEntryDescription: "Trans. Description",
CompanyDescriptiveDate: "Oct 23",
ODFIIdentification: "123456789"})

To create an entry

entry:=ach.NewEntryDetail(ach.EntryParam{
ReceivingDFI: "102001017",
RDFIAccount: "5343121",
Amount: "17500",
TransactionCode: "27",
IDNumber: "ABC##jvkdjfuiwn",
IndividualName: "Bob Smith",
DiscretionaryData: "B1"})

To add one or more optional addenda records for an entry

addenda:=ach.NewAddenda(ach.AddendaParam{
PaymentRelatedInfo: "bonus pay for amazing work on #OSS"})
entry.AddAddenda(addenda)

Entries are added to batches like so:

batch.AddEntry(entry)

When all of the Entries are added to the batch we can create the batch.

iferr:=batch.Create(); err!=nil {
fmt.Printf("%T: %s", err, err)
}

And batches are added to files much the same way:

file.AddBatch(batch)

Now add a new batch for accepting payments on the web

batch2, _:=ach.NewBatch(ach.BatchParam{
ServiceClassCode: "220",
CompanyName: "Your Company",
StandardEntryClass: "WEB",
CompanyIdentification: "123456789",
CompanyEntryDescription: "subscr",
CompanyDescriptiveDate: "Oct 23",
ODFIIdentification: "123456789"})

Add an entry and define if it is a single or reoccurring payment. The following is a reoccurring payment for $7.99

entry2:=ach.NewEntryDetail(ach.EntryParam{
ReceivingDFI: "102001017",
RDFIAccount: "5343121",
Amount: "799",
TransactionCode: "22",
IDNumber: "#123456",
IndividualName: "Wade Arnold",
DiscretionaryData: "R"})
addenda2:=ach.NewAddenda(ach.AddendaParam{
PaymentRelatedInfo: "Monthly Membership Subscription"})

Add the entry to the batch

entry2.AddAddenda(addenda2)

Create and add the second batch

batch2.AddEntry(entry2)
iferr:=batch2.Create(); err!=nil {
fmt.Printf("%T: %s", err, err)
}
file.AddBatch(batch2)

Once we added all our batches we must build the file

iferr:=file.Create(); err!=nil {
fmt.Printf("%T: %s", err, err)
}

Finally we wnt to write the file to an io.Writer

w:=ach.NewWriter(os.Stdout)
iferr:=w.Write(file); err!=nil {
fmt.Printf("%T: %s", err, err)
}
w.Flush()
}

Which will generate a well formed ACH flat file.

101 210000890 1234567891708290000A094101Your Bank Your Company #00000A1
5200Your Company 123456789 PPDTrans. DesOct 23010101 1234567890000001
6271020010175343121 0000017500#456789 Bob Smith B11234567890000001
705bonus pay for amazing work on #OSS 00010000001
82000000020010200101000000017500000000000000123456789 234567890000001
5220Your Company 123456789 WEBsubscr Oct 23010101 1234567890000002
6221020010175343121 0000000799#123456 Wade Arnold R 1234567890000001
705Monthly Membership Subscription 00010000001
82200000020010200101000000000000000000000799123456789 234567890000002
9000002000001000000040020400202000000017500000000000799 

Contributing

We use GitHub to manage reviews of pull requests.

  • If you have a trivial fix or improvement, go ahead and create a pull request, addressing (with @...) one or more of the maintainers (see AUTHORS.md) in the description of the pull request.

  • If you plan to do something more involved, first propose your ideas in a Github issue. This will avoid unnecessary work and surely give you and us a good deal of inspiration.

  • Relevant coding style guidelines are the Go Code Review Comments and the Formatting and style section of Peter Bourgon's Go: Best Practices for Production Environments.

Additional SEC (Standard Entry Class) code batch types.

SEC type's in the Batch Header record define the payment type of the following Entry Details and Addenda. The format of the records in the batch is the same between all payment types but NACHA defines different rules for the values that are held in each record field. To add support for an additional SEC type you will need to implement NACHA rules for that type. The vast majority of rules are implemented in ach.batch and then composed into Batch(SEC) for reuse. All Batch(SEC) types must be a ach.Batcher.

  1. Create a milestone for the new SEC type that you want supported.
  2. Add issues to that milestone to meet the NACHA rules for the batch type.
  3. Create a new struct of the batch type. In the following example we will use MTE(Machine Transfer Entry) as our example.
  4. The following code would be place in a new file batchMTE.go next to the existing batch types.
  5. The code is stub code and the MTE type is not implemented. For concrete examples review the existing batch types in the source.

Create a new struct and compose ach.batch

typeBatchMTEstruct {
batch
}

Add the ability for the new type to be created.

funcNewBatchMTE(params...BatchParam) *BatchMTE {
batch:=new(BatchMTE)
batch.setControl(NewBatchControl)
iflen(params) >0 {
bh:=NewBatchHeader(params[0])
bh.StandardEntryClassCode="MTE"batch.SetHeader(bh)
returnbatch
}
bh:=NewBatchHeader()
bh.StandardEntryClassCode="MTE"batch.SetHeader(bh)
returnbatch
}

To support the Batcher interface you must add the following functions that are not implemented in ach.batch.

  • Validate() error
  • Create() error

Validate is designed to enforce the NACHA rules for the MTE payment type. Validate is run after a batch of this type is read from a file. If you are creating a batch from code call validate afterwards.

// Validate checks valid NACHA batch rules. Assumes properly parsed records.func (batch*BatchMTE) Validate() error {
// basic verification of the batch before we validate specific rules.iferr:=batch.verify(); err!=nil {
returnerr
}
// Add configuration based validation for this type.// ... batch.isAddendaCount(1)// Add type specific validation.// ...returnnil
}

Create takes the Batch Header and Entry details and creates the proper sequence number and batch control. If additional logic specific to the SEC type is required it building a batch file it should be added here.

// Create takes Batch Header and Entries and builds a valid batchfunc (batch*BatchMTE) Create() error {
// generates sequence numbers and batch controliferr:=batch.build(); err!=nil {
returnerr
}
// Additional steps specific to batch type// ...iferr:=batch.Validate(); err!=nil {
returnerr
}
returnnil
}

Finally add the batch type to the NewBatch factory in batch.go.

//...case"MTE":
returnNewBatchMTE(bp), nil//...

Pull request require a batchMTE_test.go file that covers the logic of the type.

References

Format Specification

ACH File Layout

Insperation

License

Apache License 2.0 See LICENSE for details.

About

ACH(Automated Clearing House) GoLang library implementing NACHA file creation and validation via reader and writer

Resources

Stars

2 stars

Watchers

4 watching

Forks

Releases

Packages

Used by

Contributors

Languages