NAME

Business::ID::BCA - Parse/validate BCA account number

VERSION

version 0.01

SYNOPSIS

use Business::ID::BCA::Account qw(parse_bca_account);
my $res = parse_bca_account(account => '6000327555');

DESCRIPTION

This module parses/validates BCA account number. BCA (Bank Central Asia) is one of the major banks in Indonesia.

It also contains a routine to list known BCA branches. Data is retrieved from the Gudang Data project (http://github.com/sharyanto/gudangdata ).

Indonesian keywords: struktur nomor rekening BCA, format rekening BCA, daftar kode cabang BCA

BUGS/NOTES

Check digit checking is not implemented yet. Anybody knows the algorithm used?

AUTHOR

Steven Haryanto <stevenharyanto@gmail.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Steven Haryanto.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.

FUNCTIONS

None are exported by default, but they are exportable.

list_bca_branches(%args) -> [status, msg, result, meta]

BCA branches.

REPLACE ME

Data is in table form. Table fields are as follow:

  • code (ID field): Code

  • address: Address

  • city_name: City name

  • city_code: City code, TBD

  • ctime

  • note

Arguments ('*' denotes required arguments):

  • address => str

    Only return records where the 'address' field equals specified value.

  • address.contains => str

    Only return records where the 'address' field contains specified text.

  • address.is => str

    Only return records where the 'address' field equals specified value.

  • address.max => str

    Only return records where the 'address' field is less than or equal to specified value.

  • address.min => array

    Only return records where the 'address' field is greater than or equal to specified value.

  • address.not_contains => str

    Only return records where the 'address' field does not contain a certain text.

  • address.xmax => str

    Only return records where the 'address' field is less than specified value.

  • address.xmin => array

    Only return records where the 'address' field is greater than specified value.

  • city_code => str

    Only return records where the 'city_code' field equals specified value.

  • city_code.contains => str

    Only return records where the 'city_code' field contains specified text.

  • city_code.is => str

    Only return records where the 'city_code' field equals specified value.

  • city_code.max => str

    Only return records where the 'city_code' field is less than or equal to specified value.

  • city_code.min => array

    Only return records where the 'city_code' field is greater than or equal to specified value.

  • city_code.not_contains => str

    Only return records where the 'city_code' field does not contain a certain text.

  • city_code.xmax => str

    Only return records where the 'city_code' field is less than specified value.

  • city_code.xmin => array

    Only return records where the 'city_code' field is greater than specified value.

  • city_name => str

    Only return records where the 'city_name' field equals specified value.

  • city_name.contains => str

    Only return records where the 'city_name' field contains specified text.

  • city_name.is => str

    Only return records where the 'city_name' field equals specified value.

  • city_name.max => str

    Only return records where the 'city_name' field is less than or equal to specified value.

  • city_name.min => array

    Only return records where the 'city_name' field is greater than or equal to specified value.

  • city_name.not_contains => str

    Only return records where the 'city_name' field does not contain a certain text.

  • city_name.xmax => str

    Only return records where the 'city_name' field is less than specified value.

  • city_name.xmin => array

    Only return records where the 'city_name' field is greater than specified value.

  • code => str

    Only return records where the 'code' field equals specified value.

  • code.contains => str

    Only return records where the 'code' field contains specified text.

  • code.is => str

    Only return records where the 'code' field equals specified value.

  • code.max => str

    Only return records where the 'code' field is less than or equal to specified value.

  • code.min => array

    Only return records where the 'code' field is greater than or equal to specified value.

  • code.not_contains => str

    Only return records where the 'code' field does not contain a certain text.

  • code.xmax => str

    Only return records where the 'code' field is less than specified value.

  • code.xmin => array

    Only return records where the 'code' field is greater than specified value.

  • ctime => str

    Only return records where the 'ctime' field equals specified value.

  • ctime.contains => str

    Only return records where the 'ctime' field contains specified text.

  • ctime.is => str

    Only return records where the 'ctime' field equals specified value.

  • ctime.max => str

    Only return records where the 'ctime' field is less than or equal to specified value.

  • ctime.min => array

    Only return records where the 'ctime' field is greater than or equal to specified value.

  • ctime.not_contains => str

    Only return records where the 'ctime' field does not contain a certain text.

  • ctime.xmax => str

    Only return records where the 'ctime' field is less than specified value.

  • ctime.xmin => array

    Only return records where the 'ctime' field is greater than specified value.

  • detail => bool (default: 0)

    Return array of full records instead of just ID fields.

    By default, only the key (ID) field is returned per result entry.

  • fields => array (default: "code")

    Select fields to return.

  • note => str

    Only return records where the 'note' field equals specified value.

  • note.contains => str

    Only return records where the 'note' field contains specified text.

  • note.is => str

    Only return records where the 'note' field equals specified value.

  • note.max => str

    Only return records where the 'note' field is less than or equal to specified value.

  • note.min => array

    Only return records where the 'note' field is greater than or equal to specified value.

  • note.not_contains => str

    Only return records where the 'note' field does not contain a certain text.

  • note.xmax => str

    Only return records where the 'note' field is less than specified value.

  • note.xmin => array

    Only return records where the 'note' field is greater than specified value.

  • q => str

    Search.

  • random => bool (default: 0)

    Return records in random order.

  • result_limit => int

    Only return a certain number of records.

  • result_start => int (default: 1)

    Only return starting from the n'th record.

  • sort => str

    Order records according to certain field(s).

    A list of field names separated by comma. Each field can be prefixed with '-' to specify descending order instead of the default ascending.

  • with_field_names => bool

    Return field names in each record (as hash/associative array).

    When enabled, function will return each record as hash/associative array (field name => value pairs). Otherwise, function will return each record as list/array (field value, field value, ...).

Return value:

Returns an enveloped result (an array). First element (status) is an integer containing HTTP status code (200 means OK, 4xx caller error, 5xx function error). Second element (msg) is a string containing error message, or 'OK' if status is 200. Third element (result) is optional, the actual result. Fourth element (meta) is called result metadata and is optional, a hash that contains extra information.

parse_bca_account(%args) -> [status, msg, result, meta]

Parse/validate BCA account number.

Upon success/valid number, return status 200 with hash containing parsed information. Upon invalid number, return 400. Parsed information contains these keys:

  • branch_code

  • branch_address

  • branch_city_name (not yet)

  • branch_city_code (not yet)

  • account (10-digits)

  • account_f (canonically-formatted account number, e.g. 123.456789.0)

  • is_checking (bool, true if detected as checking account [giro])

  • check_digit

Arguments ('*' denotes required arguments):

  • account* => str

  • check_known_branches => bool (default: 0)

    Check branch code against list of known branches.

    List of known branches

Return value:

Returns an enveloped result (an array). First element (status) is an integer containing HTTP status code (200 means OK, 4xx caller error, 5xx function error). Second element (msg) is a string containing error message, or 'OK' if status is 200. Third element (result) is optional, the actual result. Fourth element (meta) is called result metadata and is optional, a hash that contains extra information.