NAME

Business::Tax::Withholding::JP - auto calculation for Japanese tax and withholding

Business::Tax::Withholding::JP は日本の消費税と源泉徴収自動計算します。

SYNOPSIS

use Business::Tax::Withholding::JP;
my $tax = Business::Tax::Withholding::JP->new( price => 10000 );

$tax->net();           # 10000
$tax->tax();           # 800
$tax->full();          # 10800
$tax->withholding();   # 1021
$tax->total();         # 9779

# or you or You can set the date in period of special tax being expired
$tax = Business::Tax::Withholding::JP->new( date => '2038-01-01' );
$tax->price(10000);
$tax->withholding();   # 1000
$tax->total();         # 9800

DESCRIPTION

Business::Tax::Withholding::JP is useful calculator for long term in Japanese Business.

You can get correctly taxes and withholdings from price in your context without worrying about the special tax for reconstructing from the Earthquake.

the consumption tax rate is 8%

Business::Tax::Withholding::JP は日本のビジネスで長期的に使えるモジュールです。 特別復興所得税の期限を心配することなく、請求価格から正しく税金額と源泉徴収額を計算できます。 消費税率は8% です。

Constructor

new( price => Int, date => Date );

You can omit these paramators.

パラメータは指定しなくて構いません。

Methods and subroutine

LICENSE

Copyright (C) worthmine.

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

AUTHOR

worthmine worthmine@cpan.org