Blame view

src/Controller/EmpruntsController.php 6.68 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

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

63a22db6   Alexandre   Version: 2.2.5.0
16
17
18
	// "l'" emprunt (et non pas "le emprunt")
	protected function getArticle() { return "L'"; }
	
6c4edfa3   Alexandre   First Commit LabI...
19
20
21
22
23
24
25
26
    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->paginate = [
ebe38bef   Alexandre   #3586 Ajout assoc...
27
            'contain' => ['Materiels', 'Sites']
6c4edfa3   Alexandre   First Commit LabI...
28
29
        ];
        $emprunts = $this->paginate($this->Emprunts);
0e5846aa   Alexandre   Css bouton valide...
30
        
0e5846aa   Alexandre   Css bouton valide...
31
        
183ce554   Alexandre   Ajout de test, su...
32
33
        $this->set('nbEmprunts', $this->Emprunts->find('all')->count());
        
ebe38bef   Alexandre   #3586 Ajout assoc...
34
        $this->set(compact('emprunts'));
6c4edfa3   Alexandre   First Commit LabI...
35
36
37
38
39
40
41
42
43
44
45
46
47
        $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...
48
            'contain' => ['Materiels', 'Sites']
6c4edfa3   Alexandre   First Commit LabI...
49
        ]);
0e5846aa   Alexandre   Css bouton valide...
50
        
6c4edfa3   Alexandre   First Commit LabI...
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
        $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...
66
                $this->Flash->success(__('L\'emprunt a bien été ajouté.'));
63a22db6   Alexandre   Version: 2.2.5.0
67
                return $this->redirect(['controller' => 'Materiels', 'action' => 'view', $this->passedArgs[0]]);
6c4edfa3   Alexandre   First Commit LabI...
68
            } else {
3601f4f5   Alexandre   Traduction messag...
69
                $this->Flash->error(__('L\'emprunt n\'a pas pu être ajouté..'));
6c4edfa3   Alexandre   First Commit LabI...
70
71
            }
        }
19798ef9   Alexandre   Mode_install, maj...
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
        $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';
        	}
        }
e1f6c5b7   Alexandre   Version: 2.3.0.0
88
89
        $nom_emprunteur_int = $this->LdapAuth->user($this->request->session()->read('authType'))[0];
        $mail_emprunteur_int = TableRegistry::get('Users')->find()->select('email')->where(['username =' => $this->LdapAuth->user($this->request->session()->read('authType'))[0]])->first()['email'];
19798ef9   Alexandre   Mode_install, maj...
90
91
92
93
        
        $nom_emprunteur_ext = '';
        $mail_emprunteur_ext = '';
      
e1f6c5b7   Alexandre   Version: 2.3.0.0
94
        $utilisateurs = TableRegistry::get('LdapConnections')->getListUsers();
19798ef9   Alexandre   Mode_install, maj...
95
        
ebe38bef   Alexandre   #3586 Ajout assoc...
96
        $sites = $this->Emprunts->Sites->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
97
98
        
        $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...
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
        $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...
117
                $this->Flash->success(__('L\'emprunt a bien été édité.'));
6c4edfa3   Alexandre   First Commit LabI...
118
119
                return $this->redirect(['action' => 'index']);
            } else {
3601f4f5   Alexandre   Traduction messag...
120
                $this->Flash->error(__('L\'emprunt n\'a pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
121
122
            }
        }
19798ef9   Alexandre   Mode_install, maj...
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
        $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';
        	}
        }
e1f6c5b7   Alexandre   Version: 2.3.0.0
139
140
        $nom_emprunteur_int = $this->LdapAuth->user($this->request->session()->read('authType'))[0];
        $mail_emprunteur_int = TableRegistry::get('Users')->find()->select('email')->where(['username =' => $this->LdapAuth->user($this->request->session()->read('authType'))[0]])->first()['email'];
19798ef9   Alexandre   Mode_install, maj...
141
142
143
144
        
        $nom_emprunteur_ext = '';
        $mail_emprunteur_ext = '';
        
e1f6c5b7   Alexandre   Version: 2.3.0.0
145
        $utilisateurs = TableRegistry::get('LdapConnections')->getListUsers();
19798ef9   Alexandre   Mode_install, maj...
146
        
ebe38bef   Alexandre   #3586 Ajout assoc...
147
        $sites = $this->Emprunts->Sites->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
148
149
        
        $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...
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
        $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...
165
            $this->Flash->success(__('L\'emprunt a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
166
        } else {
3601f4f5   Alexandre   Traduction messag...
167
            $this->Flash->error(__('L\'emprunt n\'a pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
168
169
170
171
        }
        return $this->redirect(['action' => 'index']);
    }
}