Blame view

src/Template/Documents/fiche_metrologique.ctp 10.7 KB
e956094e   Alexis Proust   ajout nouveau fic...
1
<?php
63c3cb16   epallier   Nombreux petits b...
2
3
/*
 * Fiche metrologique
ea90a25d   Etienne Pallier   Production avec d...
4
 * Impression en pdf (avec fpdf)
e956094e   Alexis Proust   ajout nouveau fic...
5
 */
ea90a25d   Etienne Pallier   Production avec d...
6

e956094e   Alexis Proust   ajout nouveau fic...
7
8
9
10
11
12
$this->layout = 'pdf_print';

// Nouvelle page de document
$fpdf->AddPage();

$fpdf->Ln(7);
63c3cb16   epallier   Nombreux petits b...
13
14
15
$fpdf->SetFont('Arial', 'B', 18);
$texte = "Fiche métrologique";
$fpdf->Cell(190, 10, utf8_decode($texte), 0, 1, 'C');
e956094e   Alexis Proust   ajout nouveau fic...
16
17

$fpdf->Ln(7);
63c3cb16   epallier   Nombreux petits b...
18
19
20
$fpdf->SetFont('Arial', 'B', 16);
$texte = "Information suivi :";
$fpdf->Cell(190, 10, utf8_decode($texte), 0, 1, 'L');
e956094e   Alexis Proust   ajout nouveau fic...
21

