Blame view

src/Controller/SuivisController.php 19.4 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

/**
 * Suivis Controller
 *
 * @property \App\Model\Table\SuivisTable $Suivis
 */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
class SuivisController extends AppController {

    /**
     *
     * @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'];

        if ($this->userHasRole('Administration'))
            return true;

        // Pour un "utilisateur"
        if (in_array($action, [
            'edit',
            'delete'
        ])) {
            $id = (int) $this->request->params['pass'][0];
            if ($this->isOwnedBy($id, $user['sn'][0] . ' ' . $user['givenname'][0]))
                return true;
            if ($role == 'Responsable' && $this->isRespGroup($id, $user[$configuration->authentificationType_ldap][0]))
                return true;
        }

        return parent::isAuthorized($user);
    }

    public function isOwnedBy($id, $nomCreateur) {
        return $this->Suivis->exists([
            'id' => $id,
            'nom_createur' => $nomCreateur
        ]);
    }

    public function isRespGroup($id, $loginResponsable) {
        $u = TableRegistry::get('Users')->find()
            ->where([
            'username' => $loginResponsable
        ])
            ->first();

        if (isset($u['groupes_metier_id']) && $u['groupes_metier_id'] != TableRegistry::get('GroupesMetiers')->find()
            ->where([
            'nom =' => 'N/A'
        ])
            ->first()['id']) {
            return ($this->Suivis->exists([
                'id' => $id,
                'groupes_metier_id' => $u['groupes_metier_id']
            ]));
        } else if (isset($u['groupe_thematique_id']) && $u['groupe_thematique_id'] != TableRegistry::get('GroupesThematiques')->find()
            ->where([
            'nom =' => 'N/A'
        ])
            ->first()['id']) {
            return ($this->Suivis->exists([
                'id' => $id,
                'groupes_thematique_id' => $u['groupe_thematique_id']
            ]));
        } else {
            return false;
        }
    }

6c4edfa3   Alexandre   First Commit LabI...
89
90
91
92
93
    /**
     * Index method
     *
     * @return \Cake\Network\Response|null
     */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
    public function index() {
        $condition = '';

        $GM = $this->request->query('GM');
        $GT = $this->request->query('GT');

        if (isset($GM) || isset($GT)) {
            if (isset($GM) && $GM != TableRegistry::get('GroupesMetiers')->find()
                ->where([
                'nom =' => 'N/A'
            ])
                ->first()['id']) {
                $condition = [
                    'Suivis.groupes_metier_id =' => $GM
                ];
            } else if (isset($GT) && $GT != TableRegistry::get('GroupesThematiques')->find()
                ->where([
                'nom =' => 'N/A'
            ])
                ->first()['id']) {
                $condition = [
                    'Suivis.groupes_thematique_id =' => $GT
                ];
            } else {
                $condition = [
                    'Suivis.id =' => 0
                ];
            }
        }

6c4edfa3   Alexandre   First Commit LabI...
124
        $this->paginate = [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
125
126
127
128
            'contain' => [
                'Materiels',
                'TypeSuivis'
            ]
6c4edfa3   Alexandre   First Commit LabI...
129
        ];
2389dbd8   Thibaud Ajas   bugfixes lies au ...
130
131
132
133
134
135
136
137
        $suivis = $this->paginate($this->Suivis->find('all', [
            'conditions' => $condition
        ]));

        $this->set('nbSuivis', $this->Suivis->find('all', [
            'conditions' => $condition
        ])
            ->count());
6c4edfa3   Alexandre   First Commit LabI...
138

6c4edfa3   Alexandre   First Commit LabI...
139
        $this->set(compact('suivis'));
2389dbd8   Thibaud Ajas   bugfixes lies au ...
140
141
142
        $this->set('_serialize', [
            'suivis'
        ]);
6c4edfa3   Alexandre   First Commit LabI...
143
144
145
146
147
    }

