Blame view

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

use App\Controller\AppController;
19798ef9   Alexandre   Mode_install, maj...
5
use Cake\ORM\TableRegistry;
6c4edfa3   Alexandre   First Commit LabI...
6
7
8
9
10
11
12
13
14

/**
 * Suivis Controller
 *
 * @property \App\Model\Table\SuivisTable $Suivis
 */
class SuivisController extends AppController
{

04a6b875   Alexandre   Version: 2.4.2.0
15
16
17
18
19
20
21
22
23
24
25
26
27
28
	/**
	 * @param $user
	 *
	 * Give authorization for suivis
	 *
	 * @return boolean
	 */
	public function isAuthorized($user)
	{
		$configuration = TableRegistry::get('Configurations')->find()->where(['id =' => 1])->first();
		$role = TableRegistry::get('Users')->find()->where(['username' => $user[$configuration->authentificationType_ldap][0]])->first()['role'];
		 
		$action = $this->request->params['action'];
		 
bc2274a0   Alexandre   Version: 2.4.6.3
29
		if($this->userHasRole('Administration')) return true;
04a6b875   Alexandre   Version: 2.4.2.0
30
31
32
33
34
	
		//Pour un "utilisateur"
		if (in_array($action, ['edit', 'delete'])) {
			$id = (int)$this->request->params['pass'][0];
			if($this->isOwnedBy($id, $user['givenname'][0].' '.$user['sn'][0])) return true;
bc2274a0   Alexandre   Version: 2.4.6.3
35
			if($role == 'Responsable' && $this->isRespGroup($id, $user[$configuration->authentificationType_ldap][0])) return true;
04a6b875   Alexandre   Version: 2.4.2.0
36
37
38
39
40
41
42
43
44
45
46
		}
		 
		return parent::isAuthorized($user);
	}
	
	
	public function isOwnedBy($id, $nomCreateur)
	{
		return $this->Suivis->exists(['id' => $id, 'nom_createur' => $nomCreateur]);
	}

bc2274a0   Alexandre   Version: 2.4.6.3
47
48
49
50
51
52
	public function isRespGroup($id, $loginResponsable)
	{
		$u = TableRegistry::get('Users')->find()->where(['username' => $loginResponsable])->first();
	
		return ($this->Suivis->exists(['id' => $id, 'groupes_metier_id' => $u['groupes_metier_id']]) || $this->Suivis->exists(['id' => $id, 'groupes_thematique_id' => $u['groupe_thematique_id']]));
	}
04a6b875   Alexandre   Version: 2.4.2.0
53
	
6c4edfa3   Alexandre   First Commit LabI...
54
55
56
57
58
59
60
    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
302307ec   Alexandre   Version: 2.4.7.0
61
62
63
64
65
66
67
    	$condition = '';
    	