63c3cb16   epallier   Nombreux petits b...
22
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
23
$fpdf->Ln(7);
63c3cb16   epallier   Nombreux petits b...
24
25
26
$fpdf->SetFont('Arial', '', 12);
$texte = "Suivi n° :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
27
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
28
29
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(120, 6, utf8_decode($suivi->id), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
30

63c3cb16   epallier   Nombreux petits b...
31
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
32
$fpdf->Ln(7);
63c3cb16   epallier   Nombreux petits b...
33
34
35
$fpdf->SetFont('Arial', '', 12);
$texte = "date prochain controle :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
36
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
37
38
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($suivi->date_prochain_controle), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
39

63c3cb16   epallier   Nombreux petits b...
40
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
41
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
42
43
44
$fpdf->SetFont('Arial', '', 12);
$texte = "Unité :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
45
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
46
47
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($unite), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
48

63c3cb16   epallier   Nombreux petits b...
49
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
50
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
51
52
53
$fpdf->SetFont('Arial', '', 12);
$texte = "Plage de mesure :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
54
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
55
56
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($suivi->plage_debut . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
57
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
58
59
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($suivi->plage_fin . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
60

63c3cb16   epallier   Nombreux petits b...
61
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
62
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
63
64
65
$fpdf->SetFont('Arial', '', 12);
$texte = "Résolution :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
66
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
67
68
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($suivi->resolution . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
69

63c3cb16   epallier   Nombreux petits b...
70
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
71
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
72
73
74
$fpdf->SetFont('Arial', '', 12);
$texte = "Tolerance :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
75
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
76
77
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($suivi->tolerance . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
78

63c3cb16   epallier   Nombreux petits b...
79
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
80
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
81
82
83
$fpdf->SetFont('Arial', '', 12);
$texte = "Sensibilité :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
84
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
85
86
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($suivi->sensibilite . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
87

63c3cb16   epallier   Nombreux petits b...
88
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
89
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
90
91
92
$fpdf->SetFont('Arial', '', 12);
$texte = "Justesse :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
93
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
94
95
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($suivi->justesse . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
96

63c3cb16   epallier   Nombreux petits b...
97
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
98
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
99
100
101
$fpdf->SetFont('Arial', '', 12);
$texte = "Fidélité :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
102
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
103
104
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($suivi->fidelite . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
105

63c3cb16   epallier   Nombreux petits b...
106
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
107
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
108
109
110
$fpdf->SetFont('Arial', '', 12);
$texte = "EMT standart :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
111
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
112
113
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($suivi->emtstandart . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
114

63c3cb16   epallier   Nombreux petits b...
115
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
116
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
117
118
119
$fpdf->SetFont('Arial', '', 12);
$texte = "Type de mesure :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
120
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
121
122
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($suivi->typemesure), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
123
124

$fpdf->Ln(7);
63c3cb16   epallier   Nombreux petits b...
125
126
127
$fpdf->SetFont('Arial', 'B', 16);
$texte = "Information fiche métrologique :";
$fpdf->Cell(190, 10, utf8_decode($texte), 0, 1, 'L');
e956094e   Alexis Proust   ajout nouveau fic...
128

63c3cb16   epallier   Nombreux petits b...
129
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
130
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
131
132
133
$fpdf->SetFont('Arial', '', 12);
$texte = "Fiche n° :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
134
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
135
136
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->id), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
137

63c3cb16   epallier   Nombreux petits b...
138
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
139
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
140
141
142
$fpdf->SetFont('Arial', '', 12);
$texte = "Date de la fiche :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
143
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
144
145
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->datefiche), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
146

63c3cb16   epallier   Nombreux petits b...
147
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
148
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
149
150
151
$fpdf->SetFont('Arial', '', 12);
$texte = "Résolution :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
152
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
153
154
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->resolution), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
155

63c3cb16   epallier   Nombreux petits b...
156
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
157
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
158
159
160
$fpdf->SetFont('Arial', '', 12);
$texte = "EMT personnel :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
161
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
162
163
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->emtpersonnel . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
164

63c3cb16   epallier   Nombreux petits b...
165
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
166
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
167
168
169
$fpdf->SetFont('Arial', '', 12);
$texte = "Condition env. :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
170
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
171
172
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->conditionEnv . ' °C'), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
173

63c3cb16   epallier   Nombreux petits b...
174
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
175
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
176
177
178
$fpdf->SetFont('Arial', '', 12);
$texte = "Etat du materiel :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
179
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
180
181
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->etatmateriel), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
182

63c3cb16   epallier   Nombreux petits b...
183
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
184
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
185
186
187
$fpdf->SetFont('Arial', '', 12);
$texte = "Mesurande :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
188
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
189
190
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->mesurande . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
191

63c3cb16   epallier   Nombreux petits b...
192
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
193
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
194
195
196
$fpdf->SetFont('Arial', '', 12);
$texte = "Nombre de mesure :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
197
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
198
199
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->nbMesure), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
200

63c3cb16   epallier   Nombreux petits b...
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
foreach ($mesures as $mesure) {
    
    // Texte d'intitule
    $fpdf->Ln(9);
    $fpdf->SetFont('Arial', '', 12);
    $texte = "Valeur :";
    $fpdf->Cell(30, 6, utf8_decode($texte), '', 0, 'L', false);
    // Texte de donnees
    $fpdf->SetFont('Times', 'B', 12);
    $fpdf->Cell(30, 6, utf8_decode($mesure->valeur . ' ' . $symbole), '1', 0, 'L', false);
    
    // Texte d'intitule
    
    $fpdf->SetFont('Arial', '', 12);
    $texte = "Erreur :";
    $fpdf->Cell(30, 6, utf8_decode($texte), '', 0, 'L', false);
    // Texte de donnees
    $fpdf->SetFont('Times', 'B', 12);
    $fpdf->Cell(30, 6, utf8_decode($mesure->erreur . ' ' . $symbole), '1', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
220
221
}

63c3cb16   epallier   Nombreux petits b...
222
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
223
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
224
225
226
$fpdf->SetFont('Arial', '', 12);
$texte = "Moyenne :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
227
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
228
229
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->moyenne . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
230

63c3cb16   epallier   Nombreux petits b...
231
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
232
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
233
234
235
$fpdf->SetFont('Arial', '', 12);
$texte = "Ecart type :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
236
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
237
238
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->ecarttype . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
239

63c3cb16   epallier   Nombreux petits b...
240
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
241
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
242
243
244
$fpdf->SetFont('Arial', '', 12);
$texte = "Ua :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
245
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
246
247
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->ua . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
248

63c3cb16   epallier   Nombreux petits b...
249
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
250
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
251
252
253
$fpdf->SetFont('Arial', '', 12);
$texte = "Ub :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
254
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
255
256
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->ub . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
257

63c3cb16   epallier   Nombreux petits b...
258
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
259
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
260
261
262
$fpdf->SetFont('Arial', '', 12);
$texte = "Uf :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
263
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
264
265
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->uf . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
266

63c3cb16   epallier   Nombreux petits b...
267
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
268
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
269
270
271
$fpdf->SetFont('Arial', '', 12);
$texte = "Uc :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
272
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
273
274
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->uc), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
275

63c3cb16   epallier   Nombreux petits b...
276
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
277
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
278
279
280
$fpdf->SetFont('Arial', '', 12);
$texte = "U :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
281
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
282
283
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->u . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
284

63c3cb16   epallier   Nombreux petits b...
285
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
286
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
287
288
289
$fpdf->SetFont('Arial', '', 12);
$texte = "Incertitude :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
290
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
291
292
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->incertitude . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
293

63c3cb16   epallier   Nombreux petits b...
294
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
295
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
296
297
298
$fpdf->SetFont('Arial', '', 12);
$texte = "Justesse :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
299
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
300
301
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->justesse . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
302

63c3cb16   epallier   Nombreux petits b...
303
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
304
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
305
306
307
$fpdf->SetFont('Arial', '', 12);
$texte = "Correction :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
308
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
309
310
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->correction . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
311
312

$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
313
314
$fpdf->SetFont('Arial', '', 12);
$fpdf->Cell(70, 6, utf8_decode('Le matériel vérifié est ' . $fiche->conformeEMTstandart . ' a l\'EMT standart'), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
315
316

$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
317
318
$fpdf->SetFont('Arial', '', 12);
$fpdf->Cell(70, 6, utf8_decode('Le matériel vérifié est ' . $fiche->conformeEMTperso . ' a l\'EMT personnel'), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
319

63c3cb16   epallier   Nombreux petits b...
320
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
321
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
322
323
324
$fpdf->SetFont('Arial', '', 12);
$texte = "Resultat :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
325
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
326
327
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->resultatfinal . ' ' . $symbole), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
328

63c3cb16   epallier   Nombreux petits b...
329
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
330
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
331
332
333
$fpdf->SetFont('Arial', '', 12);
$texte = "Retard :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
334
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
335
336
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->retard), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
337

63c3cb16   epallier   Nombreux petits b...
338
// Texte d'intitule
e956094e   Alexis Proust   ajout nouveau fic...
339
$fpdf->Ln(9);
63c3cb16   epallier   Nombreux petits b...
340
341
342
$fpdf->SetFont('Arial', '', 12);
$texte = "Observation :";
$fpdf->Cell(50, 6, utf8_decode($texte), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
343
// Texte de donnees
63c3cb16   epallier   Nombreux petits b...
344
345
$fpdf->SetFont('Times', 'B', 12);
$fpdf->Cell(70, 6, utf8_decode($fiche->observation), '', 0, 'L', false);
e956094e   Alexis Proust   ajout nouveau fic...
346
347

$fpdf->Output();