Blame view

src/Template/Materiels/view.ctp 20.7 KB
bb6d5bed   Alexandre   Migration des vue...
1
2
3

<div class="materiels view">

4dae83a2   Alexandre   Version: 2.5.1.0
4
5
6
7
8
9
10
11
12
13
	<h2>
    <?php
				
if (h ( $materiel->status ) == 'ARCHIVED')
					echo '<i class="icon-inbox"></i> ';
				$panne = '';
				if (h ( $materiel->hors_service )) {
					$panne = ' (HORS SERVICE)';
				}
				?>	
302307ec   Alexandre   Version: 2.4.7.0
14
15
    
    <?= h($materiel->designation).$panne?>
bb6d5bed   Alexandre   Migration des vue...
16
    <span style="font-size: 70%; color: grey;">
4dae83a2   Alexandre   Version: 2.5.1.0
17
    <?= h($materiel->numero_laboratoire)?>
bb6d5bed   Alexandre   Migration des vue...
18
19
    <?php if (h($materiel->status) == 'ARCHIVED') echo ' (Archivé)'; ?>
    </span>
4dae83a2   Alexandre   Version: 2.5.1.0
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
	</h2>
	</br>
	<div style="text-align: center;">
    <?php
				
				if (isset ( $imgMateriel )) {
					echo $this->Html->image ( 'photos/' . $imgMateriel, [ 
							'alt' => 'Photo matériel',
							'style' => 'max-width: 300px; text-align: center;' 
					] );
				}
				
				// Url transformé en QrCode
				$this->request->session ()->write ( "qrUrl", $this->request->env ( 'SERVER_NAME' ) . $this->request->env ( 'REQUEST_URI' ) );
				
				$this->requestAction ( '/QrCodes/creer/' );
				echo $this->Html->image ( 'qrcodes/' . $this->request->session ()->read ( "filename" ), [ 
						'alt' => 'QrCode : ' . $materiel->numero_laboratoire,
						'style' => 'float: right' 
				] );
				echo '</div>';
				?>	
   </br>
4fd23929   Alexandre   Version: 2.5.0
43

