Module: TaxJp

Defined in:
lib/tax_jp.rb,
lib/tax_jp/const.rb,
lib/tax_jp/utils.rb,
lib/tax_jp/engine.rb,
lib/tax_jp/gengou.rb,
lib/tax_jp/address.rb,
lib/tax_jp/version.rb,
lib/tax_jp/db_builder.rb,
lib/tax_jp/prefecture.rb,
lib/tax_jp/withheld_tax.rb,
lib/tax_jp/corporate_tax.rb,
lib/tax_jp/consumption_tax.rb,
lib/tax_jp/labor_insurance.rb,
lib/tax_jp/social_insurance.rb,
lib/tax_jp/depreciation_rate.rb,
app/jobs/tax_jp/application_job.rb,
lib/tax_jp/withheld_taxes/bonus.rb,
app/models/tax_jp/application_record.rb,
app/controllers/tax_jp/top_controller.rb,
app/helpers/tax_jp/application_helper.rb,
app/mailers/tax_jp/application_mailer.rb,
app/controllers/tax_jp/application_controller.rb,
app/controllers/tax_jp/withheld_taxes_controller.rb,
app/controllers/tax_jp/consumption_taxes_controller.rb,
app/controllers/tax_jp/social_insurances_controller.rb,
app/controllers/tax_jp/depreciation_rates_controller.rb,
app/controllers/tax_jp/bonus_withheld_taxes_controller.rb,
app/controllers/tax_jp/employment_insurances_controller.rb

Defined Under Namespace

Modules: Addresses, ApplicationHelper, ConsumptionTaxes, CorporateTaxes, DepreciationRates, LaborInsurances, SocialInsurances, WithheldTaxes Classes: Address, ApplicationController, ApplicationJob, ApplicationMailer, ApplicationRecord, BonusWithheldTaxesController, ConsumptionTax, ConsumptionTaxesController, CorporateTax, DbBuilder, DepreciationRate, DepreciationRatesController, EmploymentInsurancesController, Engine, Finder, Gengou, LaborInsurance, Prefecture, SocialInsurance, SocialInsurancesController, TopController, Utils, WithheldTax, WithheldTaxesController

Constant Summary collapse

EMPLOYMENT_INSURANCE_TYPES =

雇用保険の事業区分

{
  EMPLOYMENT_INSURANCE_TYPE_GENERAL = 1 => '一般',
  EMPLOYMENT_INSURANCE_TYPE_AGRIC = 2 => '農林水産・清酒製造',
  EMPLOYMENT_INSURANCE_TYPE_CONST = 3 => '建設'
}
TAX_TYPES =

消費税区分

{
  TAX_TYPE_NONTAXABLE = 1 => '非課税',
  TAX_TYPE_INCLUSIVE = 2 => '内税',
  TAX_TYPE_EXCLUSIVE = 3 => '外税',
}
INTEGER_MAX =
2147483647
VERSION =
'1.2.0'