应纳税所得额计算 - 税务申报指南
应纳税所得额计算方法及案例分析
1. 应纳税所得额计算公式
// 应纳税所得额计算
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;
},
2. 相关参数说明
disposableCompensationIncome: 一次性补偿收入taxExemptIncome: 免税收入subtotal: 小计deductionAllowedDonate: 准予扣除的捐赠额shareYearDegree: 分均年度数
3. 计算示例
假设:
- 一次性补偿收入:100,000 元
- 免税收入:5,000 元
- 小计:20,000 元
- 准予扣除的捐赠额:1,000 元
- 分均年度数:2 年
则:
- 应纳税所得额:100,000 - 5,000 - 20,000 - 1,000 = 74,000 元
- 年均应纳税所得额:74,000 / 2 = 37,000 元
4. 常见问题
为什么 acTaxableincome 没有计算数值?
- 确保
form对象中的disposableCompensationIncome,taxExemptIncome,subtotal,deductionAllowedDonate等属性都有正确的赋值。 - 如果这些属性值是动态变化的,可以考虑使用
watch属性来监听它们的变化,并在变化时重新计算acTaxableincome的值。 - 请确保
acTaxableincome在模板中正确引用。
5. 相关链接
6. 总结
本文详细介绍了应纳税所得额的计算方法,并提供了计算示例。希望本文能够帮助您更好地理解相关税务知识,准确计算应纳税额。
注意: 本文仅供参考,具体税务政策请以最新官方公布信息为准。
相关代码:
<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>
form 对象结构:
form: {
// 准予扣除的捐赠额
deductionAllowedDonate: null,
// 一次性补偿收入
disposableCompensationIncome: null,
// 年均减除费用
averageAnnualDeductionCost: null,
// 分均年度数
shareYearDegree: null,
// 减除费用
deductCost: null,
companyId: null,
personId: null,
reportingPeriodDate: null,
other: null,
taxExemptIncome: null,
// 备注
remark: null,
// 小计
subtotal: null,
// 减免税额
reductionTaxAmount: null,
// companyId: null,
// incomeReportingCode: null,
// 所得期间起
incomePeriodDateStart: null,
// 所得期间至
incomePeriodDateEnd: null,
// 应纳税额
acTaxPiPersonVo: {
// 人员id
personId: null,
// 姓名
name: '',
// 证件号码
identificationNum: '',
// 证件类型
identificationType: '',
// 工号
employeeId: '',
// 其他
},
acTaxPiPersonCalculationSchedule: {
// 应纳税额
acTaxableAmount: 0,
// 减免税额
acTaxSavings: 0,
// 应纳税所得额
acTaxableIncome: 0,
// 已预缴税额
prepaidTaxAmount: 0,
// 税率/预扣率
taxRate: 0,
// 速算扣除数
quickCalculationDeduction: 0,
// 应补(退)税额
payableTaxAmount: 0,
// 累计应扣缴税额
acDeductiblePaymentAmount: 0,
// 年均应纳税所得额(提前退休一次性补贴表)
annualTaxableIncome: 0,
},
}
原文地址: https://www.cveoy.top/t/topic/pabQ 著作权归作者所有。请勿转载和采集!