概述
题目:
员工2015年入职,2019年每月应发工资均为30000元,每月减除费用5000元,“三险一金”等专项扣除为4500元,享受子女教育、赡养老人两项专项附加扣除共计2000元,没有减免收入及减免税额等情况,以前三个月为例,应当按照以下方法计算各月应预扣预缴税额:
1月份:(30000–5000-4500-2000)×3%=555元
2月份:(30000×2-5000×2-4500×2-2000×2)×10%-2520-555=625元
3月份:(30000×3-5000×3-4500×3-2000×3)×10%-2520-555-625=1850元
结论:上述计算结果表明,由于2月份累计预扣预缴应纳税所得额为37000元,已适用10%的税率,因此2月份和3月份应预扣预缴有所增高
新个人所得税税率表
代码化
输入: 应发工资/每月减除费用/五险一金扣除/专项附加扣除
输出:根据个人所得税预扣率表计算每个月的税额,也阔以计算年度税额
主要代码
个人计算税收* {
margin: 0;
padding: 0
}
// 本期应预扣预缴税额=(累计预扣预缴应纳税所得额×预扣率-速算扣除数)-累计减免税额
// 累计预扣预缴应纳税所得额=累计免税收入-累计减除费用-累计专项扣除-累计专项附加扣除-累计依法确定的其他扣除
new Vue({
el: '#app',
template: `
每月应发工资(税前){{taxFreeIncome}}
每月减除费用 {{countDeduction}}
每月五险一金{{insurance}}
每月专项抵扣 {{specialAddOn}}
累积 {{monthNum}} 月
- 第{{i + 1}}月 应缴费 {{item}}
年终 {{yearEndMonth}} 系数
年度总应付工资(税前) {{yearTotal}} 元
年度总税额 {{totalTax}} 元
年度到手工资 {{yearTotal - totalTax}}
平均月度到手工资 {{(yearTotal - totalTax) / 12 }}
计算
`,
data() {
return {
taxFreeIncome: 30000, // 应收工资
countDeduction: 5000,// 起征税
insurance: 4500, // 五险一金
specialAddOn: 2000, // 专项抵扣
monthNum: 12, // 累积几个月
monthTax: [], // 累积几个月显示
totalTax: 0, // 年度总共税收
yearTotal: 0, // 年度总收益税前
yearEndMonth: 0, // 年终系数
yearEndAward: 0, // 年终奖
}
},
methods: {
count() {
const arr = []
let prepaidIncome = 0; // 每月缴税
let totalTax = 0
for (let i = 1; i <= this.monthNum; i ++) {
const taxableIncome = (this.taxFreeIncome - this.countDeduction - this.insurance - this.specialAddOn) * i;
if (taxableIncome < 36000) {
prepaidIncome = Number((taxableIncome * 0.03) - totalTax);
} else if ( 36000 < taxableIncome <= 144000) {
prepaidIncome = Number(( taxableIncome * 0.1) - 2520 - totalTax);
} else if (144000 < taxableIncome <= 300000) {
prepaidIncome = ( taxableIncome * 0.2) - 16920 - totalTax;
} else if (300000 < taxableIncome <= 420000) {
prepaidIncome = ( taxableIncome * 0.25) - 31920 - totalTax;
} else if (420000 < taxableIncome <= 660000) {
prepaidIncome = ( taxableIncome * 0.3) - 52920 - totalTax;
} else if (660000 < taxableIncome <= 960000) {
prepaidIncome = ( taxableIncome * 0.35) - 85920 - totalTax;
} else if (taxableIncome > 960000) {
prepaidIncome = ( taxableIncome * 0.45) - 181920 - totalTax;
}
arr.push(prepaidIncome);
totalTax = arr.reduce((cur, total) => (cur + total), 0)
}
this.monthTax = arr
this.totalTax = totalTax;
this.yearTotal = this.taxFreeIncome * (12 + Number(this.yearEndMonth));
totalTax = 0
}
}
})
最后
以上就是甜美钢笔为你收集整理的java计算某国个人所得税税率表_计算个人所得税(新版)的全部内容,希望文章能够帮你解决java计算某国个人所得税税率表_计算个人所得税(新版)所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复