Blame view

src/Template/Materiels/view.ctp 8.9 KB
bb6d5bed   Alexandre   Migration des vue...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php 
function displayElement($nom, $valeur) {
	if ($valeur != "")
		echo '<tr><td><strong>'.$nom.' </strong></td><td>'.$valeur.'</td></tr>';
}
?>

<div class="materiels view">

    <h2>
    <?php if (h($materiel->status) == 'ARCHIVED') echo '<i class="icon-inbox"></i> '; ?>	
    <?= h($materiel->designation) ?>
    <span style="font-size: 70%; color: grey;">
    <?= h($materiel->numero_laboratoire) ?>
    <?php if (h($materiel->status) == 'ARCHIVED') echo ' (Archivé)'; ?>
    </span>
    </h2>
    
4260780b   Alexandre   Migration vue, co...
19
    <div class="actions" style="margin-bottom: 20px; width: 100%; float: none; padding: 10px 0;">
bb6d5bed   Alexandre   Migration des vue...
20
21
22
    <?php 
    echo $this->Html->link(__('<i class="icon-pencil"></i> Editer ce matériel'),
    		['action' => 'edit', $materiel->id],
19798ef9   Alexandre   Mode_install, maj...
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
    		['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
    }
    
bb6d5bed   Alexandre   Migration des vue...
50
    ?>
4260780b   Alexandre   Migration vue, co...
51
    </div>
bb6d5bed   Alexandre   Migration des vue...
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
    
    <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(__('N. Inventaire Organisme'), h($materiel->numero_inventaire_organisme));
    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) : '');
    displayElement(__('Date de reception'), date("d-m-Y", strtotime(h($materiel->date_reception))));
    if(h($materiel->etiquette) == 0) {
    	$etiq="Non";
    }else {
    	$etiq="Oui";
    }
    displayElement(__('Etiquette posée'), $etiq);
    displayElement(__('Groupe thématique'), $materiel->has('groupes_thematique') ? $this->Html->link($materiel->groupes_thematique->nom, ['controller' => 'GroupesThematiques', 'action' => 'view', $materiel->groupes_thematique->id]) : '');
    displayElement(__('Groupe métier'),  $materiel->has('groupes_metier') ? $this->Html->link($materiel->groupes_metier->nom, ['controller' => 'GroupesMetiers', 'action' => 'view', $materiel->groupes_metier->id]) : '');
    displayElement(__('Date d\'achat'), date("d-m-Y", strtotime(h($materiel->date_acquisition))));
    displayElement(__('Statut'), h($materiel->status));
    
    displayElement(__('Prix (HT)'), h($materiel->prix_ht).' €');
    displayElement(__('Fournisseur'), h($materiel->fournisseur));
    displayElement(__('CentreFinancier/EOTP'), h($materiel->eotp));
    displayElement(__('N° commande'), h($materiel->numero_commande));
    displayElement(__('Code comptable'), h($materiel->code_comptable));
    displayElement(__('N° de série'), h($materiel->numero_serie));
    
    displayElement(__('Lieu de stockage'), $materiel->has('site') ? h($materiel->site->nom) : '');
    displayElement(__('Responsable'), h($materiel->nom_responsable));
    displayElement(__('N. interne (labo)'), h($materiel->numero_laboratoire));
    displayElement(__('N. inventaire (ancien)'), h($materiel->numero_inventaire_old));
    
    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...
111
    </table>
bb6d5bed   Alexandre   Migration des vue...
112
    </div>
4260780b   Alexandre   Migration vue, co...
113
114


bb6d5bed   Alexandre   Migration des vue...
115
    
4260780b   Alexandre   Migration vue, co...
116
117
        <h3 id="t_suivis" style="cursor: pointer;">
			<i class="icon-chevron-down" style="font-size: 14px;" id="i_suivis"></i> 
d6960faf   Alexandre   Migration de plus...
118
			<span style="text-decoration: underline;">Suivi(s) du matériel (<?= count($materiel->suivis) ?>)</span>
4260780b   Alexandre   Migration vue, co...
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
		</h3>
		<div id="suivis" style="margin-bottom: 20px;">

        <?php if (!empty($materiel->suivis)) { ?>
        <table> 
		<tr> 
			<th><?= __('Organisme') ?></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> 	
		<?php foreach ($materiel->suivis as $suivis): ?>
		<tr>
		    <td><?= h($suivis->organisme) ?></td>
		    <td><?= h($suivis->date_controle) ?></td>
            <td><?= h($suivis->date_prochain_controle) ?></td>
            <td><?= h($suivis->type_intervention) ?></td>

            <td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Suivis', 'action' => 'view', $suivis->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
       </tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun suivi pour ce matériel.'; } ?>
6c4edfa3   Alexandre   First Commit LabI...
145
    </div>
4260780b   Alexandre   Migration vue, co...
146
147
148
149
150
    
    
    
		<h3 id="t_emprunts" style="cursor: pointer;">
			<i class="icon-chevron-down" style="font-size: 14px;" id="i_emprunts"></i> 
d6960faf   Alexandre   Migration de plus...
151
			<span style="text-decoration: underline;">Emprunt(s) du matériel (<?= count($materiel->emprunts) ?>)</span>
4260780b   Alexandre   Migration vue, co...
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
		</h3>
		<div id="emprunts" style="margin-bottom: 20px;">
		
        <?php if (!empty($materiel->emprunts)) { ?>
        <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 = $emprunts['e_lieu_stockage'].'-'.$emprunts['e_lieu_detail'];
		}
		?>
		<tr>
		    <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>

            <td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Emprunts', 'action' => 'view', $emprunts->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
        </tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun emprunt pour ce matériel.'; } ?>
    	</div>
    
    
        
		<h3 id="t_fichiers" style="cursor: pointer;">
			<i class="icon-chevron-down" style="font-size: 14px;" id="i_fichiers"></i> 
d6960faf   Alexandre   Migration de plus...
194
			<span style="text-decoration: underline;">Fichier(s) lié(s) au matériel (<?= count($materiel->documents) ?>)</span>
4260780b   Alexandre   Migration vue, co...
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
		</h3>
		<div id="fichiers" style="margin-bottom: 20px;">

        <?php if (!empty($materiel->documents)) { ?>
        <table> 
		<tr> 
			<th><?= __('N°') ?></th>
            <th><?= __('Chemin') ?></th>
            <th><?= __('Type') ?></th>
            <th style="width:50px;"><?= __('Détail') ?></th>
		</tr> 	
		<?php foreach ($materiel->documents as $documents): ?>
		<tr>
		    <td><?= 'Fichier '.h($documents->id) ?></td>
		    <td><?= h($documents->chemin) ?></td>
		    <td><?= h($documents->type_doc) ?></td>

            <td class="actions">
                <?= $this->Html->link(__('<i class="icon-search"></i>'), ['controller' => 'Documents', 'action' => 'view', $documents->id], ['escape' => false, 'style' => 'margin:0']) ?>
			</td>
        </tr>
		<?php endforeach; ?> 
		</table> 
        <?php }else { echo 'Aucun fichier pour ce matériel.'; } ?>
        </div>

6c4edfa3   Alexandre   First Commit LabI...
221
</div>
4260780b   Alexandre   Migration vue, co...
222
223
224
225
226
227
228
229
230


    	<div class="actions">
			<?php echo $this->element('menu') ?>
			<?php echo $this->element('menu_view', 
			[ 'pluralHumanName' => 'Matériels',
			'singularHumanName' => 'Matériel',
			'lien' => $materiel->id ]) ?>
		</div>