home_app.ctp
4.23 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
<div class="index">
<h2><i class="icon-home"></i> Accueil</h2>
<p>Bienvenue sur l'inventaire administratif et technique <?= $configuration->labPresent.' <b>'.$configuration->labName ?></b>.</p>
<?php
//Utilisateur connecté
echo '<p>Vous êtes connecté en tant que <b>' . $username . '</b> ';
echo 'et avec le niveau d\'authentification <b>'.$role.'</b>.';
echo '<p>';
echo '<table cellpadding="0" cellspacing="0" style="width: 800px;">';
echo '<tr><th></th></tr>';
echo '<tr><td> '.$this->Html->link('Voir les matériels à mon nom', [
'controller' => 'materiels', 'action' => 'index', 'MY' => $username]).' </td></tr>';
echo '</table>';
//Utilisateur admin/super admin
if (in_array($role, ['Administration', 'Administration Plus'])) {
echo '<table cellpadding="0" cellspacing="0" style="width: 800px;">';
echo '<tr><th></th></tr>';
echo '<tr><td> '.$this->Html->link('Voir les matériels à valider dont je suis gestionnaire', [
'controller' => 'materiels', 'action' => 'index', 'CREATED']).' </td></tr>';
echo '<tr><td> '.$this->Html->link('Voir les matériels à sortir de l\'inventaire dont je suis gestionnaire', [
'controller' => 'materiels', 'action' => 'index', 'TOBEARCHIVED']).' </td></tr>';
echo '</table>';
}
//Utilisateur responsable
if ($role == 'Responsable') {
echo '<table cellpadding="0" cellspacing="0" style="width: 800px;">';
echo '<tr><th></th></tr>';
echo '<tr><td> '.$this->Html->link('Voir les matériels dont je suis responsable', [
'controller' => 'materiels', 'action' => 'index', 'GM' => $userConnected->groupes_metier_id, 'GT' => $userConnected->groupe_thematique_id]).' </td></tr>';
echo '<tr><td> '.$this->Html->link('Voir les suivis des materiels dont je suis responsable', [
'controller' => 'suivis', 'action' => 'index', 'GM' => $userConnected->groupes_metier_id, 'GT' => $userConnected->groupe_thematique_id]).' </td></tr>';
echo '</table>';
}
// A rendre configurable (pourquoi pas)
if (($role == 'Responsable' || $role == 'Utilisateur')) {
?>
<h2>Procédure à suivre pour la commande d’un nouveau matériel (8 étapes)</h2>
<p>Voici la procédure <strong>obligatoire à suivre</strong> pour passer commande d’un matériel de plus de 800€ (matériel <strong>inventoriable</strong>) :
<br>(je <strong>peux</strong> aussi, si je le désire, suivre cette procédure pour un matériel < 800€, afin que ce matériel soit référencé)
<br>(je devient <strong>“demandeur/utilisateur/référent”</strong> de ce matériel)</p>
<ol>
<li>J’obtiens un <strong>devis</strong></li>
<li>Je <strong>crée une fiche matériel</strong> dans LabInvent (InventIrap) avec les quelques informations obligatoires (notamment une <strong>description précise</strong> du matériel) (éventuellement, je peux y associer le devis en document attaché)</li>
<li><strong>J’imprime ma fiche</strong> (en cliquant sur le bouton vert “imprimer fiche matériel”) <strong>et l’amène (avec le devis)</strong> à un gestionnaire (ou bien je lui envoie un email avec ces documents attachés)</li>
<li>Le gestionnaire retrouve cette fiche (en tapant son n° interne labo dans le champ “Recherche”) et la <strong>complète</strong> avec les informations administratives</li>
<li>Le gestionnaire crée le bon de <strong>commande</strong> pour ce matériel et passe la commande (éventuellement, il peut associer le bon de commande à la fiche matériel en document attaché)</li>
<li>A la <strong>livraison</strong> du matériel, le gestionnaire <strong>valide</strong> la fiche matériel (éventuellement, il peut y associer le bon de livraison en document attaché) => (je reçois un email qui m'informe de l'arrivée du matériel et me demande de <strong>vérifier</strong> ma fiche)</li>
<li>Le gestionnaire <strong>imprime</strong> l’étiquette d’inventaire associée au matériel ainsi que la <strong>fiche complète</strong> du matériel et la joint au carton du matériel reçu</li>
<li>Je viens chercher mon nouveau matériel et y <strong>colle l’étiquette</strong> d’inventaire</li>
</ol>
<?php
}
?>
</div>
<div class="actions">
<?php echo $this->element('menu') ?>
</div>