Finance::NFS::File::AccountBalance is a Perl module used to read account balance records into data structures.
SYNOPSYS
my $balance = Finance::NFS::File::AccountBalance
->new(
client_id => 'A7T',
filename => $path_to_file,
account_callback => sub{ ... }, #optional
);
my $fbsi_cycle_date = $balance->file_date;
my $records = eval { $balance->records };
die("There was an error reading the file: $@") unless defined $records;
for my $acct ( @{ }){
#insert records into database or whatever
my $branch = $acct->{branch}; #etc..
}
Product's homepage
Requirements:
· Perl