    /**
     * View method
     *
2389dbd8   Thibaud Ajas   bugfixes lies au ...
148
149
     * @param string|null $id
     *            Suivi id.
6c4edfa3   Alexandre   First Commit LabI...
150
151
152
     * @return \Cake\Network\Response|null
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
153
    public function view($id = null) {
6c4edfa3   Alexandre   First Commit LabI...
154
        $suivi = $this->Suivis->get($id, [
2389dbd8   Thibaud Ajas   bugfixes lies au ...
155
156
157
158
159
160
161
162
163
            'contain' => [
                'Materiels',
                'Documents',
                'TypeSuivis',
                'GroupesThematiques',
                'GroupesMetiers',
                'Unites',
                'Fichemetrologiques'
            ]
6c4edfa3   Alexandre   First Commit LabI...
164
        ]);
9b4da83b   Alexandre   Version: 2.5.0.0
165
        $typeDocuments = TableRegistry::get('TypeDocuments');
2389dbd8   Thibaud Ajas   bugfixes lies au ...
166
167
168
169
170
171
172
173
174
175
176
177
        $fichemet = TableRegistry::get('Fichemetrologiques')->find('all', [
            'conditions' => [
                'suivi_id' => $this->request->params['pass'][0]
            ],
            'order' => ('id DESC')
        ]);

        if (! isset($fichemet))
            $fiche = $fichemet->first();
        else
            $fiche = null;

9b4da83b   Alexandre   Version: 2.5.0.0
178
        $this->set('typeDocuments', $typeDocuments);
6c4edfa3   Alexandre   First Commit LabI...
179
        $this->set('suivi', $suivi);
2389dbd8   Thibaud Ajas   bugfixes lies au ...
180
181
182
        $this->set('fiche', $fiche);
        $this->set('_serialize', [
            'suivi'
6c4edfa3   Alexandre   First Commit LabI...
183
        ]);
6c4edfa3   Alexandre   First Commit LabI...
184
185
186
187
188
189
190
    }

    /**
     * Add method
     *
     * @return \Cake\Network\Response|void Redirects on successful add, renders view otherwise.
     */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
191
    public function add() {
6c4edfa3   Alexandre   First Commit LabI...
192
193
194
        $suivi = $this->Suivis->newEntity();
        if ($this->request->is('post')) {
            $suivi = $this->Suivis->patchEntity($suivi, $this->request->data);
2389dbd8   Thibaud Ajas   bugfixes lies au ...
195
196
            if (isset($this->request->data['typemesure']) && $this->request->data['typemesure'] == "1")
                $suivi->typemesure = "Indirect";
3ef8f907   Alexandre   Version: 2.4.5.0
197
            $suivi->panne_resolu = false;
6c4edfa3   Alexandre   First Commit LabI...
198
            if ($this->Suivis->save($suivi)) {
3601f4f5   Alexandre   Traduction messag...
199
                $this->Flash->success(__('Le suivi a bien été ajouté.'));
2389dbd8   Thibaud Ajas   bugfixes lies au ...
200
201
202
203
204
                return $this->redirect([
                    'controller' => 'Materiels',
                    'action' => 'view',
                    $this->request->params['pass'][0]
                ]);
6c4edfa3   Alexandre   First Commit LabI...
205
            } else {
3601f4f5   Alexandre   Traduction messag...
206
                $this->Flash->error(__('Le suivi n\'a pas pu être ajouté.'));
2389dbd8   Thibaud Ajas   bugfixes lies au ...
207
208
209
210
211
                return $this->redirect([
                    'controller' => 'Materiels',
                    'action' => 'view',
                    $this->request->params['pass'][0]
                ]);
6c4edfa3   Alexandre   First Commit LabI...
212
213
            }
        }
19798ef9   Alexandre   Mode_install, maj...
214
        $materiels = $this->Suivis->Materiels->find('list');
2389dbd8   Thibaud Ajas   bugfixes lies au ...
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
        $unite = TableRegistry::get('Unites')->find('list', [
            'keyfield' => 'id',
            'valueField' => 'nom'
        ]);
        $formule = TableRegistry::get('Formules')->find('list', [
            'keyfield' => 'id',
            'valueField' => 'formule'
        ]);
        $formules = TableRegistry::get('Formules')->find('all');
        // Le materiel est-il suivi en métrologie ou non ?
        $metro = TableRegistry::get('Materiels')->find()
            ->select('metrologie')
            ->where([
            'id =' => $this->request->params['pass'][0]
        ])
            ->first()['metrologie'];
5973ba4e   Alexis Proust   mise a jour fichier
231
        $variables = TableRegistry::get('Variables')->find('list')->toArray();
2389dbd8   Thibaud Ajas   bugfixes lies au ...
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251

        $materiel = $this->Suivis->Materiels->find()
            ->where([
            'id =' => $this->request->params['pass'][0]
        ])
            ->first();
        // $domaineresp= TableRegistry::get('Users')->find()->select('sur_categorie_id')->where(['username =' => $this->LdapAuth->user($this->request->session()->read('authType'))[0]])->first()['sur_categorie_id'];

        if ($metro == 1) {
            $typeSuivis = $this->Suivis->TypeSuivis->find('list', [
                'keyField' => 'id',
                'valueField' => 'nom'
            ]);
        } else {
            $typeSuivis = $this->Suivis->TypeSuivis->find('list', [
                'keyField' => 'id',
                'valueField' => 'nom',
                'conditions' => [
                    'AND' => [
                        [
e61b448a   Thibaud Ajas   bugfixes
252
                            'nom !=' => 'Etalonnage interne'
2389dbd8   Thibaud Ajas   bugfixes lies au ...
253
254
                        ],
                        [
e61b448a   Thibaud Ajas   bugfixes
255
                            'nom !=' => 'Etalonnage externe'
2389dbd8   Thibaud Ajas   bugfixes lies au ...
256
257
                        ],
                        [
e61b448a   Thibaud Ajas   bugfixes
258
                            'nom !=' => 'Vérification métrologique'
2389dbd8   Thibaud Ajas   bugfixes lies au ...
259
260
261
262
                        ]
                    ]
                ]
            ]);
5973ba4e   Alexis Proust   mise a jour fichier
263
        }
2389dbd8   Thibaud Ajas   bugfixes lies au ...
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
        $dom = TableRegistry::get('Materiels')->find()
            ->select('sur_categorie_id')
            ->where([
            'id =' => $materiel->id
        ])
            ->first()['sur_categorie_id'];
        $domaines = TableRegistry::get('Users')->find()
            ->select('sur_categorie_id')
            ->where([
            'username =' => $this->LdapAuth->user($this->request->session()
                ->read('authType'))[0]
        ])
            ->first()['sur_categorie_id'];
        if ($dom == $domaines)
            $domaineresp = true;
        else
            $domaineresp = false;

        $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('variables', 'formule', 'formules', 'unite', 'domaineresp', 'suivi', 'materiels', 'typeSuivis', 'materiel', 'groupesThematiques', 'groupesMetiers'));
        $this->set('_serialize', [
            'suivi'
        ]);
6c4edfa3   Alexandre   First Commit LabI...
297
298
299
300
301
    }

    /**
     * Edit method
     *
2389dbd8   Thibaud Ajas   bugfixes lies au ...
302
303
     * @param string|null $id
     *            Suivi id.
6c4edfa3   Alexandre   First Commit LabI...
304
305
306
     * @return \Cake\Network\Response|void Redirects on successful edit, renders view otherwise.
     * @throws \Cake\Network\Exception\NotFoundException When record not found.
     */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
