个人所得税应纳税所得额计算方法及代码示例
个人所得税应纳税所得额计算方法及代码示例
本文将详细介绍个人所得税应纳税所得额的计算方法,并提供相应的代码示例,帮助用户更好地理解税收计算原理和流程。
应纳税所得额计算
应纳税所得额是指个人在取得收入后,扣除免税收入、各种扣除以及允许的捐赠等项目后,实际需要缴纳个人所得税的所得额。计算公式如下:
// 应纳税所得额计算
acTaxableincome: function () {
const { disposableCompensationIncome, taxExemptIncome, subtotal, deductionAllowedDonate } = this.form;
const taxableAmount = disposableCompensationIncome - taxExemptIncome - subtotal - deductionAllowedDonate;
return taxableAmount >= 0 ? taxableAmount : 0.0;
},
年均应纳税所得额计算
年均应纳税所得额是指个人在一年内应纳税所得额的平均值。计算公式如下:
// 年均应纳税所得额计算
acAnnualTaxableIncome() {
const acTaxableIncome = this.acTaxableincome;
const shareYearDegree = this.form.shareYearDegree;
const AnnualTaxableIncome = acTaxableIncome / shareYearDegree;
return AnnualTaxableIncome >= 0 ? AnnualTaxableIncome : 0.0;
},
代码示例
以下代码示例展示了如何使用上述公式计算个人所得税应纳税所得额和年均应纳税所得额:
<el-form-item
label='应纳税所得额:'
prop='acTaxPiPersonCalculationSchedule.acTaxableIncome'
style='width: 290px'
>
{{ acTaxableincome }}
</el-form-item>
<el-form-item
label='税率/预扣率:'
prop='acTaxPiPersonCalculationSchedule.taxRate'
style='width: 290px'
>
20%
</el-form-item>
<el-form-item
label='速算扣除数:'
prop='acTaxPiPersonCalculationSchedule.quickCalculationDeduction'
style='width: 290px'
>
0.00
</el-form-item>
<el-row style='display: flex'>
<el-form-item
label='年均应纳税所得额:'
prop='acTaxPiPersonCalculationSchedule.annualTaxableIncome'
style='width: 290px; white-space: nowrap'
>
{{ acAnnualTaxableIncome }}
</el-form-item>
<el-form-item
label='应纳税额:'
prop='acTaxPiPersonCalculationSchedule.acTaxableAmount'
style='width: 290px'
>
{{ acTaxableamount }}
</el-form-item>
</el-row>
总结
本文介绍了个人所得税应纳税所得额的计算方法,并提供了相应的代码示例。用户可以根据自己的实际情况,参考本文提供的公式和代码,进行个人所得税的计算和申报。
注意: 本文仅供参考,实际税收计算和申报流程请以国家税务局的最新规定为准。
原文地址: https://www.cveoy.top/t/topic/pabA 著作权归作者所有。请勿转载和采集!