feat(overtime-contingent) : libellé header « Total H.payés » au lieu de « Contingent »
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -115,7 +115,7 @@ export const useEmployeeDetailPage = () => {
|
||||
if (!c) return ''
|
||||
const h = c.paidMinutes / 60
|
||||
const hStr = Number.isInteger(h) ? String(h) : (Math.round(h * 10) / 10).toFixed(1).replace('.', ',')
|
||||
return `Contingent ${c.year} : ${hStr} h / ${c.capHours} h`
|
||||
return `Total H.payés ${c.year} : ${hStr} h / ${c.capHours} h`
|
||||
})
|
||||
const overtimeContingentExceeded = computed(() => {
|
||||
const c = overtimeContingent.value
|
||||
|
||||
Reference in New Issue
Block a user