307
    public function edit($id = null) {
6c4edfa3   Alexandre   First Commit LabI...
308
309
310
        $suivi = $this->Suivis->get($id, [
            'contain' => []
        ]);
2389dbd8   Thibaud Ajas   bugfixes lies au ...
311
312
313
314
315
        if ($this->request->is([
            'patch',
            'post',
            'put'
        ])) {
6c4edfa3   Alexandre   First Commit LabI...
316
317
            $suivi = $this->Suivis->patchEntity($suivi, $this->request->data);
            if ($this->Suivis->save($suivi)) {
3601f4f5   Alexandre   Traduction messag...
318
                $this->Flash->success(__('Le suivi a bien été édité.'));
2389dbd8   Thibaud Ajas   bugfixes lies au ...
319
320
321
322
                return $this->redirect([
                    'action' => 'index',
                    $id
                ]);
6c4edfa3   Alexandre   First Commit LabI...
323
            } else {
3601f4f5   Alexandre   Traduction messag...
324
                $this->Flash->error(__('Le suivi n\'a pas pu être édité.'));
6c4edfa3   Alexandre   First Commit LabI...
325
326
            }
        }
19798ef9   Alexandre   Mode_install, maj...
327
        $materiels = $this->Suivis->Materiels->find('list');
2389dbd8   Thibaud Ajas   bugfixes lies au ...
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
        $materiel = $this->Suivis->Materiels->find()
            ->where([
            'id =' => $suivi->materiel_id
        ])
            ->first();
        $unite = TableRegistry::get('Unites')->find('list', [
            'keyfield' => 'id',
            'valueField' => 'nom'
        ]);

        $numMateriel = $this->Suivis->Materiels->find()
            ->select('numero_laboratoire')
            ->where([
            'id =' => $suivi->get('materiel_id')
        ])
            ->first()['numero_laboratoire'];
        $metro = TableRegistry::get('Materiels')->find()
            ->select('metrologie')
            ->where([
            'id =' => $suivi->materiel_id
        ])
            ->first()['metrologie'];

        $typeSuivis = $this->Suivis->TypeSuivis->find('list', [
            'keyField' => 'id',
            'valueField' => 'nom'
        ]);

        $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'
        ]);
        if ($metro == 1) {
            $typeSuivis = $this->Suivis->TypeSuivis->find('list', [
                'keyField' => 'id',
                'valueField' => 'nom'
            ]);
        } else {
            $typeSuivis = $this->Suivis->TypeSuivis->find('list', [
                'keyField' => 'id',
                'valueField' => 'nom',
                'conditions' => [
                    'AND' => [
                        [
                            'id !=' => '4'
                        ],
                        [
                            'id !=' => '5'
                        ],
                        [
                            'id !=' => '6'
                        ]
                    ]
                ]
            ]);
5973ba4e   Alexis Proust   mise a jour fichier
389
        }
