index.ctp
4.18 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
<?php
// Variables passées par le controleur
$success = $success;
$entities = $entities;
$fournisseurs = $fournisseurs;
// Nombre total d'entités
$nbUsers = $this->Paginator->param('count');
?>
<div class="fournisseurs index">
<h2><i class="icon-list"></i> Les Fournisseurs (<?=$nbUsers?>)</h2>
<?php
// Bouton Ajouter
echo $this->element('button_add');
// Nettoyage "automagique" de la liste des fournisseurs (suppression doublons et espaces inutiles)
if ($USER_IS_SUPERADMIN)
echo $this->Html->link(
"Nettoyer la liste complète (suppression des doublons et des espaces en trop)",
//['controller'=>'Materiels', 'action' => 'exec_sql_request_for_bugfix'],
['action' => 'cleanup_fournisseurs'],
['title' => 'Nettoyage', 'style' => 'margin: 0 2px', 'escape' => false ]
);
// Remplacement d'un feur par un autre
if ($USER_IS_ADMIN_OR_MORE) {
//debug($this->request->getData());
?>
<div id="RemplaceFournisseur">
<hr />
<?php
// <FORM>
echo $this->Form->create();
//$success = "OK OKOK OK";
//$success = '';
?>
<table border=0>
<tr><td colspan=4><?=$success?></td></tr>
<tr>
<?php
//echo '<td>'.$this->Form->submit('REMPLACER', [ 'style' => 'width: 20%' ]).'</td>';
echo '<td>'.$this->Form->submit('Remplacer').'</td>';
echo '<td>'.$this->Form->control('fournisseur_bad_id', [
'label' => '',
'empty' => 'Fournisseur doublon',
'style' => 'width: 200px',
'options' => $fournisseurs,
'value' => '',
//'default' => ''
]).'</td>';
echo '<td>par</td>';
echo '<td>'.$this->Form->control('fournisseur_ok_id', [
'label' => '',
'empty' => 'Fournisseur ok',
'style' => 'width: 200px',
'options' => $fournisseurs,
'value' => '',
//'default' => ''
]).'</td>';
?>
</tr>
</table>
<?php
echo $this->Form->end();
// </FORM>
?>
<hr />
</div>
<?php
} // Remplacement fournisseur
?>
<table cellpadding="0" cellspacing="0" style="width: 270px;">
<thead>
<tr>
<th class="actions"><?= __('') ?></th>
<th><?= $this->Paginator->sort('nom', 'Nom') ?></th>
</tr>
</thead>
<tbody>
<?php
foreach ($entities as $e) :
if ($e->id != 9) {
?>
<tr>
<td class="actions" style="padding: 6px 0; text-align: left;">
<?php if (in_array($role, ['Administration','Administration Plus', 'Super Administrateur'])) { ?>
<?= $this->Html->link(__('<i class="icon-pencil"></i>'), ['action' => 'edit', $e->id], ['title' => 'Editer', 'style' => 'margin: 0 2px', 'escape' => false ]) ?>
<?php } ?>
<?php if (in_array($role, ['Administration','Super Administrateur'])) { ?>
<?= $this->Form->postLink(__('<i class="icon-trash"></i>'), ['action' => 'delete', $e->id], ['title' => 'Supprimer', 'style' => 'margin: 0 2px', 'escape' => false, 'confirm' => __('Êtes-vous sur de vouloir supprimer {0} ?', $e->nom)]) ?>
<?php } ?>
</td>
<td class="smallText"><?= $this->Html->link($e->nom, ['action' => 'view', $e->id]) ?></td>
</tr>
<?php
}
endforeach
;
?>
</tbody>
</table>
<?php echo $this->element('pagination_with_first_and_last'); ?>
</div>
<!--
<div class="actions">
<php echo $this->element('menu') ?>
<php
echo $this->element('menu_index', [
'pluralHumanName' => 'Fournisseurs',
'singularHumanName' => 'Fournisseur'
])?>
</div>
-->