From 79ddd2d358834a5e18e6311014a272f60ebb236e Mon Sep 17 00:00:00 2001 From: freedakgmail Date: Mon, 17 Aug 2026 19:31:02 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E5=88=A0=E9=99=A4=E5=9F=BA=E6=9C=AC?= =?UTF-8?q?=E4=BF=A1=E6=81=AF=E4=B8=AD=E9=87=8D=E5=A4=8D=E7=9A=84=E7=A4=BE?= =?UTF-8?q?=E4=BF=9D=E5=85=AC=E7=A7=AF=E9=87=91=E6=98=8E=E7=BB=86=EF=BC=88?= =?UTF-8?q?=E7=A1=AC=E7=BC=96=E7=A0=81=E9=80=9A=E7=94=A8=E6=AF=94=E4=BE=8B?= =?UTF-8?q?=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 保留薪税信息中按参保城市实际政策计算的社保费用明细 删除社保与公积金明细区块(硬编码8%/16%等通用比例,与薪税信息重复) --- frontend/src/pages/roster/BasicInfo.tsx | 64 ------------------------- 1 file changed, 64 deletions(-) diff --git a/frontend/src/pages/roster/BasicInfo.tsx b/frontend/src/pages/roster/BasicInfo.tsx index 5c0187b..b147caa 100644 --- a/frontend/src/pages/roster/BasicInfo.tsx +++ b/frontend/src/pages/roster/BasicInfo.tsx @@ -306,70 +306,6 @@ export default function BasicInfo({ profile, employeeId, attachments }: { profil ))} - {profile.socialInsBase != null && ( -
-

社保与公积金明细

-
-
- 社保缴纳基数 - ¥{fmt(profile.socialInsBase)} -
-
- 公积金缴纳基数 - ¥{fmt(profile.housingFundBase || 0)} -
-
- 个人养老(8%) - ¥{fmt((profile.socialInsBase || 0) * 0.08)} -
-
- 单位养老(16%) - ¥{fmt((profile.socialInsBase || 0) * 0.16)} -
-
- 个人医疗(2%) - ¥{fmt((profile.socialInsBase || 0) * 0.02)} -
-
- 单位医疗(8%) - ¥{fmt((profile.socialInsBase || 0) * 0.08)} -
-
- 个人失业(0.5%) - ¥{fmt((profile.socialInsBase || 0) * 0.005)} -
-
- 单位失业(0.5%) - ¥{fmt((profile.socialInsBase || 0) * 0.005)} -
-
- 单位工伤(0.2%) - ¥{fmt((profile.socialInsBase || 0) * 0.002)} -
-
- 单位生育(0.8%) - ¥{fmt((profile.socialInsBase || 0) * 0.008)} -
-
- 个人公积金(7%) - ¥{fmt((profile.housingFundBase || 0) * 0.07)} -
-
- 单位公积金(7%) - ¥{fmt((profile.housingFundBase || 0) * 0.07)} -
-
- 个人合计 - ¥{fmt((profile.socialInsBase || 0) * 0.105 + (profile.housingFundBase || 0) * 0.07)} -
-
- 单位合计 - ¥{fmt((profile.socialInsBase || 0) * 0.255 + (profile.housingFundBase || 0) * 0.07)} -
-
-
注:比例为通用参考值,实际比例以当地政策为准
-
- )} ) : (