4dae83a2   Alexandre   Version: 2.5.1.0
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
148
149
150
151
152
153
154
155
156
157
158
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
		<div class="actions"
			style="margin-bottom: 20px; width: 100%; float: none; padding: 10px 0;">
    <?php
				if (in_array ( $materiel->status, [ 
						'CREATED',
						'VALIDATED' 
				] )) {
					if (($role == 'Utilisateur' && (in_array ( $username, [ 
							$materiel->nom_createur,
							$materiel->nom_responsable 
					] ))) || (in_array ( $role, [ 
							'Administration',
							'Administration Plus',
							'Super Administrateur' 
					] )) || ($role == 'Responsable' && ($materiel->groupes_metier_id == $userConnected->groupes_metier_id || $materiel->groupes_thematique_id == $userConnected->groupe_thematique_id))) {
						echo $this->Html->link ( __ ( '<i class="icon-pencil"></i> Editer ce matériel' ), [ 
								'action' => 'edit',
								$materiel->id 
						], [ 
								'escape' => false,
								'onclick' => 'return true;',
								'style' => 'margin-right: 10px' 
						] );
					}
				} else {
					if (in_array ( $role, [ 
							'Administration Plus',
							'Super Administrateur' 
					] )) {
						echo $this->Html->link ( __ ( '<i class="icon-pencil"></i> Editer ce matériel' ), [ 
								'action' => 'edit',
								$materiel->id 
						], [ 
								'escape' => false,
								'onclick' => 'return true;',
								'style' => 'margin-right: 10px' 
						] );
					}
				}
				
				if ($materiel->status == 'VALIDATED') {
					// BOUTON NOUVEAU SUIVI
					echo $this->Html->link ( '<i class="icon-plus"></i> Nouv. Suivi', [ 
							'controller' => 'suivis',
							'action' => 'add',
							$materiel->id 
					], [ 
							'title' => 'Faire un nouveau suivi de ce matériel',
							'style' => 'margin-right: 10px',
							'escape' => false 
					] ); // End link
					   
					// BOUTON NOUVEL EMPRUNT
					echo $this->Html->link ( '<i class="icon-plus"></i> Nouv. Emprunt', [ 
							'controller' => 'emprunts',
							'action' => 'add',
							$materiel->id 
					], [ 
							'title' => 'Faire un nouvel emprunt de ce matériel',
							'style' => 'margin-right: 10px',
							'escape' => false 
					] ); // End link
				}
				
				if (($role == 'Utilisateur' && (in_array ( $username, [ 
						$materiel->nom_createur,
						$materiel->nom_responsable 
				] ))) || (in_array ( $role, [ 
						'Administration',
						'Administration Plus',
						'Super Administrateur' 
				] )) || ($role == 'Responsable' && ($materiel->groupes_metier_id == $userConnected->groupes_metier_id || $materiel->groupes_thematique_id == $userConnected->groupe_thematique_id))) {
					
					echo $this->Html->link ( '<i class="icon-file"></i> Lier un Doc.', [ 
							'controller' => 'documents',
							'action' => 'add',
							$materiel->id,
							'mat' 
					], [ 
							'title' => 'Attacher un Doc. à ce matériel',
							'style' => 'margin-right: 10px',
							'escape' => false 
					] );
					
					if ($materiel->photo_id != null) {
						echo $this->Html->link ( '<i class="icon-file"></i> Remplacer la photo.', [ 
								'controller' => 'documents',
								'action' => 'add',
								$materiel->id,
								'mat',
								'photo' 
						], [ 
								'title' => 'Remplacer la photo de ce matériel',
								'style' => 'margin-right: 10px',
								'escape' => false 
						] );
					} else {
						echo $this->Html->link ( '<i class="icon-file"></i> Lier une photo.', [ 
								'controller' => 'documents',
								'action' => 'add',
								$materiel->id,
								'mat',
								'photo' 
						], [ 
								'title' => 'Attacher une photo à ce matériel',
								'style' => 'margin-right: 10px',
								'escape' => false 
						] );
					}
				}
				
				if (in_array ( $role, [ 
						'Administration',
						'Administration Plus',
						'Super Administrateur' 
				] )) {
					if (($materiel->status == 'VALIDATED') || ($materiel->status == 'CREATED')) {
						echo $this->Html->link ( '<i class="icon-file"></i> Doc. admission', [ 
								'controller' => 'documents',
								'action' => 'admission',
								$materiel->numero_laboratoire 
						], [ 
								'title' => 'Voir le document d\'admission',
								'style' => 'margin-right: 10px',
								'escape' => false 
						] );
					} 					// Doc sortie (admin only)
					else if (($materiel->status == 'ARCHIVED') || ($materiel->status == 'TOBEARCHIVED')) {
						echo $this->Html->link ( '<i class="icon-file"></i> Doc. sortie', [ 
								'controller' => 'documents',
								'action' => 'sortie',
								$materiel->numero_laboratoire 
						], [ 
								'title' => 'Voir le document de sortie',
								'style' => 'margin-right: 10px',
								'escape' => false 
						] );
					}
				}
				
				if (in_array ( $role, [ 
						'Administration',
						'Administration Plus',
						'Super Administrateur' 
				] ) || ($role == 'Responsable' && ($materiel->groupes_metier_id == $userConnected->groupes_metier_id || $materiel->groupes_thematique_id == $userConnected->groupe_thematique_id))) {
					// 2) Bouton de changement de statut : Valider, Demander archivage, ou Archiver
					switch ($materiel->status) {
						case "CREATED" :
							echo $this->Html->link ( '<i class="icon-ok-sign"></i> Valider', [ 
									'action' => 'statusValidated',
									$materiel->id,
									'view' 
							], [ 
									'title' => 'Valider le matériel',
									'style' => 'margin-right: 10px',
									'escape' => false 
							] );
							break;
						
						case "VALIDATED" :
							echo $this->Html->link ( '<i class="icon-ok-sign"></i> Demander sortie', [ 
									'action' => 'statusToBeArchived',
									$materiel->id,
									'view' 
							], [ 
									'title' => 'Demander la sortie de l\'inventaire',
									'style' => 'margin-right: 10px',
									'escape' => false 
							] );
							break;
						
						case "TOBEARCHIVED" :
							if ($role != 'Responsable' && $role != 'Super Administrateur') {
								echo $this->Html->link ( '<i class="icon-ok-sign"></i> Sortie inventaire', [ 
										'action' => 'statusArchived',
										$materiel->id,
										'view' 
								], [ 
										'title' => 'Sortir définitivement de l\'inventaire',
										'style' => 'margin-right: 10px',
										'escape' => false,
										'confirm' => 'Êtes-vous sur de bien vouloir archiver ' . $materiel->designation . ' ?' 
								] );
							}
							break;
					} // switch
				}
				
				echo $this->Html->link ( '<i class="icon-pencil"></i> Copier ce matériel', [ 
						'controller' => 'materiels',
						'action' => 'add',
						$materiel->id 
				], [ 
						'title' => 'Copier ce matériel',
						'style' => 'margin-right: 10px; margin-top: 10px; display: inline-block',
						'escape' => false 
				] );
				
				echo $this->Html->link ( '<i class="icon-file"></i> Fiche matériel', [ 
						'controller' => 'documents',
						'action' => 'ficheMateriel',
						$materiel->numero_laboratoire 
				], [ 
						'title' => 'Voir la fiche du materiel',
						'style' => 'margin-right: 10px',
						'escape' => false 
				] );
				
				// BOUTON ETIQUETTE POSEE
				if ($configuration->hasPrinter && in_array ( $role, [ 
						'Administration',
						'Administration Plus',
						'Super Administrateur' 
				] )) {
					echo '<div class="actions" style="margin-bottom: 20px; width: 100%; float: none; padding: 10px 0;">';
					
					$action = 'Impr. ruban';
					echo $this->Html->link ( '<i class="icon-print"></i> ' . $action, [ 
							'action' => 'printLabelRuban',
							h ( $materiel->id ),
							'view' 
					], [ 
							'title' => 'Imprimer sur un ruban 12mm',
							'style' => 'margin-right: 10px',
							'escape' => false,
							'onclick' => 'return true;' 
					] ); // End link
					
					echo $this->Html->link ( '<i class="icon-file"></i> ' . (h ( $materiel->etiquette ) ? "Etiquette NON posée sur le matériel" : "Etiquette posée sur le matériel"), [ 
							'controller' => 'materiels',
							'action' => h ( $materiel->etiquette ) ? 'setLabelIsNotPlaced' : 'setLabelIsPlaced',
							h ( $materiel->id ),
							'view' 
					], [ 
							'title' => h ( $materiel->etiquette ) ? "En cliquant sur ce bouton, vous déclarez que l'étiquette n'a PAS été posée sur le matériel" : "En cliquant sur ce bouton, vous certifiez que l'étiquette a bien été posée sur le matériel",
							'style' => 'margin-left: 0px',
							'escape' => false 
					] ); // End link
					
					echo '</div>';
				}
				
				?>
