Blame view

src/Template/Documents/fiche_materiel.ctp 7.93 KB
d58b8953   Alexandre   Version: 2.4.4.0
1
2
3
4
5
6
7
8
9
<?php
/* Fiche materiel
 * Impression en pdf
 */
$this->layout = 'pdf_print';

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

1f42188e   Alexandre   Version: 2.4.4.4
10
$this->requestAction('/QrCodes/creer/');
d58b8953   Alexandre   Version: 2.4.4.0
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
$qrCode=$this->request->session()->read("qrCodePath");
$fpdf->Image($qrCode,180,10,-100);

$fpdf->Ln(7);
$fpdf->SetFont('Arial','B',18);
$texte="Fiche matériel";
$fpdf->Cell(190,10,utf8_decode($texte),0,1,'C');


// Texte  d'intitule
$fpdf->Ln(7);
$fpdf->SetFont('Arial','',12);
$texte= "Designation :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(120,6,utf8_decode($materiel->designation),'',0,'L',false);


;// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Numero laboratoire :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($materiel->numero_laboratoire),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Description :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($materiel->description),'',0,'L',false);


$type = "";
if($materiel->materiel_administratif == 1 && $materiel->materiel_technique == 1) {
	$type = 'Administratif et technique';
}
else if ($materiel->materiel_administratif == 1) {
	$type = 'Administratif';
}
else if ($materiel->materiel_technique == 1) {
	$type = 'Technique';
}
// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Materiel inventorié :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($type),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Organisme :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($organisme),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Domaine :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($surCategorie),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Catégorie :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($categorie),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Sous-Catégorie :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($sousCategorie),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Date d'achat :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($materiel->date_acquisition),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Date de reception :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($materiel->date_reception),'',0,'L',false);


if($materiel->etiquette == 0) {
	$etiq="Non";
}else {
	$etiq="Oui";
}
// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Etiquette :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($etiq),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
e4a7e5c0   Alexis Proust   mise a jour fichier
148
$texte= $nom_groupe_thematique." :";
d58b8953   Alexandre   Version: 2.4.4.0
149
150
151
152
153
154
155
156
157
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($groupesMetier),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
e4a7e5c0   Alexis Proust   mise a jour fichier
158
$texte= $nom_groupe_metier." :";
d58b8953   Alexandre   Version: 2.4.4.0
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($groupesThematique),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Statut :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($materiel->status),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Prix (HT) :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($materiel->prix_ht),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Fournisseur :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($materiel->fournisseur),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Lieu de stockage :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($site),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Détail lieu de stockage :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($materiel->lieu_detail),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Nom du propriétaire :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($materiel->nom_responsable),'',0,'L',false);


// Texte  d'intitule
$fpdf->Ln(9);
$fpdf->SetFont('Arial','',12);
$texte= "Email du propriétaire :";
$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
// Texte de donnees
$fpdf->SetFont('Times','B',12);
$fpdf->Cell(70,6,utf8_decode($materiel->email_responsable),'',0,'L',false);

if(in_array($role, ['Administration', 'Administration Plus'])) {
	$fpdf->Ln(10);
	$fpdf->SetFont('Arial','',16);
	$texte= "Informations administratives :";
	$fpdf->SetTextColor(255,0,0);
	$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
	$fpdf->SetTextColor(0,0,0);

	// Texte  d'intitule
	$fpdf->Ln(9);
	$fpdf->SetFont('Arial','',12);
	$texte= "CentreFinancier/EOTP :";
	$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
	// Texte de donnees
	$fpdf->SetFont('Times','B',12);
	$fpdf->Cell(70,6,utf8_decode($materiel->eotp),'',0,'L',false);
	
	// Texte  d'intitule
	$fpdf->Ln(9);
	$fpdf->SetFont('Arial','',12);
	$texte= "N° commande :";
	$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
	// Texte de donnees
	$fpdf->SetFont('Times','B',12);
	$fpdf->Cell(70,6,utf8_decode($materiel->numero_commande),'',0,'L',false);
	
	// Texte  d'intitule
	$fpdf->Ln(9);
	$fpdf->SetFont('Arial','',12);
	$texte= "Code comptable :";
	$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
	// Texte de donnees
	$fpdf->SetFont('Times','B',12);
	$fpdf->Cell(70,6,utf8_decode($materiel->code_comptable),'',0,'L',false);
	
	// Texte  d'intitule
	$fpdf->Ln(9);
	$fpdf->SetFont('Arial','',12);
	$texte= "N° de série :";
	$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
	// Texte de donnees
	$fpdf->SetFont('Times','B',12);
	$fpdf->Cell(70,6,utf8_decode($materiel->numero_serie),'',0,'L',false);
	
	// Texte  d'intitule
	$fpdf->Ln(9);
	$fpdf->SetFont('Arial','',12);
	$texte= "N. Inventaire Organisme :";
	$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
	// Texte de donnees
	$fpdf->SetFont('Times','B',12);
	$fpdf->Cell(70,6,utf8_decode($materiel->numero_inventaire_organisme),'',0,'L',false);
	
	// Texte  d'intitule
	$fpdf->Ln(9);
	$fpdf->SetFont('Arial','',12);
	$texte= "N. inventaire (ancien) :";
	$fpdf->Cell(50,6,utf8_decode($texte),'',0,'L',false);
	// Texte de donnees
	$fpdf->SetFont('Times','B',12);
	$fpdf->Cell(70,6,utf8_decode($materiel->numero_inventaire_old),'',0,'L',false);
	
}


$fpdf->Output();