2389dbd8   Thibaud Ajas   bugfixes lies au ...
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
        $dom = TableRegistry::get('Materiels')->find()
            ->select('sur_categorie_id')
            ->where([
            'id =' => $suivi->materiel_id
        ])
            ->first()['sur_categorie_id'];
        $domaines = TableRegistry::get('Users')->find()
            ->select('sur_categorie_id')
            ->where([
            'username =' => $this->LdapAuth->user($this->request->session()
                ->read('authType'))[0]
        ])
            ->first()['sur_categorie_id'];
        if ($dom == $domaines)
            $domaineresp = true;
        else
            $domaineresp = false;

        $this->set(compact('unite', 'metro', 'domaineresp', 'suivi', 'materiel', 'materiels', 'typeSuivis', 'numMateriel', 'groupesThematiques', 'groupesMetiers'));
        $this->set('_serialize', [
            'suivi'
        ]);
6c4edfa3   Alexandre   First Commit LabI...
412
413
414
415
416
    }

    /**
     * Delete method
     *
2389dbd8   Thibaud Ajas   bugfixes lies au ...
417
418
     * @param string|null $id
     *            Suivi id.
6c4edfa3   Alexandre   First Commit LabI...
419
420
421
     * @return \Cake\Network\Response|null Redirects to index.
     * @throws \Cake\Datasource\Exception\RecordNotFoundException When record not found.
     */
