feat: 绩效工资两行显示+等级系数着色
后端: 批次详情接口附加 perfGrade/perfCoefficient 到每个 entry 前端: 绩效工资列改为两行显示,上行金额,下行等级·系数 - A级(1.2)绿色, C级(0.8)橙色, D级(0.6)红色, B级(1.0)默认色 - 数据从 batch detail 接口获取,刷新不丢失
This commit is contained in:
@@ -292,12 +292,31 @@ router.get('/batches/:id', async (req: AuthRequest, res: Response, next: NextFun
|
||||
},
|
||||
})
|
||||
if (!rawBatch) return res.status(404).json({ success: false, error: { code: 'NOT_FOUND', message: '批次不存在' } })
|
||||
|
||||
// 查询批次月份的绩效记录,附加到 entry 上
|
||||
const perfRecords = await prisma.performanceRecord.findMany({
|
||||
where: { orgId: req.user!.orgId, period: rawBatch.month, periodType: 'MONTHLY' },
|
||||
select: { employeeId: true, grade: true, score: true },
|
||||
})
|
||||
const gradeCoefficients: Record<string, number> = { A: 1.2, B: 1.0, C: 0.8, D: 0.6 }
|
||||
const perfMap = new Map<string, { grade: string; coefficient: number }>()
|
||||
for (const r of perfRecords) {
|
||||
if (!perfMap.has(r.employeeId)) {
|
||||
perfMap.set(r.employeeId, { grade: r.grade, coefficient: gradeCoefficients[r.grade] || 1.0 })
|
||||
}
|
||||
}
|
||||
|
||||
const batch = {
|
||||
...rawBatch,
|
||||
entries: rawBatch.entries.map((e: any) => ({
|
||||
...e,
|
||||
employee: e.employee ? { ...e.employee, idCardNumber: safeDecryptStr(e.employee.idCardNumber) } : e.employee,
|
||||
})),
|
||||
entries: rawBatch.entries.map((e: any) => {
|
||||
const perf = perfMap.get(e.employeeId)
|
||||
return {
|
||||
...e,
|
||||
employee: e.employee ? { ...e.employee, idCardNumber: safeDecryptStr(e.employee.idCardNumber) } : e.employee,
|
||||
perfGrade: perf?.grade || null,
|
||||
perfCoefficient: perf?.coefficient || null,
|
||||
}
|
||||
}),
|
||||
}
|
||||
res.json({ success: true, data: batch })
|
||||
} catch (err) {
|
||||
|
||||
@@ -489,7 +489,6 @@ function BatchDetail({ batchId, onBack }: { batchId: string; onBack: () => void
|
||||
const [taxDetailFor, setTaxDetailFor] = useState<{ employeeId: string; name: string } | null>(null)
|
||||
const [taxDetailData, setTaxDetailData] = useState<any>(null)
|
||||
const [taxDetailLoading, setTaxDetailLoading] = useState(false)
|
||||
const [perfDetails, setPerfDetails] = useState<Map<string, { grade: string | null; coefficient: number }>>(new Map())
|
||||
|
||||
const { data: batch, isLoading } = useQuery<any>({
|
||||
queryKey: ['batch-detail', batchId],
|
||||
@@ -600,13 +599,6 @@ function BatchDetail({ batchId, onBack }: { batchId: string; onBack: () => void
|
||||
onSuccess: (res: any) => {
|
||||
queryClient.invalidateQueries({ queryKey: ['batch-detail'] })
|
||||
queryClient.invalidateQueries({ queryKey: ['batches'] })
|
||||
if (res.data?.details) {
|
||||
const map = new Map<string, { grade: string | null; coefficient: number }>()
|
||||
for (const d of res.data.details) {
|
||||
map.set(d.employeeId, { grade: d.grade, coefficient: d.coefficient })
|
||||
}
|
||||
setPerfDetails(map)
|
||||
}
|
||||
if (res.data?.filled > 0) {
|
||||
toast.success(res.data.message)
|
||||
} else {
|
||||
@@ -1239,18 +1231,14 @@ function BatchDetail({ batchId, onBack }: { batchId: string; onBack: () => void
|
||||
{renderCell(entry, 'baseSalary')}
|
||||
{(() => {
|
||||
const perfVal = entry.performanceSalary || 0
|
||||
const perfInfo = perfDetails.get(entry.employeeId)
|
||||
const coef = perfInfo?.coefficient
|
||||
const grade = perfInfo?.grade
|
||||
const grade = entry.perfGrade || null
|
||||
const coef = entry.perfCoefficient != null ? entry.perfCoefficient : null
|
||||
// 颜色:A(1.2)=绿色, C(0.8)=橙色, D(0.6)=红色, B(1.0)/无=默认
|
||||
let colorClass = ''
|
||||
let title = ''
|
||||
if (coef != null && coef !== 1.0) {
|
||||
if (coef > 1.0) { colorClass = 'text-green-600'; title = `考核等级 ${grade},系数 ${coef}` }
|
||||
else if (coef >= 0.8) { colorClass = 'text-orange-600'; title = `考核等级 ${grade},系数 ${coef}` }
|
||||
else { colorClass = 'text-red-600'; title = `考核等级 ${grade},系数 ${coef}` }
|
||||
} else if (coef === 1.0 && grade) {
|
||||
title = `考核等级 ${grade},系数 1.0`
|
||||
if (coef > 1.0) colorClass = 'text-green-600'
|
||||
else if (coef >= 0.8) colorClass = 'text-orange-600'
|
||||
else colorClass = 'text-red-600'
|
||||
}
|
||||
const isEditing = editCell?.employeeId === entry.employeeId && editCell?.field === 'performanceSalary'
|
||||
const canEdit = !isArchived && editableFields.includes('performanceSalary')
|
||||
@@ -1273,17 +1261,23 @@ function BatchDetail({ batchId, onBack }: { batchId: string; onBack: () => void
|
||||
return (
|
||||
<td
|
||||
key="performanceSalary"
|
||||
className={`py-2 px-2 text-right ${canEdit ? 'cursor-text' : ''}`}
|
||||
className={`py-1 px-2 text-right ${canEdit ? 'cursor-text' : ''}`}
|
||||
onClick={() => canEdit && startEdit(entry.employeeId, 'performanceSalary', perfVal)}
|
||||
title={title}
|
||||
>
|
||||
{canEdit ? (
|
||||
<span className={`border-b border-dashed border-gray-300 hover:border-primary ${colorClass} ${perfVal === 0 ? 'text-gray-300' : ''}`}>
|
||||
{fmt(perfVal)}
|
||||
</span>
|
||||
) : (
|
||||
<span className={`${colorClass} ${perfVal === 0 ? 'text-gray-300' : ''}`}>{fmt(perfVal)}</span>
|
||||
)}
|
||||
<div className="flex flex-col items-end leading-tight">
|
||||
{canEdit ? (
|
||||
<span className={`border-b border-dashed border-gray-300 hover:border-primary ${colorClass} ${perfVal === 0 ? 'text-gray-300' : ''}`}>
|
||||
{fmt(perfVal)}
|
||||
</span>
|
||||
) : (
|
||||
<span className={`${colorClass} ${perfVal === 0 ? 'text-gray-300' : ''}`}>{fmt(perfVal)}</span>
|
||||
)}
|
||||
{grade && (
|
||||
<span className={`text-[10px] ${colorClass || 'text-gray-400'}`}>
|
||||
{grade}·{coef != null ? coef.toFixed(1) : '1.0'}
|
||||
</span>
|
||||
)}
|
||||
</div>
|
||||
</td>
|
||||
)
|
||||
})()}
|
||||
|
||||
Reference in New Issue
Block a user