36149dd521
Endpoint API Platform GET /api/weighing_tickets/{id}/print.pdf (provider
renvoyant un binaire, pas de controller) sécurisé par
logistique.weighing_tickets.view. Rendu d'un template Twig hydraté avec le
ticket converti en PDF via Dompdf. Reproduit le modèle fourni : en-tête fixe
(logo + identité société, indépendant du site), pesées à vide/plein avec le
numéro de pesée affiché comme un DSD, poids net = plein − vide.
82 lines
3.6 KiB
Twig
82 lines
3.6 KiB
Twig
{#
|
|
Ticket de pesée (M5 Logistique) — gabarit imprimable hydraté côté serveur puis
|
|
converti en PDF par WeighingTicketPdfRenderer (Dompdf). Cf. spec-back M5 § 2.12
|
|
/ § 4.6 (RG-5.08). Reproduit fidèlement le modèle fourni (ticket_pesee.pdf).
|
|
|
|
En-tête FIXE (logo + identité société) : le ticket ne change pas en fonction du
|
|
site (décision Tristan, ERP-192). Le logo est injecté en data-URI par le renderer
|
|
(logoSrc) ; l'identité société est en dur ci-dessous.
|
|
|
|
Contraintes Dompdf : CSS2.1 (pas de flexbox/grid), mise en page par tableaux.
|
|
Police DejaVu Sans (UTF-8 — accents FR et « ° » rendus correctement).
|
|
#}
|
|
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<style>
|
|
@page { margin: 18mm 16mm; }
|
|
|
|
* { font-family: "DejaVu Sans", sans-serif; }
|
|
|
|
body { color: #000; font-size: 10px; margin: 0; }
|
|
|
|
.logo { margin-bottom: 16px; }
|
|
.logo img { height: 100px; }
|
|
|
|
.company-name { font-weight: bold; font-size: 12px; }
|
|
.company-line { font-size: 12px; }
|
|
|
|
.title { font-size: 22px; font-weight: bold; margin: 22px 0 18px; }
|
|
|
|
/* Lignes des deux pesées : tableau sans bordure, colonnes alignées. */
|
|
.weighings { border-collapse: collapse; font-size: 12px; }
|
|
.weighings td { vertical-align: top; white-space: nowrap; }
|
|
.weighings .c-label { width: 130px; }
|
|
.weighings .c-weight { width: 95px; }
|
|
.weighings .c-num { width: 175px; }
|
|
.weighings .c-dsd { width: auto; }
|
|
|
|
.net { font-size: 18px; font-weight: bold; margin-top: 26px; }
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% if logoSrc %}
|
|
<div class="logo"><img src="{{ logoSrc }}" alt="LPC LIOT"></div>
|
|
{% endif %}
|
|
|
|
<div class="company-name">SA LIOT Châtellerault</div>
|
|
<div class="company-line">Email : lpc.contacts@lpc-liot.fr</div>
|
|
<div class="company-line">RCS Châtellerault B 339 505 612</div>
|
|
|
|
<div class="title">Ticket de pesée</div>
|
|
|
|
{#
|
|
Référence de pesée affichée au client = un seul numéro, présenté comme un
|
|
DSD : en pesée MANUELLE c'est le numéro de pesée saisi (manualNumber), en
|
|
pesée AUTO c'est le DSD du pont. « N° pesée » et « DSD » sont la même chose
|
|
pour le client (RG-5.04) — on n'expose donc pas le compteur interne du pont
|
|
quand une pesée manuelle porte son propre numéro.
|
|
#}
|
|
{% set emptyRef = (ticket.emptyMode == 'MANUAL' and ticket.emptyManualNumber) ? ticket.emptyManualNumber : ticket.emptyDsd %}
|
|
{% set fullRef = (ticket.fullMode == 'MANUAL' and ticket.fullManualNumber) ? ticket.fullManualNumber : ticket.fullDsd %}
|
|
|
|
<table class="weighings">
|
|
<tr>
|
|
<td class="c-label">Poids à vide</td>
|
|
<td class="c-weight">{{ ticket.emptyWeight is not null ? ticket.emptyWeight ~ ' kg' : '' }}</td>
|
|
<td class="c-num">N° pesée à vide</td>
|
|
<td class="c-dsd">{% if emptyRef is not null %}DSD : {{ emptyRef }}{% endif %}{% if ticket.emptyDate %} {{ ticket.emptyDate|date('d/m/Y H:i:s') }}{% endif %}</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="c-label">Poids à plein</td>
|
|
<td class="c-weight">{{ ticket.fullWeight is not null ? ticket.fullWeight ~ ' kg' : '' }}</td>
|
|
<td class="c-num">N° pesée à plein</td>
|
|
<td class="c-dsd">{% if fullRef is not null %}DSD : {{ fullRef }}{% endif %}{% if ticket.fullDate %} {{ ticket.fullDate|date('d/m/Y H:i:s') }}{% endif %}</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="net">Poids : {{ ticket.netWeight is not null ? ticket.netWeight ~ ' kg' : '—' }}</div>
|
|
</body>
|
|
</html>
|