Blame view

src/Controller/SuivisController.php 10.6 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
61
    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
    public function index()
    {
        $this->paginate = [
ebe38bef   Alexandre   #3586 Ajout assoc...
62
            'contain' => ['Materiels', 'TypeSuivis']
6c4edfa3   Alexandre   First Commit LabI...
63
64
65
        ];
        $suivis = $this->paginate($this->Suivis);

183ce554   Alexandre   Ajout de test, su...
66
67
        $this->set('nbSuivis', $this->Suivis->find('all')->count());
        
6c4edfa3   Alexandre   First Commit LabI...
68
69
70
71
72
73
74
75
76
77
78
79
80
81
        $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
82
            'contain' => ['Materiels', 'Documents', 'TypeSuivis', 'GroupesThematiques', 'GroupesMetiers']
6c4edfa3   Alexandre   First Commit LabI...
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
        ]);

        $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
99
100
            
            $suivi->panne_resolu = false;
6c4edfa3   Alexandre   First Commit LabI...
101
            if ($this->Suivis->save($suivi)) {
3601f4f5   Alexandre   Traduction messag...
102
                $this->Flash->success(__('Le suivi a bien été ajouté.'));
63a22db6   Alexandre   Version: 2.2.5.0
103
                return $this->redirect(['controller' => 'Materiels', 'action' => 'view', $this->passedArgs[0]]);
6c4edfa3   Alexandre   First Commit LabI...
104
            } else {
3601f4f5   Alexandre   Traduction messag...
105
                $this->Flash->error(__('Le suivi n\'a pas pu être ajouté.'));
6c4edfa3   Alexandre   First Commit LabI...
106
107
            }
        }
19798ef9   Alexandre   Mode_install, maj...
108
109
        $materiels = $this->Suivis->Materiels->find('list');
        
e9a0cc56   Alexandre   Version: 2.4.6.0
110
        $materiel = $this->Suivis->Materiels->find()->where(['id =' => $this->passedArgs[0]])->first();
19798ef9   Alexandre   Mode_install, maj...
111
        
ebe38bef   Alexandre   #3586 Ajout assoc...
112
        $typeSuivis = $this->Suivis->TypeSuivis->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
113
        
e9a0cc56   Alexandre   Version: 2.4.6.0
114
115
116
117
        $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...
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
        $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...
136
                $this->Flash->success(__('Le suivi a bien été édité.'));
d40786f0   Alexandre   Version: 2.4.2.3
137
                return $this->redirect(['action' => 'view', $id]);
6c4edfa3   Alexandre   First Commit LabI...
138
            } else {
3601f4f5   Alexandre   Traduction messag...
139
                $this->Flash->error(__('Le suivi n\'a pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
140
141
            }
        }
19798ef9   Alexandre   Mode_install, maj...
142
143
144
145
        $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...
146
        $typeSuivis = $this->Suivis->TypeSuivis->find('list', [ 'keyField' => 'id', 'valueField' => 'nom']);
19798ef9   Alexandre   Mode_install, maj...
147
        
e9a0cc56   Alexandre   Version: 2.4.6.0
148
149
150
151
        $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...
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
        $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...
167
            $this->Flash->success(__('Le suivi a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
168
        } else {
3601f4f5   Alexandre   Traduction messag...
169
            $this->Flash->error(__('Le suivi n\'a pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
170
171
172
        }
        return $this->redirect(['action' => 'index']);
    }
e9a0cc56   Alexandre   Version: 2.4.6.0
173
174
175
176
177
178
179
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
    
    /**
     * 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
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
    // called from Javascript (Ajax)
    public function getNextDate($date, $frequence, $typeFrequence) {
		$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;
		}

    		$this->set ('date', date_format($date_next, 'd-m-Y'));

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