Giter VIP home page Giter VIP logo

ach's Introduction

#ACH

ach is a Ruby helper for builder ACH files. In particular, it helps with field order and alignment, and adds padding lines to end of file.

This library has only been used in one production application and for very limited purposes. Please test thoroughly before using in a production environment.

See ACH::Builder for a similar Perl library

##Example

You should consult a copy of the ACH Rules for details on individual fields. You can probably obtain a copy from your bank.

# Create ACH file
ach = ACH::ACHFile.new
trace_number = 0

# File Header
fh = ach.header
fh.immediate_destination = "000000000"
fh.immediate_destination_name = "BANK NAME"
fh.immediate_origin = "000000000"
fh.immediate_origin_name = "BANK NAME"

# Batch
batch = ACH::Batch.new
bh = batch.header
bh.company_name = "Company Name"
bh.company_identification = "123456789"
bh.standard_entry_class_code = 'PPD'
bh.company_entry_description = "DESCRIPTION"
bh.company_descriptive_date = Date.today
bh.effective_entry_date = (Date.today + 1)
bh.originating_dfi_identification = "00000000"
ach.batches << batch

# Detail Entry
ed = ACH::EntryDetail.new
ed.transaction_code = ACH::CHECKING_CREDIT
ed.routing_number = "000000000"
ed.account_number = "00000000000"
ed.amount = 100 # In cents
ed.individual_id_number = "Employee Name"
ed.individual_name = "Employee Name"
ed.originating_dfi_identification = '00000000'
batch.entries << ed
# ... Additional detail entries, possibly including *offsetting entry*, if needed.

# Insert trace numbers
batch.entries.each{ |entry| entry.trace_number = (trace_number += 1) }


output = ach.to_s
File.open("ach.txt", 'w') do |f|
  f.write output
end

p ach.report

##Copyright

Copyright (c) 2008-2009 Jared E Morgan, released under the MIT license

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.