Business::TW::TSIB::CStorePayment is a Perl module that provides utility functions for the convenient store payment collection service by TSIB (Taishin International Bank, Taiwan).
SYNOPSIS
use Business::TW::TSIB::CStorePayment;
my $csp = Business::TW::TSIB::CStorePayment->new({ corp_code => 'CPCU' });
my @bar = $csp->generate( { due => DateTime->new( year => 2007, month => 4, day => 2 ),
collect_until => DateTime->new( year => 2007, month => 4, day => 2 ),
amount => 3900,
ar_id => '20892' } );
# render the code39 barcode with GD::Barcode
my @png = map { GD::Barcode::Code39->new("*$_*")->plot->png } @bar;
# parse summary from file handler
my $entries = Business::TW::TSIB::CStorePayment->parse_summary($fh);
# entries is arrayref of Business::TW::TSIB::CStorePayment::Entry objects,
Product's homepage
Requirements:
· Perl