4260780b   Alexandre   Migration vue, co...
287
    </div>
4dae83a2   Alexandre   Version: 2.5.1.0
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361

		<h3 id="t_informations" style="cursor: pointer;">
			<i class="icon-chevron-down" style="font-size: 14px;"
				id="i_informations"></i> <span style="text-decoration: underline;">Informations</span>
		</h3>
		<div id="informations" style="margin-bottom: 20px;">
			<table>
				<tr>
					<th style="width: 250px;"></th>
					<th></th>
				</tr>
    
    <?php
				$type = "";
				if (h ( $materiel->materiel_administratif ) == 1 && h ( $materiel->materiel_technique ) == 1) {
					$type = 'Administratif et technique';
				} else if (h ( $materiel->materiel_administratif ) == 1) {
					$type = 'Administratif';
				} else if (h ( $materiel->materiel_technique ) == 1) {
					$type = 'Technique';
				}
				
				$displayElement ( __ ( 'Description' ), h ( $materiel->description ) );
				$displayElement ( __ ( 'Materiel inventorié' ), $type );
				$displayElement ( __ ( 'Organisme' ), $materiel->has ( 'organisme' ) ? h ( $materiel->organisme->nom ) : '' );
				$displayElement ( __ ( 'Domaine' ), $materiel->has ( 'sur_category' ) ? h ( $materiel->sur_category->nom ) : '' );
				$displayElement ( __ ( 'Catégorie' ), $materiel->has ( 'category' ) ? h ( $materiel->category->nom ) : '' );
				$displayElement ( __ ( 'Sous-Catégorie' ), $materiel->has ( 'sous_category' ) ? h ( $materiel->sous_category->nom ) : '' );
				
				if (h ( $materiel->etiquette ) == 0) {
					$etiq = "Non";
				} else {
					$etiq = "Oui";
				}
				$displayElement ( __ ( 'Etiquette posée' ), $etiq );
				$displayElement ( __ ( $configuration->nom_groupe_thematique ), $materiel->has ( 'groupes_thematique' ) ? $this->Html->link ( $materiel->groupes_thematique->nom, [ 
						'controller' => 'GroupesThematiques',
						'action' => 'view',
						$materiel->groupes_thematique->id 
				] ) : '' );
				$displayElement ( __ ( $configuration->nom_groupe_metier ), $materiel->has ( 'groupes_metier' ) ? $this->Html->link ( $materiel->groupes_metier->nom, [ 
						'controller' => 'GroupesMetiers',
						'action' => 'view',
						$materiel->groupes_metier->id 
				] ) : '' );
				$displayElement ( __ ( 'Date d\'achat' ), h ( $materiel->date_acquisition ) );
				
				$displayElement ( __ ( 'Date de reception' ), h ( $materiel->date_reception ) );
				if (! empty ( h ( $materiel->duree_garntie ) )) {
					$displayElement ( __ ( 'Duree garantie' ), h ( $materiel->duree_garantie ) . ' ' . h ( $materiel->unite_duree_garantie ) );
				}
				$displayElement ( __ ( 'Date fin de garantie' ), h ( $materiel->date_fin_garantie ) );
				
				$displayElement ( __ ( 'Statut' ), h ( $materiel->status ) );
				if ($materiel->status == 'ARCHIVED') {
					$displayElement ( __ ( 'Date d\'archivage' ), h ( $materiel->date_archivage ) );
				}
				$displayElement ( __ ( 'Prix (HT)' ), h ( $materiel->prix_ht ) . ' €' );
				$displayElement ( __ ( 'Fournisseur' ), h ( $materiel->fournisseur ) );
				
				$displayElement ( __ ( 'Lieu de stockage' ), $materiel->has ( 'site' ) ? h ( $materiel->site->nom ) : '' );
				$displayElement ( __ ( 'Détail lieu de stockage' ), h ( $materiel->lieu_detail ) );
				
				$displayElement ( __ ( 'Nom du propriétaire' ), $this->Html->link ( h ( $materiel->nom_responsable ), 'mailto:' . h ( $materiel->email_responsable ) ) );
				$displayElement ( __ ( 'N. interne (labo)' ), h ( $materiel->numero_laboratoire ) );
				
				if ($role == 'Super Administrateur') {
					$displayElement ( __ ( 'Date création' ), h ( $materiel->created ) );
					$displayElement ( __ ( 'Nom du créateur' ), h ( $materiel->nom_createur ) );
					$displayElement ( __ ( 'Date modification' ), h ( $materiel->modified ) );
					$displayElement ( __ ( 'Nom du modificateur' ), h ( $materiel->nom_modificateur ) );
				}
				
				?>