    	$GM = $this->request->query('GM');
    	if(isset($GM)) {
    		$condition = ['Suivis.groupes_metier_id =' => $this->request->query('GM')];
    	}
    	
6c4edfa3   Alexandre   First Commit LabI...
68
        $this->paginate = [
ebe38bef   Alexandre   #3586 Ajout assoc...
69
            'contain' => ['Materiels', 'TypeSuivis']
6c4edfa3   Alexandre   First Commit LabI...
70
        ];
302307ec   Alexandre   Version: 2.4.7.0
71
        $suivis = $this->paginate($this->Suivis->find('all', ['conditions' => $condition]));
6c4edfa3   Alexandre   First Commit LabI...
72

302307ec   Alexandre   Version: 2.4.7.0
73
        $this->set('nbSuivis', $this->Suivis->find('all', ['conditions' => $condition])->count());
183ce554   Alexandre   Ajout de test, su...
74
        
6c4edfa3   Alexandre   First Commit LabI...
75
76
77
78
79
80
81
82
83
84
85
86
87
88
        $this->set(compact('suivis'));
        $this->set('_serialize', ['suivis']);
    }

    /**
     * View method
     *
     * @param string|null $id Suivi id.
     * @return \Cake\Network\Response|null
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
    public function view($id = null)
    {
        $suivi = $this->Suivis->get($id, [
e9a0cc56   Alexandre   Version: 2.4.6.0
89
            'contain' => ['Materiels', 'Documents', 'TypeSuivis', 'GroupesThematiques', 'GroupesMetiers']
6c4edfa3   Alexandre   First Commit LabI...
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
        ]);

        $this->set('suivi', $suivi);
        $this->set('_serialize', ['suivi']);
    }

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
    public function add()
    {
        $suivi = $this->Suivis->newEntity();
        if ($this->request->is('post')) {
            $suivi = $this->Suivis->patchEntity($suivi, $this->request->data);
3ef8f907   Alexandre   Version: 2.4.5.0
106
107
            
            $suivi->panne_resolu = false;
6c4edfa3   Alexandre   First Commit LabI...
108
            if ($this->Suivis->save($suivi)) {
3601f4f5   Alexandre   Traduction messag...
109
                $this->Flash->success(__('Le suivi a bien été ajouté.'));
63a22db6   Alexandre   Version: 2.2.5.0
110
                return $this->redirect(['controller' => 'Materiels', 'action' => 'view', $this->passedArgs[0]]);
6c4edfa3   Alexandre   First Commit LabI...
111
            } else {
3601f4f5   Alexandre   Traduction messag...
112
                $this->Flash->error(__('Le suivi n\'a pas pu être ajouté.'));
6c4edfa3   Alexandre   First Commit LabI...
113
114
            }
        }
19798ef9   Alexandre   Mode_install, maj...
115
116
        $materiels = $this->Suivis->Materiels->find('list');
        
e9a0cc56   Alexandre   Version: 2.4.6.0
117
        $materiel = $this->Suivis->Materiels->find()->where(['id =' => $this->passedArgs[0]])->first();
19798ef9   Alexandre   Mode_install, maj...
118
        
ebe38bef   Alexandre   #3586 Ajout assoc...
119
        $typeSuivis = $this->Suivis->TypeSuivis->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
120
        
e9a0cc56   Alexandre   Version: 2.4.6.0
121
122
123
124
        $groupesThematiques = $this->Suivis->GroupesThematiques->find('list', [ 'keyField' => 'id', 'valueField' => 'nom', 'order' => 'GroupesThematiques.nom']);
        $groupesMetiers = $this->Suivis->GroupesMetiers->find('list', [ 'keyField' => 'id', 'valueField' => 'nom', 'order' => 'GroupesMetiers.nom']);
        
        $this->set(compact('suivi', 'materiels', 'typeSuivis', 'materiel', 'groupesThematiques', 'groupesMetiers'));
6c4edfa3   Alexandre   First Commit LabI...
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
        $this->set('_serialize', ['suivi']);
    }

    /**
     * Edit method
     *
     * @param string|null $id Suivi 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)
    {
        $suivi = $this->Suivis->get($id, [
            'contain' => []
        ]);
        if ($this->request->is(['patch', 'post', 'put'])) {
            $suivi = $this->Suivis->patchEntity($suivi, $this->request->data);
            if ($this->Suivis->save($suivi)) {
3601f4f5   Alexandre   Traduction messag...
143
                $this->Flash->success(__('Le suivi a bien été édité.'));
d40786f0   Alexandre   Version: 2.4.2.3
144
                return $this->redirect(['action' => 'view', $id]);
6c4edfa3   Alexandre   First Commit LabI...
145
            } else {
3601f4f5   Alexandre   Traduction messag...
146
                $this->Flash->error(__('Le suivi n\'a pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
147
148
            }
        }
19798ef9   Alexandre   Mode_install, maj...
149
150
151
152
        $materiels = $this->Suivis->Materiels->find('list');
        
        $numMateriel = $this->Suivis->Materiels->find()->select('numero_laboratoire')->where(['id =' => $suivi->get('materiel_id')])->first()['numero_laboratoire'];
        
ebe38bef   Alexandre   #3586 Ajout assoc...
153
        $typeSuivis = $this->Suivis->TypeSuivis->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
154
        
e9a0cc56   Alexandre   Version: 2.4.6.0
155
156
157
158
        $groupesThematiques = $this->Suivis->GroupesThematiques->find('list', [ 'keyField' => 'id', 'valueField' => 'nom', 'order' => 'GroupesThematiques.nom']);
        $groupesMetiers = $this->Suivis->GroupesMetiers->find('list', [ 'keyField' => 'id', 'valueField' => 'nom', 'order' => 'GroupesMetiers.nom']);
        
        $this->set(compact('suivi', 'materiels', 'typeSuivis', 'numMateriel', 'groupesThematiques', 'groupesMetiers'));
6c4edfa3   Alexandre   First Commit LabI...
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
        $this->set('_serialize', ['suivi']);
    }

    /**
     * Delete method
     *
     * @param string|null $id Suivi 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']);
        $suivi = $this->Suivis->get($id);
        if ($this->Suivis->delete($suivi)) {
3601f4f5   Alexandre   Traduction messag...
174
            $this->Flash->success(__('Le suivi a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
175
        } else {
3601f4f5   Alexandre   Traduction messag...
176
            $this->Flash->error(__('Le suivi n\'a pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
177
178
179
        }
        return $this->redirect(['action' => 'index']);
    }
e9a0cc56   Alexandre   Version: 2.4.6.0
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
    
    /**
     * GetConditionForField method
     *
     * @param unknown $fieldName
     * @return string[]|NULL
     */
    private function getConditionForField($fieldName) {
    	$searchFieldName = 's_' . $fieldName;
    	if ( isset($this->request->data[$searchFieldName]) && ($this->request->data[$searchFieldName] != '')) return ["Suivis.$fieldName LIKE" => '%'.$this->request->data[$searchFieldName].'%'];
    	return NULL;
    }
    
    
    /**
     * GetConditionForFieldNumber method
     *
     * @param unknown $fieldName
     * @return $string[]|NULL
     */
    private function getConditionForFieldNumber($fieldName) {
    	$searchFieldName = 's_' . $fieldName;
    	if ( isset($this->request->data[$searchFieldName]) && ($this->request->data[$searchFieldName] != '')) return ["Suivis.$fieldName =" => $this->request->data[$searchFieldName]];
    	return NULL;
    }
    
    
    /**
     * Find method
     */
    public function find() {
    
    	$s_groupes_thematiques = $this->Suivis->GroupesThematiques->find('list', [ 'keyField' => 'id', 'valueField' => 'nom', 'order' => 'GroupesThematiques.nom']);
    	$s_groupes_metiers = $this->Suivis->GroupesMetiers->find('list', [ 'keyField' => 'id', 'valueField' => 'nom', 'order' => 'GroupesMetiers.nom']);
    	$s_type_suivis = $this->Suivis->TypeSuivis;
    	$materiels = $this->Suivis->Materiels;
    	
    	$this->set(compact('s_groupes_thematiques', 's_groupes_metiers', 's_type_suivis', 'materiels'));
    	 
    	$resultTri = $this->request->session()->read("resultTri");
    	 
    	if ($this->request->is('post')) {
    		$specificFieldsConditions = NULL;

    		$periode_interventionRequest = NULL;
    		$date_intervention = NULL;
    		if ($this->request->data['s_periode_controle1'] != '') $periode_interventionRequest['Suivis.date_controle >='] = date('Y-m-d', strtotime(str_replace('/', '-', $this->request->data['s_periode_controle1'])));
    		if ($this->request->data['s_periode_controle2'] != '') $periode_interventionRequest['Suivis.date_controle <='] = date('Y-m-d', strtotime(str_replace('/', '-', $this->request->data['s_periode_controle2'])));
	 		if ($this->request->data['s_date_controle'] != '') $date_intervention['Suivis.date_controle ='] = date('Y-m-d', strtotime(str_replace('/', '-', $this->request->data['s_date_controle'])));
    		
    		$specificFieldsConditions = [
				$date_intervention,
				$periode_interventionRequest,
    			$this->getConditionForFieldNumber('type_suivi_id'),
    			$this->getConditionForField('organisme'),
   				$this->getConditionForFieldNumber('groupes_metier_id'),
    			$this->getConditionForFieldNumber('groupes_thematique_id'),					
    		];
    
    		// CONSTRUCTION DE LA REQUETE SQL COMPLETE = $specificFieldsConditions
    		// by default, no sort
    		$lastResults = $this->Suivis->find('all', ['conditions' => $specificFieldsConditions]);
    
    		$this->paginate = ['limit' => 1000];
    		$_results = $this->paginate($lastResults);
    		$this->set(compact('_results'));
    
    	} // end if()
    	else if (isset($resultTri) && strstr($this->request->here(), 'sort') != false && strstr($this->request->here(), 'direction') != false) {
    		$findedSuivis = [];
    
    		foreach($resultTri as $r) {
    			array_push($findedSuivis, $r->id);
    		}
    		$res = $this->Suivis->find('all', ['limit' => 1000]);
    		for($i = 0; $i < sizeof($findedSuivis); $i++) {
    			$res->orWhere(['id =' => $findedSuivis[$i]]);
    		}
    
    		$this->paginate = ['limit' => 1000];
    		$_results = $this->paginate($res);
    		$this->set(compact('_results'));

    	}
    }
    