2389dbd8   Thibaud Ajas   bugfixes lies au ...
422
423
424
425
426
    public function delete($id = null) {
        $this->request->allowMethod([
            'post',
            'delete'
        ]);
6c4edfa3   Alexandre   First Commit LabI...
427
428
        $suivi = $this->Suivis->get($id);
        if ($this->Suivis->delete($suivi)) {
3601f4f5   Alexandre   Traduction messag...
429
            $this->Flash->success(__('Le suivi a bien été supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
430
        } else {
3601f4f5   Alexandre   Traduction messag...
431
            $this->Flash->error(__('Le suivi n\'a pas pu être supprimé.'));
6c4edfa3   Alexandre   First Commit LabI...
432
        }
2389dbd8   Thibaud Ajas   bugfixes lies au ...
433
434
435
        return $this->redirect([
            'action' => 'index'
        ]);
6c4edfa3   Alexandre   First Commit LabI...
436
    }
2389dbd8   Thibaud Ajas   bugfixes lies au ...
437

e9a0cc56   Alexandre   Version: 2.4.6.0
438
439
440
441
442
443
444
    /**
     * GetConditionForField method
     *
     * @param unknown $fieldName
     * @return string[]|NULL
     */
    private function getConditionForField($fieldName) {
2389dbd8   Thibaud Ajas   bugfixes lies au ...
445
446
447
448
449
450
        $searchFieldName = 's_' . $fieldName;
        if (isset($this->request->data[$searchFieldName]) && ($this->request->data[$searchFieldName] != ''))
            return [
                "Suivis.$fieldName LIKE" => '%' . $this->request->data[$searchFieldName] . '%'
            ];
        return NULL;
e9a0cc56   Alexandre   Version: 2.4.6.0
451
    }
2389dbd8   Thibaud Ajas   bugfixes lies au ...
452

e9a0cc56   Alexandre   Version: 2.4.6.0
453
454
455
456
457
458
459
    /**
     * GetConditionForFieldNumber method
     *
     * @param unknown $fieldName
     * @return $string[]|NULL
     */
    private function getConditionForFieldNumber($fieldName) {
2389dbd8   Thibaud Ajas   bugfixes lies au ...
460
461
462
463
464
465
        $searchFieldName = 's_' . $fieldName;
        if (isset($this->request->data[$searchFieldName]) && ($this->request->data[$searchFieldName] != ''))
            return [
                "Suivis.$fieldName =" => $this->request->data[$searchFieldName]
            ];
        return NULL;
e9a0cc56   Alexandre   Version: 2.4.6.0
466
    }
2389dbd8   Thibaud Ajas   bugfixes lies au ...
467

e9a0cc56   Alexandre   Version: 2.4.6.0
468
469
470
471
    /**
     * Find method
     */
    public function find() {
2389dbd8   Thibaud Ajas   bugfixes lies au ...
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
        $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->getConditionForField('statut'),
                $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'));
        }
e9a0cc56   Alexandre   Version: 2.4.6.0
544
    }
2389dbd8   Thibaud Ajas   bugfixes lies au ...
545

3ab8435b   Alexandre   Version: 2.4.6.4
546
    // called from Javascript (Ajax)
94e21fe8   Alexandre   Version: 2.4.6.9
547
    public function getNextDate($dateORjour, $frequenceORmois, $typeFrequenceORannee, $frequence = null, $typeFrequence = null) {
2389dbd8   Thibaud Ajas   bugfixes lies au ...
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
        if ($frequence != null && $typeFrequence != null) {
            $date = $dateORjour . '-' . $frequenceORmois . '-' . $typeFrequenceORannee;
        } else {
            $date = $dateORjour;
            $frequence = $frequenceORmois;
            $typeFrequence = $typeFrequenceORannee;
        }

        $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'));
3ab8435b   Alexandre   Version: 2.4.6.4
574

2389dbd8   Thibaud Ajas   bugfixes lies au ...
575
        $this->viewBuilder()->layout = 'ajax';
3ab8435b   Alexandre   Version: 2.4.6.4
576
    }
6c4edfa3   Alexandre   First Commit LabI...
577
}