6c4edfa3   Alexandre   First Commit LabI...
362
    </table>
4dae83a2   Alexandre   Version: 2.5.1.0
363
		</div>
cb0ff3ca   Alexandre   Version: 2.4.3.1
364
365
    

4dae83a2   Alexandre   Version: 2.5.1.0
366
367
368
369
370
371
372
373
	<?php
	// Partie admin
	if (in_array ( $role, [ 
			'Administration',
			'Administration Plus',
			'Super Administrateur' 
	] )) {
		echo '<h3 id="t_informations_admin" style="cursor: pointer;">';
cb0ff3ca   Alexandre   Version: 2.4.3.1
374
375
376
377
378
379
		echo '<i class="icon-chevron-down" style="font-size: 14px;" id="i_informations_admin"></i>';
		echo '<span style="text-decoration: underline;">Informations administratives</span>';
		echo '</h3>';
		echo '<div id="informations_admin" style="margin-bottom: 20px;">';
		echo '<table>';
		echo '<tr><th style="width: 250px;"></th><th></th></tr>';
4dae83a2   Alexandre   Version: 2.5.1.0
380
381
382
383
384
385
386
387
388
389
390
391
392
		
		echo '<tr><td><strong>' . __ ( 'CentreFinancier/EOTP' ) . ' </strong></td><td>' . h ( $materiel->eotp ) . '</td></tr>';
		echo '<tr><td><strong>' . __ ( 'N° commande' ) . ' </strong></td><td>' . h ( $materiel->numero_commande ) . '</td></tr>';
		echo '<tr><td><strong>' . __ ( 'Code comptable' ) . ' </strong></td><td>' . h ( $materiel->code_comptable ) . '</td></tr>';
		echo '<tr><td><strong>' . __ ( 'N° de série' ) . ' </strong></td><td>' . h ( $materiel->numero_serie ) . '</td></tr>';
		echo '<tr><td><strong>' . __ ( 'N. Inventaire Organisme' ) . ' </strong></td><td>' . h ( $materiel->numero_inventaire_organisme ) . '</td></tr>';
		echo '<tr><td><strong>' . __ ( 'N. inventaire (ancien)' ) . ' </strong></td><td>' . h ( $materiel->numero_inventaire_old ) . '</td></tr>';
		
		echo '</table>';
		echo '</div>';
	}
	
	?>
