Blame view

src/Controller/EmpruntsController.php 6.45 KB
6c4edfa3   Alexandre   First Commit LabI...
1
2
3
4
<?php
namespace App\Controller;

use App\Controller\AppController;
19798ef9   Alexandre   Mode_install, maj...
5
6
use Cake\ORM\TableRegistry;

6c4edfa3   Alexandre   First Commit LabI...
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

/**
 * Emprunts Controller
 *
 * @property \App\Model\Table\EmpruntsTable $Emprunts
 */
class EmpruntsController extends AppController
{

    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->paginate = [
ebe38bef   Alexandre   #3586 Ajout assoc...
24
            'contain' => ['Materiels', 'Sites']
6c4edfa3   Alexandre   First Commit LabI...
25
26
        ];
        $emprunts = $this->paginate($this->Emprunts);
0e5846aa   Alexandre   Css bouton valide...
27
        
0e5846aa   Alexandre   Css bouton valide...
28
        
183ce554   Alexandre   Ajout de test, su...
29
30
        $this->set('nbEmprunts', $this->Emprunts->find('all')->count());
        
ebe38bef   Alexandre   #3586 Ajout assoc...
31
        $this->set(compact('emprunts'));
6c4edfa3   Alexandre   First Commit LabI...
32
33
34
35
36
37
38
39
40
41
42
43
44
        $this->set('_serialize', ['emprunts']);
    }

    /**
     * View method
     *
     * @param string|null $id Emprunt id.
     * @return \Cake\Network\Response|null
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function view($id = null)
    {
        $emprunt = $this->Emprunts->get($id, [
ebe38bef   Alexandre   #3586 Ajout assoc...
45
            'contain' => ['Materiels', 'Sites']
6c4edfa3   Alexandre   First Commit LabI...
46
        ]);
0e5846aa   Alexandre   Css bouton valide...
47
        
6c4edfa3   Alexandre   First Commit LabI...
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
        $this->set('emprunt', $emprunt);
        $this->set('_serialize', ['emprunt']);
    }

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
        $emprunt = $this->Emprunts->newEntity();
        if ($this->request->is('post')) {
            $emprunt = $this->Emprunts->patchEntity($emprunt, $this->request->data);
            if ($this->Emprunts->save($emprunt)) {
3601f4f5   Alexandre   Traduction messag...
63
                $this->Flash->success(__('L\'emprunt a bien été ajouté.'));
6c4edfa3   Alexandre   First Commit LabI...
64
65
                return $this->redirect(['action' => 'index']);
            } else {
3601f4f5   Alexandre   Traduction messag...
66
                $this->Flash->error(__('L\'emprunt n\'a pas pu être ajouté..'));
6c4edfa3   Alexandre   First Commit LabI...
67
68
            }
        }
19798ef9   Alexandre   Mode_install, maj...
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
        $materiels = $this->Emprunts->Materiels->find('list');
        $numMateriel = $this->Emprunts->Materiels->find()->select('numero_laboratoire')->where(['id =' => $this->passedArgs[0]])->first()['numero_laboratoire'];
        
        // Gestion du lieu de stockage : soit on cache la DIV 'interne' et on affiche la DIV 'externe', soit on fait l'inverse (par defaut, interne)
        $disp_interne = 'display:block';
        $disp_externe = 'display:none';
        $interne = $emprunt->get('emprunt_interne');
        if (isset($interne)) {
        	if ($emprunt->get('emprunt_interne') == 1) {
        		$disp_interne = 'display:block';
        		$disp_externe = 'display:none';
        	} else {
        		$disp_interne = 'display:none';
        		$disp_externe = 'display:block';
        	}
        }
        $nom_emprunteur_int = $this->Auth->user('username');
        $mail_emprunteur_int = TableRegistry::get('Users')->find()->select('email')->where(['username =' => $this->Auth->user('username')])->first()['email'];
        
        $nom_emprunteur_ext = '';
        $mail_emprunteur_ext = '';
      
        $utilisateurs = TableRegistry::get('Users')->find('list', [ 'keyField' => 'nom', 'valueField' => 'nom']);
        
ebe38bef   Alexandre   #3586 Ajout assoc...
93
        $sites = $this->Emprunts->Sites->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
94
95
        
        $this->set(compact('emprunt', 'materiels', 'numMateriel', 'disp_externe', 'disp_interne', 'nom_emprunteur_int', 'mail_emprunteur_int', 'nom_emprunteur_ext', 'mail_emprunteur_ext', 'utilisateurs', 'sites'));
6c4edfa3   Alexandre   First Commit LabI...
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
        $this->set('_serialize', ['emprunt']);
    }

    /**
     * Edit method
     *
     * @param string|null $id Emprunt id.
     * @return \Cake\Network\Response|void Redirects on successful edit, renders view otherwise.
     * @throws \Cake\Network\Exception\NotFoundException When record not found.
     */
    public function edit($id = null)
    {
        $emprunt = $this->Emprunts->get($id, [
            'contain' => []
        ]);
        if ($this->request->is(['patch', 'post', 'put'])) {
            $emprunt = $this->Emprunts->patchEntity($emprunt, $this->request->data);
            if ($this->Emprunts->save($emprunt)) {
3601f4f5   Alexandre   Traduction messag...
114
                $this->Flash->success(__('L\'emprunt a bien été édité.'));
6c4edfa3   Alexandre   First Commit LabI...
115
116
                return $this->redirect(['action' => 'index']);
            } else {
3601f4f5   Alexandre   Traduction messag...
117
                $this->Flash->error(__('L\'emprunt n\'a pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
118
119
            }
        }
19798ef9   Alexandre   Mode_install, maj...
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
        $materiels = $this->Emprunts->Materiels->find('list');
        $numMateriel = $this->Emprunts->Materiels->find()->select('numero_laboratoire')->where(['id =' => $emprunt->get('materiel_id')])->first()['numero_laboratoire'];

        // Gestion du lieu de stockage : soit on cache la DIV 'interne' et on affiche la DIV 'externe', soit on fait l'inverse (par defaut, interne)
        $disp_interne = 'display:block';
        $disp_externe = 'display:none';
        $interne = $emprunt->get('emprunt_interne');
        if (isset ($interne)) {
        	if ($emprunt->get('emprunt_interne') == 1) {
        		$disp_interne = 'display:block';
        		$disp_externe = 'display:none';
        	} else {
        		$disp_interne = 'display:none';
        		$disp_externe = 'display:block';
        	}
        }
        $nom_emprunteur_int = $this->Auth->user('username');
        $mail_emprunteur_int = TableRegistry::get('Users')->find()->select('email')->where(['username =' => $this->Auth->user('username')])->first()['email'];
        
        $nom_emprunteur_ext = '';
        $mail_emprunteur_ext = '';
        
        $utilisateurs = TableRegistry::get('Users')->find('list', [ 'keyField' => 'nom', 'valueField' => 'nom']);
        
ebe38bef   Alexandre   #3586 Ajout assoc...
144
        $sites = $this->Emprunts->Sites->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
145
146
        
        $this->set(compact('emprunt', 'materiels', 'numMateriel', 'disp_externe', 'disp_interne', 'nom_emprunteur_int', 'mail_emprunteur_int', 'nom_emprunteur_ext', 'mail_emprunteur_ext', 'utilisateurs', 'sites'));
6c4edfa3   Alexandre   First Commit LabI...
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
        $this->set('_serialize', ['emprunt']);
    }

    /**
     * Delete method
     *
     * @param string|null $id Emprunt id.
     * @return \Cake\Network\Response|null Redirects to index.
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function delete($id = null)
    {
        $this->request->allowMethod(['post', 'delete']);
        $emprunt = $this->Emprunts->get($id);
        if ($this->Emprunts->delete($emprunt)) {
3601f4f5   Alexandre   Traduction messag...
162
            $this->Flash->success(__('L\'emprunt a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
163
        } else {
3601f4f5   Alexandre   Traduction messag...
164
            $this->Flash->error(__('L\'emprunt n\'a pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
165
166
167
168
        }
        return $this->redirect(['action' => 'index']);
    }
}