find.ctp
9.93 KB
1
2
3
4
5
6
7
8
9
10
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
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
287
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
<div class="index">
<h2>
<i class="icon-search"></i> Recherche de matériel
</h2>
<?php
$r = isset ($_results);
if ($r) {
echo '<div class="actions" style="margin-bottom: 20px; width: 100%; float: none; padding: 10px 0;">';
echo $this->Html->link ( '<i class="icon-file"></i> Exporter la liste', [
'controller' => 'Materiels',
'action' => 'export',
'what' => 'search'
], [
'title' => 'Editer le résultat de la recherche',
'style' => 'margin-right: 15px',
'escape' => false
]);
echo '</div>';
}
?>
<h3 id="t_filter" style="cursor: pointer;">
<i
class=<?php if ($r) echo '"icon-chevron-up"'; echo '"icon-chevron-down"'; ?>
style="font-size: 14px;" id="i_filter"></i> <span
style="text-decoration: underline;">Filtres</span>
</h3>
<div id="filter" <?php if ($r) echo 'style="display: none;"'; ?>><?php
if (isset ( $_results ))
$selected = [];
else
$selected = [
'selected' => ''
];
function getSortLinkForColumnTitle($label, $fieldName) {
return "<th>
<input type='submit' class='sortable-submit-title' value='$label' onclick='url=document.URL; url=url.slice(0, url.lastIndexOf(\"/find\")+5); $(\"form\").attr(\"action\", url+\"/$fieldName/ASC\");'/>
</th>";
}
// FORMULAIRE DE RECHERCHE
echo $this->Form->create();
// -------Bouton recherche Haut---------
echo $this->Form->submit ( 'Rechercher', ['style' => 'width: 20%']);
// Designation
echo $this->Form->input ( 's_designation', ['label' => 'Désignation']);
// Matériel administratif et/ou technique
$typeOptions = [];
echo $this->Form->input ( 's_matostype', [
'label' => 'Type',
'empty' => 'Tous',
'options' => [
'A' => 'Administratif',
'T' => 'Technique',
'AT' => 'Administratif et Technique',
'AO' => 'Administratif seulement',
'TO' => 'Technique seulement'
],
'style' => 'width: 280px'
]);
// DOMAINE
echo $this->Form->input ( 's_sur_categorie_id', [
'label' => 'Domaine',
'empty' => 'Tous',
$selected,
'options' => $s_sur_categories,
'style' => 'width: 200px'
]);
// CATEGORIES
// by default, ALL categs
$categs = $s_categories;
// if a domaine is selected, reduce the categories list to this domaine
if (isset ( $this->request->data['s_sur_categorie_id'] ) && ($this->request->data['s_sur_categorie_id'] != '')) {
$categs = $categs->where(['sur_categorie_id =' => $this->request->data['s_sur_categorie_id']]);
}
echo $this->Form->input ( 's_categorie_id', [
'label' => 'Catégorie',
'empty' => 'Toutes',
'style' => 'width: 200px',
'options' => $categs
]);
// SOUS-CATEGORIES
// by default, list is empty
$souscategs = [];
// if a categ is selected, update sous-categs list for this categ (only)
if (isset ( $this->request->data['s_categorie_id'] ) && ($this->request->data['s_categorie_id'] != '')) {
$souscategs = $s_sous_categories;
$souscategs = $souscategs->where(['categorie_id' => $this->request->data['s_categorie_id']]);
}
echo $this->Form->input ( 's_sous_categorie_id', [
'label' => 'Sous-catégorie',
'empty' => 'Toutes',
'style' => 'width: 200px',
'options' => $souscategs
]);
// STATUT
echo $this->Form->input ( 's_status', [
'label' => 'Statut',
'empty' => 'Tous',
$selected,
'options' => [
'CREATED' => 'Créé',
'VALIDATED' => 'Validé',
'TOBEARCHIVED' => 'À archiver',
'ARCHIVED' => 'Archivé'
],
'style' => 'width: 200px'
]);
// Groupe metier et thematique
echo $this->Form->input ( 's_groupes_metier_id', [
'label' => 'Groupe Métier',
'empty' => 'Tous',
$selected,
'options' => $s_groupes_metiers,
'style' => 'width: 200px'
]);
echo $this->Form->input ( 's_groupes_thematique_id', [
'label' => 'Groupe Thematique',
'empty' => 'Tous',
$selected,
'options' => $s_groupes_thematiques,
'style' => 'width: 200px'
]);
// Autres champs
echo $this->Form->input ( 's_numero_commande', [
'label' => 'N° BC'
]);
echo $this->Form->input ( 's_numero_laboratoire', [
'label' => 'N° interne (labo)'
]);
//ORGANISME
$orgas = $s_organismes;
echo $this->Form->input ( 's_organisme_id', [
'label' => 'Organisme',
'empty' => 'Toutes',
'style' => 'width: 200px',
'options' => $orgas
]);
echo $this->Form->input ( 's_nom_responsable', [
'label' => 'Responsable'
]);
echo $this->Form->input ( 's_numero_inventaire_organisme', [
'label' => 'N° inventaire organisme'
]);
echo $this->Form->input ( 's_numero_inventaire_old', [
'label' => 'N° inventaire (ancien)'
]);
// Date acquisition
echo "<u>DATE d'achat:</u>";
echo $this->Form->input ( 's_date_acquisition', [
'placeholder' => 'Cliquez pour selectionner une date',
'label' => '- Date exacte',
'class' => 'datepicker'
]);
echo $this->Form->input ( 's_periode_acquisition1', [
'placeholder' => 'Cliquez pour selectionner une date',
'label' => '- Date Début',
'class' => 'datepicker'
]);
echo $this->Form->input ( 's_periode_acquisition2', [
'placeholder' => 'Cliquez pour selectionner une date',
'label' => '- Date Fin',
'class' => 'datepicker'
]);
echo "<u>MONTANT :</u>";
echo $this->Form->input ( 's_prix_ht', ['label' => '- Montant exact']);
echo $this->Form->input ( 's_prix_ht_sup', ['label' => '- Montant sup. ou égal à']);
echo $this->Form->input ( 's_prix_ht_inf', ['label' => '- Montant inf. ou égal à']);
// CHAMP DE RECHERCHE GENERIQUE
echo $this->Form->input ( 's_all', ['label' => 'TOUS LES CHAMPS' ]);
// -------Bouton recherche Bas---------
echo $this->Form->submit('Rechercher', ['style' => 'width: 20%']);
echo '<br/><br/><br/>';
?>
</div>
<!-- RESULT DISPLAY -->
<h3 id="t_result" style="cursor: pointer;">
<i
class=<?php if ($r) echo '"icon-chevron-down"'; echo '"icon-chevron-up"'; ?>
style="font-size: 14px;" id="i_result"></i> <span
style="text-decoration: underline;">Résultats <?php if ($r) echo '('.sizeof($_results).')'; ?></span>
</h3>
<div id="result" <?php if (!$r) echo 'style="display: none;"'; ?>>
<?php if (isset($_results) && sizeof($_results) != 0) { ?>
<table cellpadding="0" cellspacing="0">
<thead>
<tr>
<!--Désignation-->
<?php echo getSortLinkForColumnTitle('Désignation','designation');?>
<!--Numéro IRAP-->
<?php echo getSortLinkForColumnTitle('Numéro interne (labo)','numero_laboratoire'); ?>
<!--Catégorie-->
<?php echo getSortLinkForColumnTitle('Catégorie','Categorie.id');?>
<!--Responsable-->
<?php echo getSortLinkForColumnTitle('Responsable','nom_responsable'); ?>
<!--Statut-->
<?php echo getSortLinkForColumnTitle('Statut','status'); ?>
<!--Date-->
<?php echo getSortLinkForColumnTitle('Date','date_acquisition'); ?>
<th style="width: 20px;"></th>
<th style="width: 20px;"></th>
<th style="width: 20px;"></th>
</tr>
</thead>
<tbody>
<!-- Affichage des lignes de données -->
<?php
foreach ( $_results as $material ) :
echo '<tr>';
echo '<td class="smallText">';
echo $this->Html->link ( h($material->designation), [
'action' => 'view',
$material->id
], ['title' => 'Détails']);
echo '</td>';
echo '<td class="smallText">';
echo $material->numero_laboratoire;
echo '</td>';
echo '<td class="smallText">';
echo $this->Html->link ( $material->nom, [
'controller' => 'categories',
'action' => 'view',
$material->id
]);
echo '</td>';
echo '<td class="smallText">';
echo $material->nom_responsable;
echo '</td>';
echo '<td class="smallText">';
echo $material->status;
echo '</td>';
echo '<td class="smallText">';
echo date ( "d-m-Y", strtotime ( $material->date_acquisition ));
echo '</td>';
/*
* ACTION 'edit'
*/
echo '<td class="actions" style="padding: 6px 0;">';
echo $this->Html->link('<i class="icon-pencil"></i>',
['action' => 'edit', $material->id],
['title' => 'Éditer', 'style' => 'margin: 0 2px', 'escape' => false]
);
echo '</td>';
echo '<td class="actions" style="padding: 6px 0;">';
if(h($material->status) == 'CREATED') {
echo $this->Form->postLink('<i class="icon-ok-sign"></i>',
['action' => 'statusValidated', $material->id],
['title' => 'Valider', 'style' => 'margin: 0 2px', 'escape' => false,
'confirm' => __('Êtes-vous sur de vouloir validé # {0}?', $material->designation)]);
}
else if ($material->status == 'VALIDATED' && $material->nom_responsable == $username) {
echo $this->Form->postLink('<i class="icon-inbox"></i>',
['action' => 'statusToBeArchived', $material->id],
['title' => 'Demander la sortie de l\'inventaire', 'style' => 'margin: 0 2px', 'escape' => false,
'confirm' => __('Êtes-vous sur de vouloir faire une demande d\'archive # {0}?', $material->designation)]);
}
else if (h($material->status) == 'VALIDATED'){
echo $this->Form->postLink('<i class="icon-inbox"></i>',
['action' => 'statusArchived', $material->id],
['title' => 'Sortir de l\'inventaire', 'style' => 'margin: 0 2px', 'escape' => false,
'confirm' => __('Êtes-vous sur de vouloir archivé # {0}?', $material->designation)]);
}
echo '</td>';
/*
* ACTION 'delete'
*/
// Seul un materiel CREATED peut être supprimer
if ($material->status == 'CREATED') {
echo '<td class="actions" style="padding: 6px 0;">';
echo $this->Form->postLink(__('<i class="icon-trash"></i>'),
['action' => 'delete', $material->id],
['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer # {0}?', $material->id)]
);
echo '</td>';
}
echo '<tr>';
endforeach;
echo '</tbody>';
echo '</table>';
} else {
echo 'Aucun résultats pour cette recherche.';
}
?>
</div>
<?php
echo $this->Form->end();
?>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
</div>