feat(overtime-contingent) : export PDF groupé par site (heures supp payées)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-11 17:10:11 +02:00
parent 00d5b810be
commit 9fdb8cfa8d
3 changed files with 248 additions and 0 deletions
@@ -0,0 +1,54 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<style>
@page { margin: 16px; }
body { font-family: DejaVu Sans, sans-serif; font-size: 10px; color: #000; }
h1 { font-size: 15px; margin: 0 0 2px; }
.meta { font-size: 9px; color: #555; margin-bottom: 8px; }
table { width: 100%; border-collapse: collapse; }
th, td { border: 1px solid #999; padding: 2px 3px; text-align: center; }
th { background: #d9d9d9; }
td.name, th.name { text-align: left; width: 150px; padding-left: 4px; padding-right: 6px; }
td.data, th.data { width: 44px; font-size: 9px; }
td.total, th.total { width: 90px; font-weight: bold; white-space: nowrap; }
td.exceeded { color: #c00; }
tr.site-title td { text-align: left; font-weight: bold; }
</style>
</head>
<body>
<h1>Contingent heures supplémentaires payées — {{ year }}</h1>
<div class="meta">Édité le {{ exportedAt }}</div>
{% set months = ['Janv', 'Févr', 'Mars', 'Avr', 'Mai', 'Juin', 'Juil', 'Août', 'Sept', 'Oct', 'Nov', 'Déc'] %}
<table>
<thead>
<tr>
<th class="name">Nom</th>
{% for m in months %}
<th class="data">{{ m }}</th>
{% endfor %}
<th class="total">Total payé / payable</th>
</tr>
</thead>
<tbody>
{% for group in groups %}
<tr class="site-title">
<td colspan="14" style="background: {{ group.siteColor|default('#eee') }}">{{ group.siteName }}</td>
</tr>
{% for row in group.rows %}
<tr>
<td class="name">{{ row.employeeName }}</td>
{% for cell in row.cells %}
<td class="data">{{ cell }}</td>
{% endfor %}
<td class="total{{ row.exceeded ? ' exceeded' : '' }}">{{ row.totalHours }} / {{ row.capHours }} h</td>
</tr>
{% endfor %}
{% endfor %}
</tbody>
</table>
</body>
</html>