員工姓名
{{ activeEmp.profile.name || ‘—‘ }}
薪資模式
{{ activeEmp.profile.isPartTime ? ‘計時制’ : ‘正職制’ }}
身分證字號
{{ activeEmp.profile.idNum || ‘—‘ }}
出生日期
{{ activeEmp.profile.birth || ‘—‘ }}
戶籍地址
{{ activeEmp.profile.address || ‘—‘ }}
所屬單位
{{ activeEmp.profile.shop || ‘—‘ }}
工作天數:{{ summary.workDays }} 天
總公休日:{{ summary.offDays }} 天
總工時:{{ summary.totalHours }} H
加班時數:{{ summary.overtimeHours }} H
應領項目
{{ activeEmp.profile.isPartTime ? ‘基本工資合計’ : ‘本薪/底薪’ }}${{ Math.round(activeEmp.profile.isPartTime ? summary.baseTotal : currentMonthData.basePay).toLocaleString() }}
+${{ Math.round(summary.overtimePay).toLocaleString() }}
+${{ currentMonthData.bonus.toLocaleString() }}
+${{ (currentMonthData.travel + currentMonthData.edu + currentMonthData.meal).toLocaleString() }}
應扣項目
勞健保自付額-${{ Math.round(currentMonthData.laborIns + currentMonthData.healthIns).toLocaleString() }}
事假扣款-${{ Math.abs(Math.round(summary.personalPay)).toLocaleString() }}
病假半薪扣款-${{ Math.abs(Math.round(summary.sickPay)).toLocaleString() }}
實領淨額
NT${{ Math.round(finalAmount).toLocaleString() }}