3ab8435b   Alexandre   Version: 2.4.6.4
266
    // called from Javascript (Ajax)
94e21fe8   Alexandre   Version: 2.4.6.9
267
    public function getNextDate($dateORjour, $frequenceORmois, $typeFrequenceORannee, $frequence = null, $typeFrequence = null) {
3ab8435b   Alexandre   Version: 2.4.6.4
268

94e21fe8   Alexandre   Version: 2.4.6.9
269
    	if($frequence != null && $typeFrequence != null) {
cccac752   Alexandre   Version: 2.4.6.8
270
    		$date = $dateORjour.'-'.$frequenceORmois.'-'.$typeFrequenceORannee;
cccac752   Alexandre   Version: 2.4.6.8
271
272
    	} else {
    		$date = $dateORjour;
94e21fe8   Alexandre   Version: 2.4.6.9
273
274
    		$frequence = $frequenceORmois;
    		$typeFrequence = $typeFrequenceORannee;
cccac752   Alexandre   Version: 2.4.6.8
275
276
    	}
    	
94e21fe8   Alexandre   Version: 2.4.6.9
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
    	$date_next = date_create_from_format('d-m-Y', $date);
    	
    	switch($typeFrequence) {
    		case "Jours":
    			date_add($date_next, date_interval_create_from_date_string($frequence.' days'));
    			break;
    		case "Semaines":
    			date_add($date_next, date_interval_create_from_date_string((7*$frequence).' days'));
    			break;
    		case "Mois":
    			date_add($date_next, date_interval_create_from_date_string($frequence.' months'));
    			break;
    		case "Ans":
    			date_add($date_next, date_interval_create_from_date_string($frequence.' years'));
    			break;
    	}
cccac752   Alexandre   Version: 2.4.6.8
293
    	
94e21fe8   Alexandre   Version: 2.4.6.9
294
    	$this->set ('date', date_format($date_next, 'd-m-Y'));
3ab8435b   Alexandre   Version: 2.4.6.4
295
296
297
298

    
    	$this->viewBuilder()->layout = 'ajax';
    }
e9a0cc56   Alexandre   Version: 2.4.6.0
299
    
6c4edfa3   Alexandre   First Commit LabI...
300
}