4260780b   Alexandre   Migration vue, co...
393

bb6d5bed   Alexandre   Migration des vue...
394
    
4260780b   Alexandre   Migration vue, co...
395
        <h3 id="t_suivis" style="cursor: pointer;">
4dae83a2   Alexandre   Version: 2.5.1.0
396
			<i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i>
d6960faf   Alexandre   Migration de plus...
397
			<span style="text-decoration: underline;">Suivi(s) du matériel (<?= count($materiel->suivis) ?>)</span>
4260780b   Alexandre   Migration vue, co...
398
399
400
401
		</h3>
		<div id="suivis" style="margin-bottom: 20px;">

        <?php if (!empty($materiel->suivis)) { ?>
4dae83a2   Alexandre   Version: 2.5.1.0
402
403
404
405
406
407
408
409
        <table>
				<tr>
					<th><?= __('Prestataire') ?></th>
					<th><?= __('Date du contrôle') ?></th>
					<th><?= __('Date prochain contrôle') ?></th>
					<th><?= __('Type d\'intervention') ?></th>
					<th style="width: 50px;"><?= __('Détail') ?></th>
				</tr> 	
4260780b   Alexandre   Migration vue, co...
410
411
		<?php foreach ($materiel->suivis as $suivis): ?>
		<tr>
4dae83a2   Alexandre   Version: 2.5.1.0
412
413
414
415
					<td><?= h($suivis->organisme) ?></td>
					<td><?= h($suivis->date_controle) ?></td>
					<td><?= h($suivis->date_prochain_controle) ?></td>
					<td><?= $typeSuivis->find()->where(['id =' => h($suivis->type_suivi_id)])->first()['nom']; ?></td>
4260780b   Alexandre   Migration vue, co...
416

4dae83a2   Alexandre   Version: 2.5.1.0
417
418
					<td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Suivis', 'action' => 'view', $suivis->id], ['escape' => false, 'style' => 'margin:0'])?>
4260780b   Alexandre   Migration vue, co...
419
			</td>
4dae83a2   Alexandre   Version: 2.5.1.0
420
				</tr>
4260780b   Alexandre   Migration vue, co...
421
422
423
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun suivi pour ce matériel.'; } ?>
6c4edfa3   Alexandre   First Commit LabI...
424
    </div>
4dae83a2   Alexandre   Version: 2.5.1.0
425
426
427



4260780b   Alexandre   Migration vue, co...
428
		<h3 id="t_emprunts" style="cursor: pointer;">
4dae83a2   Alexandre   Version: 2.5.1.0
429
			<i class="icon-chevron-down" style="font-size: 14px;" id="i_emprunts"></i>
d6960faf   Alexandre   Migration de plus...
430
			<span style="text-decoration: underline;">Emprunt(s) du matériel (<?= count($materiel->emprunts) ?>)</span>
4260780b   Alexandre   Migration vue, co...
431
432
433
434
		</h3>
		<div id="emprunts" style="margin-bottom: 20px;">
		
        <?php if (!empty($materiel->emprunts)) { ?>
4dae83a2   Alexandre   Version: 2.5.1.0
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
        <table>
				<tr>
					<th><?= __('Emprunteur') ?></th>
					<th><?= __('Type d\'Emprunt') ?></th>
					<th><?= __('Où') ?></th>
					<th><?= __('Date de l\'emprunt') ?></th>
					<th><?= __('Date de retour') ?></th>
					<th style="width: 50px;"><?= __('Détail') ?></th>
				</tr> 	
		<?php
									
foreach ( $materiel->emprunts as $emprunts ) :
										
										$type = 'Externe';
										$lieu = $emprunts ['laboratoire'];
										if ($emprunts ['emprunt_interne'] == 1) {
											$type = 'Interne';
											$lieu = $sites->find ()->where ( [ 
													'id =' => h ( $emprunts->site_id ) 
											] )->first () ['nom'] . '-' . h ( $emprunts->e_lieu_detail );
										}
										?>
4260780b   Alexandre   Migration vue, co...
457
		<tr>
4dae83a2   Alexandre   Version: 2.5.1.0
458
459
460
461
462
					<td><?= h($emprunts->nom_emprunteur) ?></td>
					<td><?= h($type) ?></td>
					<td><?= h($lieu) ?></td>
					<td><?= h($emprunts->date_emprunt) ?></td>
					<td><?= h($emprunts->date_retour_emprunt) ?></td>
4260780b   Alexandre   Migration vue, co...
463

4dae83a2   Alexandre   Version: 2.5.1.0
464
465
					<td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Emprunts', 'action' => 'view', $emprunts->id], ['escape' => false, 'style' => 'margin:0'])?>
4260780b   Alexandre   Migration vue, co...
466
			</td>
4dae83a2   Alexandre   Version: 2.5.1.0
467
				</tr>
4260780b   Alexandre   Migration vue, co...
468
469
470
471
472
473
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun emprunt pour ce matériel.'; } ?>
    	</div>
    
    
4dae83a2   Alexandre   Version: 2.5.1.0
474
475
476
477
        <?php
								$nbFic = count ( $materiel->documents );
								?>
        
4260780b   Alexandre   Migration vue, co...
478
479
        
		<h3 id="t_fichiers" style="cursor: pointer;">
4dae83a2   Alexandre   Version: 2.5.1.0
480
481
			<i class="icon-chevron-down" style="font-size: 14px;" id="i_fichiers"></i>
			<span style="text-decoration: underline;">Fichier(s) lié(s) au matériel (<?= $nbFic ?>)</span>
4260780b   Alexandre   Migration vue, co...
482
483
484
		</h3>
		<div id="fichiers" style="margin-bottom: 20px;">

4dae83a2   Alexandre   Version: 2.5.1.0
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
        <?php if ($nbFic != 0) { ?>
        <table>
				<tr>
					<th><?= __('Nom') ?></th>
					<th><?= __('Type') ?></th>
					<th><?= __('Photo') ?></th>
					<th style="width: 50px;"><?= __('Détail') ?></th>
					<th style="width: 50px;"><?= __('Télécharger') ?></th>
			<?php 
			if(($role == 'Utilisateur' && (in_array($username, [$materiel->nom_createur, $materiel->nom_responsable]))) || (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur'])) || ($role == 'Responsable' && ($materiel->groupes_metier_id == $userConnected->groupes_metier_id || $materiel->groupes_thematique_id == $userConnected->groupe_thematique_id))) {
    		?>
					<th style="width: 50px;"><?= __('Supprimer') ?></th>
			<?php } ?>
				</tr> 	
		<?php
									
foreach ( $materiel->documents as $documents ) :
										
										if ($documents->photo) {
											$p = 'Oui';
										} else {
											$p = '';
										}
										$type = $typeDocuments->find ()->where ( [ 
												'id =' => h ( $documents->type_document_id ) 
										] )->first () ['nom'];
										?>
4260780b   Alexandre   Migration vue, co...
512
		<tr>
4dae83a2   Alexandre   Version: 2.5.1.0
513
514
515
					<td><?= h($documents->nom) ?></td>
					<td><?= $type ?></td>
					<td><?= $p ?></td>
4260780b   Alexandre   Migration vue, co...
516

4dae83a2   Alexandre   Version: 2.5.1.0
517
518
					<td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Documents', 'action' => 'view', $documents->id], ['escape' => false, 'style' => 'margin:0'])?>
9b4da83b   Alexandre   Version: 2.5.0.0
519
			</td>
4dae83a2   Alexandre   Version: 2.5.1.0
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536

					<td class="actions">
		    	<?php
										if ($documents->photo) {
											echo $this->Html->link ( __ ( '<i class="icon-download"></i>' ), '/webroot/img/photos/' . $documents->id . '.' . $documents->type_doc, [ 
													'title' => 'Télécharger',
													'style' => 'margin:0',
													'escape' => false 
											] );
										} else {
											echo $this->Html->link ( __ ( '<i class="icon-download"></i>' ), '/webroot/files/' . $documents->id . '.' . $documents->type_doc, [ 
													'title' => 'Télécharger',
													'style' => 'margin:0',
													'escape' => false 
											] );
										}
										?>
9b4da83b   Alexandre   Version: 2.5.0.0
537
			</td>
4dae83a2   Alexandre   Version: 2.5.1.0
538
539
540
541
542
543
544
545
546
547
548
549
			<?php 
			if(($role == 'Utilisateur' && (in_array($username, [$materiel->nom_createur, $materiel->nom_responsable]))) || (in_array($role, ['Administration', 'Administration Plus', 'Super Administrateur'])) || ($role == 'Responsable' && ($materiel->groupes_metier_id == $userConnected->groupes_metier_id || $materiel->groupes_thematique_id == $userConnected->groupe_thematique_id))) {
    		?>
				<td class="actions">
                <?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['controller' => 'Documents', 'action' => 'delete', $documents->id], ['escape' => false, 'style' => 'margin:0', 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $documents->id)])?>
				</td>
			<?php } ?>
			</tr>
		<?php
									endforeach
									;
									?> 
4260780b   Alexandre   Migration vue, co...
550
551
552
553
		</table> 
        <?php }else { echo 'Aucun fichier pour ce matériel.'; } ?>
        </div>

4dae83a2   Alexandre   Version: 2.5.1.0
554
	</div>
4260780b   Alexandre   Migration vue, co...
555
556


4dae83a2   Alexandre   Version: 2.5.1.0
557
558
559
560
561
562
563
564
565
	<div class="actions">
			<?php echo $this->element('menu')?>
			<?php
			
echo $this->element ( 'menu_view', [ 
					'pluralHumanName' => 'Matériels',
					'singularHumanName' => 'Matériel',
					'lien' => $materiel->id 
			] )?>
4260780b   Alexandre   Migration vue, co...
566
		</div>