Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

gensen

Package Overview
Dependencies
Maintainers
3
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gensen

日本の源泉徴収税計算用ライブラリです

  • 0.1.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-50%
Maintainers
3
Weekly downloads
 
Created
Source

Gensen CircleCI npm version Coverage Status

Join the chat at https://gitter.im/jptax/gensen

gensen は日本の源泉徴収税計算用のライブラリです。

説明

国税庁の資料を元にした実装になっています。

導入方法

ブラウザ

  • bignumber.jsが必要です。
<script src='https://cdnjs.cloudflare.com/ajax/libs/bignumber.js/4.1.0/bignumber.js'></script>
<script src='dist/gensen.js'></script>
<script>
  alert(gensen.houshu(100000).zei);
</script>

node.js

npm install --save gensen
import gensen from "gensen";

const gensenTyoshu = gensen.houshu(100000).zei;

使い方

報酬・料金などの源泉徴収の計算を行いたい場合

import gensen from "gensen";

// 報酬に対する源泉徴収の計算を行います
gensen.houshu(100000);
// => { zei: 10210, zeikomi: 100000,zeinuki: 89790 }

// 外交員、集金人、電力量計の検針人の業務に関する報酬・料金についての源泉徴収の計算を行いたい場合
gensen.houshu.gaikouin(200000);
// => { zei: 8168, zeikomi: 200000, zeinuki: 191832 }
馬主に支払われる競馬の賞金

gensen.houshu.banushi

外交員、集金人、電力量計の検針人の業務に関する報酬・料金

gensen.houshu.gaikouin

バー・キャバレー等のホステス、バンケットホステス・コンパニオン等の業務に関する報酬・料金

gensen.houshu.hostess

事業の広告宣伝のための賞金

gensen.houshu.koukokuShoukin

プロボクサーの業務に関する報酬・料金

gensen.houshu.proBoxer

司法書士、土地家屋調査士、海事代理士の業務に関する報酬・料金

gensen.houshu.shihoushoshi

社会保険診療報酬支払基金が支払う診療報酬

gensen.houshu.shinryou

手取契約の場合の源泉徴収税額の計算1

gensen.houshu.tedori

リンク

Footnotes

  1. http://www.nta.go.jp/taxanswer/gensen/2792_qa.htm

FAQs

Package last updated on 29 Sep 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc