/[openfoncier]/trunk/obj/task.class.php
ViewVC logotype

Diff of /trunk/obj/task.class.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

branches/4.14.0-develop_demat/obj/task.class.php revision 9414 by softime, Mon Jun 22 16:59:22 2020 UTC trunk/obj/task.class.php revision 10808 by softime, Wed Nov 24 17:48:35 2021 UTC
# Line 1  Line 1 
1  <?php  <?php
2  //$Id$  //$Id$
3  //gen openMairie le 14/04/2020 14:11  //gen openMairie le 14/04/2020 14:11
4    
5  require_once "../gen/obj/task.class.php";  require_once "../gen/obj/task.class.php";
6    
7  class task extends task_gen {  class task extends task_gen {
8    
9        const STATUS_DRAFT = 'draft';
10        const STATUS_NEW = 'new';
11        const STATUS_PENDING = 'pending';
12        const STATUS_DONE = 'done';
13        const STATUS_ERROR = 'error';
14        const STATUS_DEBUG = 'debug';
15        const STATUS_ARCHIVED = 'archived';
16        const STATUS_CANCELED = 'canceled';
17    
18        /**
19         * Liste des types de tâche concernant les services instructeurs
20         */
21        const TASK_TYPE_SI = array(
22            'creation_DA',
23            'creation_DI',
24            'depot_DI',
25            'modification_DI',
26            'qualification_DI',
27            'decision_DI',
28            'incompletude_DI',
29            'completude_DI',
30            'ajout_piece',
31            'add_piece',
32            'creation_consultation',
33            'modification_DA',
34            'create_DI',
35            'notification_recepisse',
36            'notification_instruction',
37            'notification_decision',
38        );
39    
40        /**
41         * Liste des types de tâche concernant les services consultés
42         */
43        const TASK_TYPE_SC = array(
44            'create_DI_for_consultation',
45            'avis_consultation',
46            'pec_metier_consultation',
47            'create_message',
48            'notification_recepisse',
49            'notification_instruction',
50            'notification_decision',
51        );
52    
53        /**
54         * Catégorie de la tâche
55         */
56        var $category = 'platau';
57    
58      /**      /**
59       * Définition des actions disponibles sur la classe.       * Définition des actions disponibles sur la classe.
60       *       *
# Line 19  class task extends task_gen { Line 68  class task extends task_gen {
68              "view" => "view_json_data",              "view" => "view_json_data",
69              "permission_suffix" => "consulter",              "permission_suffix" => "consulter",
70          );          );
71            $this->class_actions[997] = array(
72                "identifier" => "json_data",
73                "view" => "post_update_task",
74                "permission_suffix" => "modifier",
75            );
76            $this->class_actions[996] = array(
77                "identifier" => "json_data",
78                "view" => "post_add_task",
79                "permission_suffix" => "ajouter",
80            );
81        }
82    
83        public function setvalF($val = array()) {
84    
85            // // les guillets doubles sont remplacés automatiquement par des simples
86            // // dans core/om_formulaire.clasS.php::recupererPostvar()
87            // // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
88            // // ceci est un hack sale temporaire en attendant résolution du ticket
89            // foreach(array('json_payload', 'timestamp_log') as $key) {
90            //     if (isset($val[$key]) && ! empty($val[$key]) &&
91            //             isset($_POST[$key]) && ! empty($_POST[$key])) {
92            //         $submited_payload = $_POST[$key];
93            //         if (! empty($submited_payload)) {
94            //             $new_payload = str_replace("'", '"', $val[$key]);
95            //             if ($new_payload == $submited_payload ||
96            //                     strpos($submited_payload, '"') === false) {
97            //                 $val[$key] = $new_payload;
98            //             }
99            //             else {
100            //                 $error_msg = sprintf(
101            //                     __("La convertion des guillemets de la payload JSON '%s' ".
102            //                         "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
103            //                     $key, var_export($val[$key], true), var_export($submited_payload, true),
104            //                     var_export($new_payload, true));
105            //                 $this->correct = false;
106            //                 $this->addToMessage($error_msg);
107            //                 $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
108            //                 return false;
109            //             }
110            //         }
111            //     }
112            // }
113    
114            parent::setvalF($val);
115    
116            // XXX Ancien code : permet de ne pas avoir d'erreru lors de la modification d'une task
117            if (array_key_exists('timestamp_log', $val) === true) {
118                $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
119            }
120    
121            // récupération de l'ID de l'objet existant
122            $id = property_exists($this, 'id') ? $this->id : null;
123            if(isset($val[$this->clePrimaire])) {
124                $id = $val[$this->clePrimaire];
125            } elseif(isset($this->valF[$this->clePrimaire])) {
126                $id = $this->valF[$this->clePrimaire];
127            }
128    
129            // MODE MODIFIER
130            if (! empty($id)) {
131    
132                // si aucune payload n'est fourni (devrait toujours être le cas)
133                if (! isset($val['json_payload']) || empty($val['json_payload'])) {
134    
135                    // récupère l'objet existant
136                    $existing = $this->f->findObjectById('task', $id);
137                    if (! empty($existing)) {
138    
139                        // récupère la payload de l'objet
140                        $val['json_payload'] = $existing->getVal('json_payload');
141                        $this->valF['json_payload'] = $existing->getVal('json_payload');
142                        $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
143                            "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
144                    }
145                }
146            }
147    
148            if (array_key_exists('category', $val) === false
149                || $this->valF['category'] === ''
150                || $this->valF['category'] === null) {
151                //
152                $this->valF['category'] = $this->category;
153            }
154        }
155    
156        /**
157         *
158         * @return array
159         */
160        function get_var_sql_forminc__champs() {
161            return array(
162                "task",
163                "type",
164                "state",
165                "object_id",
166                "dossier",
167                "stream",
168                "json_payload",
169                "timestamp_log",
170                "category",
171            );
172        }
173    
174        function setType(&$form, $maj) {
175            parent::setType($form, $maj);
176    
177            // Récupération du mode de l'action
178            $crud = $this->get_action_crud($maj);
179    
180            // ALL
181            $form->setType("category", "hidden");
182    
183            // MODE CREER
184            if ($maj == 0 || $crud == 'create') {
185                $form->setType("state", "select");
186                $form->setType("stream", "select");
187                $form->setType("json_payload", "textarea");
188            }
189            // MDOE MODIFIER
190            if ($maj == 1 || $crud == 'update') {
191                $form->setType("state", "select");
192                $form->setType("stream", "select");
193                $form->setType("json_payload", "jsonprettyprint");
194            }
195            // MODE CONSULTER
196            if ($maj == 3 || $crud == 'read') {
197                $form->setType('dossier', 'link');
198                $form->setType('json_payload', 'jsonprettyprint');
199            }
200    
201        }
202    
203        /**
204         *
205         */
206        function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
207            if($maj < 2) {
208    
209                $contenu = array();
210                foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG', 'ARCHIVED', 'CANCELED') as $key) {
211                    $const_name = 'STATUS_'.$key;
212                    $const_value = constant("self::$const_name");
213                    $contenu[0][] = $const_value;
214                    $contenu[1][] = __($const_value);
215                }
216    
217                $form->setSelect("state", $contenu);
218    
219                $contenu_stream =array();
220                $contenu_stream[0][0]="input";
221                $contenu_stream[1][0]=_('input');
222                $contenu_stream[0][1]="output";
223                $contenu_stream[1][1]=_('output');
224                $form->setSelect("stream", $contenu_stream);
225    
226            }
227    
228            if ($maj == 3) {
229                if ($this->getVal('stream') == 'output') {
230                    $inst_dossier = $this->f->get_inst__om_dbform(array(
231                        "obj" => "dossier",
232                        "idx" => $form->val['dossier'],
233                    ));
234    
235                    if($form->val['type'] == "creation_DA"
236                        || $form->val['type'] == "modification_DA"){
237                        //
238                        $obj_link = 'dossier_autorisation';
239                    } else {
240                        $obj_link = 'dossier_instruction';
241                    }
242    
243                    $params = array();
244                    $params['obj'] = $obj_link;
245                    $params['libelle'] = $inst_dossier->getVal('dossier');
246                    $params['title'] = "Consulter le dossier";
247                    $params['idx'] = $form->val['dossier'];
248                    $form->setSelect("dossier", $params);
249                }
250            }
251        }
252    
253        /**
254         * SETTER_FORM - setVal (setVal).
255         *
256         * @return void
257         */
258        function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {
259            // parent::setVal($form, $maj, $validation);
260            //
261            if ($this->getVal('stream') == "output") {
262                $form->setVal('json_payload', $this->view_form_json(true));
263            } else {
264                $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));
265            }
266        }
267    
268        function setLib(&$form, $maj) {
269            parent::setLib($form, $maj);
270    
271            // Récupération du mode de l'action
272            $crud = $this->get_action_crud($maj);
273    
274            // MODE different de CREER
275            if ($maj != 0 || $crud != 'create') {
276                $form->setLib('json_payload', '');
277            }
278        }
279    
280        public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
281            $ret = parent::verifier($val, $dnu1, $dnu2);
282    
283            // une tâche entrante doit avoir un type et une payload non-vide
284            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
285                if (isset($this->valF['type']) === false) {
286                    $this->correct = false;
287                    $this->addToMessage(sprintf(
288                        __("Le champ %s est obligatoire pour une tâche entrante."),
289                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('type'))
290                    ));
291                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
292                }
293                if (isset($this->valF['json_payload']) === false) {
294                    $this->correct = false;
295                    $this->addToMessage(sprintf(
296                        __("Le champ %s est obligatoire pour une tâche entrante."),
297                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
298                    ));
299                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
300                }
301            }
302    
303            // les JSONs doivent être décodables
304            foreach(array('json_payload', 'timestamp_log') as $key) {
305                if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
306                        is_array(json_decode($this->valF[$key], true)) === false
307                        || json_last_error() !== JSON_ERROR_NONE)) {
308                    $this->correct = false;
309                    $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
310                    $this->addToMessage(sprintf(
311                        __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
312                        "<p>%s valF:</br><pre>%s</pre></p>".
313                        "<p>%s val:</br><pre>%s</pre></p>".
314                        "<p>%s POST:</br><pre>%s</pre></p>".
315                        "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
316                        $champ_text,
317                        json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
318                        $champ_text,
319                        $this->valF[$key],
320                        $champ_text,
321                        $val[$key],
322                        $champ_text,
323                        isset($_POST[$key]) ? $_POST[$key] : '',
324                        $champ_text,
325                        $this->f->get_submitted_post_value($key)
326                    ));
327                    $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
328                }
329            }
330    
331            // une tâche entrante doit avoir une payload avec les clés requises
332            if ($this->correct && (isset($this->valF['stream']) === false ||
333                                   $this->valF['stream'] == 'input')) {
334    
335                // décode la payload JSON
336                $json_payload = json_decode($this->valF['json_payload'], true);
337    
338                // défini une liste de chemin de clés requises
339                $paths = array();
340                if ($this->valF['category'] === 'platau') {
341                    $paths = array(
342                        'external_uids/dossier'
343                    );
344                }
345    
346                // tâche de type création de DI/DA
347                if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {
348    
349                    $paths = array_merge($paths, array(
350                        'dossier/dossier',
351                        'dossier/dossier_autorisation_type_detaille_code',
352                        'dossier/date_demande',
353                        'dossier/depot_electronique',
354                    ));
355    
356                    // si l'option commune est activée (mode MC)
357                    if ($this->f->is_option_dossier_commune_enabled()) {
358                        $paths[] = 'dossier/insee';
359                    }
360    
361                    // présence d'un moyen d'identifier la collectivité/le service
362                    if (! isset($json_payload['external_uids']['acteur']) &&
363                            ! isset($json_payload['dossier']['om_collectivite'])) {
364                        $this->correct = false;
365                        $this->addToMessage(sprintf(
366                            __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
367                            sprintf('<span class="bold">%s</span>', 'external_uids/acteur'),
368                            sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
369                            sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
370                        ));
371                        $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
372                    }
373                }
374    
375                // pas d'erreur déjà trouvée
376                if($this->correct) {
377    
378                    // pour chaque chemin
379                    foreach($paths as $path) {
380    
381                        // décompose le chemin
382                        $tokens = explode('/', $path);
383                        $cur_depth = $json_payload;
384    
385                        // descend au et à mesure dans l'arborescence du chemin
386                        foreach($tokens as $token) {
387    
388                            // en vérifiant que chaque élément du chemin est défini et non-nul
389                            if (isset($cur_depth[$token]) === false) {
390    
391                                // sinon on produit une erreur
392                                $this->correct = false;
393                                $this->addToMessage(sprintf(
394                                    __("La clé %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
395                                    sprintf('<span class="bold">%s</span>', $path),
396                                    sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
397                                ));
398                                $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
399                                break 2;
400                            }
401                            $cur_depth = $cur_depth[$token];
402                        }
403                    }
404                }
405            }
406    
407            return $ret && $this->correct;
408      }      }
409    
410      protected function task_exists(string $type, string $object_id) {      /**
411         * [task_exists description]
412         * @param  string $type      [description]
413         * @param  string $object_id [description]
414         * @param  bool   $is_not_done   [description]
415         * @return [type]            [description]
416         */
417        public function task_exists(string $type, string $object_id, string $dossier = null, bool $is_not_done = true) {
418          $query = sprintf('          $query = sprintf('
419              SELECT task              SELECT task
420              FROM %1$stask              FROM %1$stask
421              WHERE state != \'%2$s\'              WHERE %2$s
422              AND type = \'%3$s\'              type = \'%3$s\'
423              AND object_id = \'%4$s\'              AND (object_id = \'%4$s\'
424                %5$s)
425              ',              ',
426              DB_PREFIXE,              DB_PREFIXE,
427              'done',              $is_not_done == true ? 'state != \''.self::STATUS_DONE.'\' AND' : '',
428              $type,              $type,
429              $object_id              $object_id,
430                $dossier !== null ? sprintf('OR dossier = \'%s\'', $dossier) : ''
431          );          );
432          $res = $this->f->get_one_result_from_db_query($query);          $res = $this->f->get_one_result_from_db_query($query);
433          if ($res['result'] !== null && $res['result'] !== '') {          if ($res['result'] !== null && $res['result'] !== '') {
# Line 42  class task extends task_gen { Line 437  class task extends task_gen {
437      }      }
438    
439      /**      /**
440         * TRIGGER - triggerajouter.
441         *
442         * @param string $id
443         * @param null &$dnu1 @deprecated  Ne pas utiliser.
444         * @param array $val Tableau des valeurs brutes.
445         * @param null $dnu2 @deprecated  Ne pas utiliser.
446         *
447         * @return boolean
448         */
449        function triggerajouter($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
450    
451            // tâche entrante
452            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
453    
454                // décode la paylod JSON pour extraire les données métiers à ajouter
455                // en tant que métadonnées de la tâche
456                $json_payload = json_decode($this->valF['json_payload'], true);
457    
458                // si la tâche possède déjà une clé dossier
459                if (isset($json_payload['dossier']['dossier']) &&
460                        ! empty($json_payload['dossier']['dossier'])) {
461                    $this->valF["dossier"] = $json_payload['dossier']['dossier'];
462                }
463            }
464    
465            // gestion d'une tache de type notification et de category mail
466            if (isset($val['type']) && $val['type'] === 'notification_instruction'
467                && isset($val['category']) && $val['category'] === 'mail') {
468                // Récupère l'instance de la notification
469                $inst_notif = $this->f->get_inst__om_dbform(array(
470                    "obj" => "instruction_notification",
471                    "idx" => $val['object_id'],
472                ));
473                // Envoi le mail et met à jour le suivi
474                $envoiMail = $inst_notif->send_mail_notification_demandeur();
475                // Passage de la tache à done si elle a réussi et à error
476                // si l'envoi a échoué
477                $this->valF['state'] = 'done';
478                if ($envoiMail === false) {
479                    $this->valF['state'] = 'error';
480                }
481            }
482        }
483    
484        /**
485       * TREATMENT - add_task       * TREATMENT - add_task
486       * Ajoute un enregistrement.       * Ajoute un enregistrement.
487       *       *
# Line 50  class task extends task_gen { Line 490  class task extends task_gen {
490       */       */
491      public function add_task($params = array()) {      public function add_task($params = array()) {
492          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
493    
494            // Vérifie si la task doit être ajoutée en fonction du mode de l'application,
495            // seulement pour les tasks output
496            $task_types_si = self::TASK_TYPE_SI;
497            $task_types_sc = self::TASK_TYPE_SC;
498            $stream = isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output';
499            if ($stream === 'output'
500                && isset($params['val']['type']) === true
501                && $this->f->is_option_mode_service_consulte_enabled() === true
502                && in_array($params['val']['type'], $task_types_sc) === false) {
503                //
504                return $this->end_treatment(__METHOD__, true);
505            }
506            if ($stream === 'output'
507                && isset($params['val']['type']) === true
508                && $this->f->is_option_mode_service_consulte_enabled() === false
509                && in_array($params['val']['type'], $task_types_si) === false) {
510                //
511                return $this->end_treatment(__METHOD__, true);
512            }
513    
514            //
515          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array(
516              'creation_date' => date('Y-m-d H:i:s'),              'creation_date' => date('Y-m-d H:i:s'),
517          ));          ));
518    
519            //
520            $category = isset($params['val']['category']) === true ? $params['val']['category'] : $this->category;
521    
522            // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
523            // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
524            if (isset($params['val']['type'])
525                && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")
526                && isset($params['val']['stream'])
527                && $params['val']['stream'] == "input" ) {
528                //
529                $json_payload = json_decode($params['val']['json_payload'], true);
530                if (json_last_error() !== JSON_ERROR_NONE) {
531                    $this->addToMessage(__("Le contenu JSON de la tâche n'est pas valide."));
532                    return $this->end_treatment(__METHOD__, false);
533                }
534                if (isset($json_payload['document_numerise']) === true
535                    && empty($json_payload['document_numerise']) === false) {
536                    //
537                    $document_numerise = $json_payload['document_numerise'];
538                    $file_content = base64_decode($document_numerise["file_content"]);
539                    if ($file_content === false){
540                        $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));
541                        return $this->end_treatment(__METHOD__, false);
542                    }
543                    $metadata = array(
544                        "filename" => $document_numerise['nom_fichier'],
545                        "size" => strlen($file_content),
546                        "mimetype" => $document_numerise['file_content_type'],
547                        "date_creation" => isset($document_numerise['date_creation']) === true ? $document_numerise['date_creation'] : date("Y-m-d"),
548                    );
549                    $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content", "task.uid_fichier");
550                    if ($uid_fichier === OP_FAILURE) {
551                        $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
552                        return $this->end_treatment(__METHOD__, false);
553                    }
554                    $json_payload["document_numerise"]["uid"] = $uid_fichier;
555                    // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
556                    unset($json_payload["document_numerise"]["file_content"]);
557                    $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
558                }
559            }
560    
561          // Mise à jour du DI          // Mise à jour du DI
562          $valF = array(          $valF = array(
563              'task' => '',              'task' => '',
564              'type' => $params['val']['type'],              'type' => $params['val']['type'],
565              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
566              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : 'new',              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
567              'object_id' => $params['val']['object_id'],              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
568                'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
569                'stream' => $stream,
570                'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
571                'category' => $category,
572          );          );
573          $task_exists = $this->task_exists($valF['type'], $valF['object_id']);  
574          if ($task_exists !== false) {          // tâche sortante
575              $inst_task = $this->f->get_inst__om_dbform(array(          if ($valF["stream"] == "output"
576                  "obj" => "task",              && $valF['type'] !== 'notification_recepisse'
577                  "idx" => $task_exists,              && $valF['type'] !== 'notification_instruction'
578              ));              && $valF['type'] !== 'notification_decision') {
579              $update_state = $inst_task->getVal('state');  
580              if (isset($params['update_val']['state']) === true) {              // TODO expliquer ce code
581                  $update_state = $params['update_val']['state'];              $task_exists = $this->task_exists($valF['type'], $valF['object_id'], $valF['dossier']);
582                if ($valF['type'] === 'modification_DI' && $task_exists === false) {
583                    $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
584                }
585                if ($valF['type'] === 'modification_DA' && $task_exists === false) {
586                    $task_exists = $this->task_exists('creation_DA', $valF['object_id']);
587                }
588                if ($valF['type'] === 'ajout_piece') {
589                    $task_exists = $this->task_exists('ajout_piece', $valF['object_id']);
590                }
591                if ($valF['type'] === 'creation_consultation') {
592                    $task_exists = $this->task_exists('creation_consultation', $valF['object_id']);
593                }
594                if ($task_exists !== false) {
595                    $inst_task = $this->f->get_inst__om_dbform(array(
596                        "obj" => "task",
597                        "idx" => $task_exists,
598                    ));
599                    $update_state = $inst_task->getVal('state');
600                    if (isset($params['update_val']['state']) === true) {
601                        $update_state = $params['update_val']['state'];
602                    }
603                    $update_params = array(
604                        'val' => array(
605                            'state' => $update_state,
606                        ),
607                    );
608                    return $inst_task->update_task($update_params);
609              }              }
             $update_params = array(  
                 'val' => array(  
                     'state' => $update_state,  
                 ),  
             );  
             return $inst_task->update_task($update_params);  
610          }          }
611          $add = $this->ajouter($valF);          $add = $this->ajouter($valF);
612            $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
613          if ($add === false) {          if ($add === false) {
614              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog(__METHOD__."(): ".$this->msg, DEBUG_MODE);
615              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
616          }          }
617          return $this->end_treatment(__METHOD__, true);          return $this->end_treatment(__METHOD__, true);
# Line 97  class task extends task_gen { Line 628  class task extends task_gen {
628          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
629          $timestamp_log = $this->get_timestamp_log();          $timestamp_log = $this->get_timestamp_log();
630          if ($timestamp_log === false) {          if ($timestamp_log === false) {
631              $this->addToLog(__('XXX'), DEBUG_MODE);              $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
632              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
633          }          }
634          array_push($timestamp_log, array(          array_push($timestamp_log, array(
# Line 111  class task extends task_gen { Line 642  class task extends task_gen {
642              'type' => $this->getVal('type'),              'type' => $this->getVal('type'),
643              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
644              'state' => $params['val']['state'],              'state' => $params['val']['state'],
645              'object_id' => $this->getVal('object_id'),              'object_id' => isset($params['object_id']) == true && $this->getVal('type') == 'create_DI' ? $params['object_id'] : $this->getVal('object_id'),
646                'stream' => $this->getVal('stream'),
647                'dossier' => $this->getVal('dossier'),
648                'json_payload' => $this->getVal('json_payload'),
649                'category' => $this->getVal('category'),
650          );          );
651          $update = $this->modifier($valF);          $update = $this->modifier($valF);
652          if ($update === false) {          if ($update === false) {
# Line 124  class task extends task_gen { Line 659  class task extends task_gen {
659      /**      /**
660       * Récupère le journal d'horodatage dans le champ timestamp_log de       * Récupère le journal d'horodatage dans le champ timestamp_log de
661       * l'enregistrement instancié.       * l'enregistrement instancié.
662       *       *
663       * @param  array  $params Tableau des paramètres       * @param  array  $params Tableau des paramètres
664       * @return array sinon false en cas d'erreur       * @return array sinon false en cas d'erreur
665       */       */
# Line 163  class task extends task_gen { Line 698  class task extends task_gen {
698          if ($this->f->get_submitted_get_value('state') !== null          if ($this->f->get_submitted_get_value('state') !== null
699              && $this->f->get_submitted_get_value('state') !== '') {              && $this->f->get_submitted_get_value('state') !== '') {
700              //              //
701              $where = sprintf(' WHERE state = \'%s\' ', $this->f->get_submitted_get_value('state'));              $where_or_and = 'WHERE';
702                if ($where !== '') {
703                    $where_or_and = 'AND';
704                }
705                $where .= sprintf(' %s state = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('state'));
706            }
707            if ($this->f->get_submitted_get_value('category') !== null
708                && $this->f->get_submitted_get_value('category') !== '') {
709                //
710                $where_or_and = 'WHERE';
711                if ($where !== '') {
712                    $where_or_and = 'AND';
713                }
714                $where .= sprintf(' %s category = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('category'));
715          }          }
716          $query = sprintf('          $query = sprintf('
717              SELECT              SELECT
718                  *                  *
719              FROM %1$stask              FROM %1$stask
720              %2$s              %2$s
721                ORDER BY task ASC
722              ',              ',
723              DB_PREFIXE,              DB_PREFIXE,
724              $where              $where
# Line 181  class task extends task_gen { Line 730  class task extends task_gen {
730          $list_tasks = array();          $list_tasks = array();
731          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
732              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
733                $task['dossier'] = $task['dossier'];
734                if ($task['type'] === 'ajout_piece') {
735                    $val_dn = $this->get_document_numerise_data($task['object_id']);
736                }
737                if ($task['stream'] === 'output') {
738                    $task['external_uids'] = $this->get_all_external_uids($task['dossier']);
739                }
740              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
741          }          }
742          printf(json_encode($list_tasks));          printf(json_encode($list_tasks));
# Line 270  class task extends task_gen { Line 826  class task extends task_gen {
826          $particular_case = false;          $particular_case = false;
827          $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();          $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();
828          foreach ($fields_tab_crea_loc_hab as $field) {          foreach ($fields_tab_crea_loc_hab as $field) {
829              if (isset($field) === false              if (isset($val_dt[$field]) === false
830                  || (isset($field) === true                  || (isset($val_dt[$field]) === true
831                      && $field !== null                      && ($val_dt[$field] === null
832                      && $field !== '')) {                          || $val_dt[$field] === ''))) {
833                  //                  //
834                  $particular_case = true;                  $particular_case = true;
835              }              }
# Line 322  class task extends task_gen { Line 878  class task extends task_gen {
878          return $val_dt;          return $val_dt;
879      }      }
880    
881        /**
882         * Récupère la liste des objets distincts existants dans la table des liens
883         * entre identifiants internes et identifiants externes.
884         *
885         * @return array
886         */
887        protected function get_list_distinct_objects_external_link() {
888            $query = sprintf('
889                SELECT
890                    DISTINCT(object)
891                FROM %1$slien_id_interne_uid_externe
892                ORDER BY object ASC
893                ',
894                DB_PREFIXE
895            );
896            $res = $this->f->get_all_results_from_db_query($query, true);
897            if ($res['code'] === 'KO') {
898                return array();
899            }
900            $result = array();
901            foreach ($res['result'] as $object) {
902                $result[] = $object['object'];
903            }
904            return $result;
905        }
906    
907      protected function get_external_uid($fk_idx, string $fk_idx_2) {      protected function get_external_uid($fk_idx, string $fk_idx_2) {
908          $inst_external_uid = $this->f->get_inst__by_other_idx(array(          $inst_external_uid = $this->f->get_inst__by_other_idx(array(
909              "obj" => "lien_id_interne_uid_externe",              "obj" => "lien_id_interne_uid_externe",
# Line 333  class task extends task_gen { Line 915  class task extends task_gen {
915          return $inst_external_uid->getVal('external_uid');          return $inst_external_uid->getVal('external_uid');
916      }      }
917    
918        protected function get_all_external_uids($fk_idx, $link_objects = array()) {
919            if (count($link_objects) == 0) {
920                $link_objects = $this->get_list_distinct_objects_external_link();
921            }
922            $val_external_uid = array();
923            foreach ($link_objects as $link_object) {
924                $external_uid = $this->get_external_uid($fk_idx, $link_object);
925                if ($external_uid !== '' && $external_uid !== null) {
926                    $val_external_uid[$link_object] = $external_uid;
927                }
928            }
929            return $val_external_uid;
930        }
931    
932      protected function get_demandeurs_data(string $dossier) {      protected function get_demandeurs_data(string $dossier) {
933          $val_demandeur = array();          $val_demandeur = array();
934          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 347  class task extends task_gen { Line 943  class task extends task_gen {
943              ));              ));
944              $val_demandeur[$demandeur['demandeur']] = $inst_demandeur->get_json_data();              $val_demandeur[$demandeur['demandeur']] = $inst_demandeur->get_json_data();
945              $val_demandeur[$demandeur['demandeur']]['petitionnaire_principal'] = $demandeur['petitionnaire_principal'];              $val_demandeur[$demandeur['demandeur']]['petitionnaire_principal'] = $demandeur['petitionnaire_principal'];
             // Valeur par défaut pour expériementation sequence 1  
             $val_demandeur[$demandeur['demandeur']]['commerciale'] = 'f';  
946          }          }
947          return $val_demandeur;          return $val_demandeur;
948      }      }
# Line 367  class task extends task_gen { Line 961  class task extends task_gen {
961          return $val_architecte;          return $val_architecte;
962      }      }
963    
964      protected function get_instruction_data(string $dossier) {      protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
965          $val_instruction = null;          $val_instruction = null;
966            $instruction_with_doc = null;
967          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
968              "obj" => "dossier",              "obj" => "dossier",
969              "idx" => $dossier,              "idx" => $dossier,
970          ));          ));
971            $idx = null;
972            if ($type === 'decision') {
973                $idx = $inst_di->get_last_instruction_decision();
974            }
975            if ($type === 'incompletude') {
976                $idx = $inst_di->get_last_instruction_incompletude();
977            }
978            // XXX Permet de récupérer l'instruction par son identifiant
979            if ($type === 'with-id') {
980                $idx = $extra_params['with-id'];
981            }
982          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
983              "obj" => "instruction",              "obj" => "instruction",
984              "idx" => $inst_di->get_last_instruction_decision(),              "idx" => $idx,
985          ));          ));
986          if (count($inst_instruction->val) > 0) {          if (count($inst_instruction->val) > 0) {
987              $val_instruction[$inst_instruction->getVal($inst_instruction->clePrimaire)] = $inst_instruction->get_json_data();              $val_instruction = array();
988                $instruction_data = $inst_instruction->get_json_data();
989                $val_instruction = $this->sort_instruction_data($instruction_data, $val_instruction);
990                if ($instruction_data['om_fichier_instruction'] !== null
991                    && $instruction_data['om_fichier_instruction'] !== '') {
992                    //
993                    $instruction_with_doc = $inst_instruction->getVal($inst_instruction->clePrimaire);
994                }
995              $inst_ev = $this->f->get_inst__om_dbform(array(              $inst_ev = $this->f->get_inst__om_dbform(array(
996                  "obj" => "evenement",                  "obj" => "evenement",
997                  "idx" => $inst_instruction->getVal('evenement'),                  "idx" => $inst_instruction->getVal('evenement'),
# Line 386  class task extends task_gen { Line 999  class task extends task_gen {
999              if ($inst_ev->getVal('retour') === 't') {              if ($inst_ev->getVal('retour') === 't') {
1000                  $instructions_related = $inst_instruction->get_related_instructions();                  $instructions_related = $inst_instruction->get_related_instructions();
1001                  foreach ($instructions_related as $instruction) {                  foreach ($instructions_related as $instruction) {
1002                      $inst_related_instruction = $this->f->get_inst__om_dbform(array(                      if ($instruction !== null && $instruction !== '') {
1003                          "obj" => "instruction",                          $inst_related_instruction = $this->f->get_inst__om_dbform(array(
1004                          "idx" => $instruction,                              "obj" => "instruction",
1005                      ));                              "idx" => $instruction,
1006                      $val_instruction[$instruction] = $inst_related_instruction->get_json_data();                          ));
1007                            $instruction_data = $inst_related_instruction->get_json_data();
1008                            $val_instruction = $this->sort_instruction_data($instruction_data, $val_instruction);
1009                            if ($instruction_data['om_fichier_instruction'] !== null
1010                                && $instruction_data['om_fichier_instruction'] !== '') {
1011                                //
1012                                $instruction_with_doc = $inst_related_instruction->getVal($inst_related_instruction->clePrimaire);
1013                            }
1014                        }
1015                  }                  }
1016              }              }
1017                if ($instruction_with_doc !== null) {
1018                    //
1019                    $val_instruction['path'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'instruction', 'om_fichier_instruction', $instruction_with_doc);
1020                }
1021          }          }
1022          return $val_instruction;          return $val_instruction;
1023      }      }
1024    
1025        /**
1026         * Récupère les informations
1027        */
1028        protected function get_instruction_notification_data($category, $type = '', $extra_params = array()) {
1029            $val_in = array();
1030    
1031            $idx = null;
1032            if ($type === 'with-id') {
1033                $idx = $extra_params['with-id'];
1034            }
1035    
1036            // récupére les données à intégrer à la payload
1037            $inst_in = $this->f->get_inst__om_dbform(array(
1038                "obj" => "instruction_notification",
1039                "idx" => $idx,
1040            ));
1041            $val_in = $inst_in->get_json_data();
1042    
1043            // Récupération du message et du titre
1044            $inst_instruction = $this->f->get_inst__om_dbform(array(
1045                "obj" => "instruction",
1046                "idx" => $inst_in->getVal('instruction'),
1047            ));
1048            $collectivite_id = $inst_instruction->get_dossier_instruction_om_collectivite($inst_instruction->getVal('dossier'));
1049            $phrase_type_notification = array();
1050            $phrase_type_notification = $this->f->get_notification_parametre_courriel_type($collectivite_id);
1051            //
1052            $val_in['parametre_courriel_type_titre'] = $phrase_type_notification['parametre_courriel_type_titre'];
1053            $val_in['parametre_courriel_type_message'] = $phrase_type_notification['parametre_courriel_type_message'];
1054    
1055            return $val_in;
1056        }
1057    
1058        protected function sort_instruction_data(array $values, array $res) {
1059            $fields = array(
1060                "date_evenement",
1061                "date_envoi_signature",
1062                "date_retour_signature",
1063                "date_envoi_rar",
1064                "date_retour_rar",
1065                "date_envoi_controle_legalite",
1066                "date_retour_controle_legalite",
1067                "signataire_arrete",
1068                "om_fichier_instruction",
1069                "tacite",
1070                "lettretype",
1071                "commentaire"
1072            );
1073            foreach ($values as $key => $value) {
1074                if (in_array($key, $fields) === true) {
1075                    if (array_key_exists($key, $res) === false
1076                        && $value !== null
1077                        && $value !== '') {
1078                        //
1079                        $res[$key] = $value;
1080                    } elseif ($key === 'tacite'
1081                        && $value === 't') {
1082                        //
1083                        $res[$key] = $value;
1084                    }
1085                }
1086            }
1087            return $res;
1088        }
1089    
1090      protected function get_document_numerise_data(string $dn) {      protected function get_document_numerise_data(string $dn) {
1091          $val_dn = array();          $val_dn = array();
1092          $inst_dn = $this->f->get_inst__om_dbform(array(          $inst_dn = $this->f->get_inst__om_dbform(array(
# Line 404  class task extends task_gen { Line 1094  class task extends task_gen {
1094              "idx" => $dn,              "idx" => $dn,
1095          ));          ));
1096          $val_dn = $inst_dn->get_json_data();          $val_dn = $inst_dn->get_json_data();
1097          $val_dn['path'] = sprintf('%s/%s&snippet=%s&obj=%s&champ=%s&id=%s', $_SERVER['HTTP_HOST'], 'openads/app/index.php?module=form', 'file', 'document_numerise', 'uid', $this->getVal('object_id'));          $val_dn['path'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'document_numerise', 'uid', $this->getVal('object_id'));
1098          // Correspond à la nomenclature Plat'AU NATURE_PIECE          // Correspond à la nomenclature Plat'AU NATURE_PIECE
1099          $val_dn['nature'] = 'Initiale';          $val_dn['nature'] = $val_dn['document_numerise_nature_libelle'];
1100          return $val_dn;          return $val_dn;
1101      }      }
1102    
# Line 429  class task extends task_gen { Line 1119  class task extends task_gen {
1119          return $val_dp;          return $val_dp;
1120      }      }
1121    
1122      protected function view_form_json() {      protected function get_avis_decision_data(string $dossier) {
1123          // Mise à jour des valeurs          $inst_di = $this->f->get_inst__om_dbform(array(
1124          if ($this->f->get_submitted_post_value('valid') === 'true'              "obj" => "dossier",
1125              && $this->f->get_submitted_post_value('state') !== null) {              "idx" => $dossier,
1126              //          ));
1127              $params = array(          $ad = $inst_di->getVal('avis_decision');
1128                  'val' => array(          $val_ad = array();
1129                      'state' => $this->f->get_submitted_post_value('state')          if ($ad !== null) {
1130                  ),              $inst_ad = $this->f->get_inst__om_dbform(array(
1131              );                  "obj" => "avis_decision",
1132              $update = $this->update_task($params);                  "idx" => $ad,
1133              $message_class = "valid";              ));
1134              $message = $this->msg;              $val_ad = $inst_ad->get_json_data();
1135              if ($update === false) {              $val_ad['txAvis'] = "Voir document joint";
1136                  $this->addToLog($this->msg, DEBUG_MODE);              if (isset($val_ad['tacite']) ===  true
1137                  $message_class = "error";                  && $val_ad['tacite'] === 't') {
1138                  $message = sprintf(                  //
1139                      '%s %s',                  $val_ad['txAvis'] = "Sans objet";
                     __('Impossible de mettre à jour la tâche.'),  
                     __('Veuillez contacter votre administrateur.')  
                 );  
1140              }              }
             $this->f->displayMessage($message_class, $message);  
1141          }          }
1142          //          return $val_ad;
1143          if ($this->f->get_submitted_post_value('valid') === 'true'      }
1144              && $this->f->get_submitted_post_value('external_uid') !== null) {  
1145        protected function get_signataire_arrete_data(string $sa) {
1146            $inst_sa = $this->f->get_inst__om_dbform(array(
1147                "obj" => "signataire_arrete",
1148                "idx" => $sa,
1149            ));
1150            $val_sa = array_combine($inst_sa->champs, $inst_sa->val);
1151            foreach ($val_sa as $key => $value) {
1152                $val_sa[$key] = strip_tags($value);
1153            }
1154            return $val_sa;
1155        }
1156    
1157        // XXX WIP
1158        protected function get_consultation_data(string $consultation) {
1159            $val_consultation = array();
1160            $inst_consultation = $this->f->get_inst__om_dbform(array(
1161                "obj" => "consultation",
1162                "idx" => $consultation,
1163            ));
1164            $val_consultation = $inst_consultation->get_json_data();
1165            if (isset($val_consultation['fichier']) === true
1166                && $val_consultation['fichier'] !== '') {
1167              //              //
1168              $inst_lien = $this->f->get_inst__om_dbform(array(              $val_consultation['path_fichier'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'consultation', 'fichier', $this->getVal('object_id'));
1169                  "obj" => "lien_id_interne_uid_externe",          }
1170                  "idx" => ']',          if (isset($val_consultation['om_fichier_consultation']) === true
1171              ));              && $val_consultation['om_fichier_consultation'] !== '') {
1172              $valF = array(              //
1173                  'lien_id_interne_uid_externe' => '',              $val_consultation['path_om_fichier_consultation'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'consultation', 'om_fichier_consultation', $this->getVal('object_id'));
                 'object' => $this->get_lien_objet_by_type($this->getVal('type')),  
                 'object_id' => $this->getVal('object_id'),  
                 'external_uid' => $this->f->get_submitted_post_value('external_uid'),  
             );  
             $add = $inst_lien->ajouter($valF);  
             $message_class = "valid";  
             $message = $inst_lien->msg;  
             if ($add === false) {  
                 $this->addToLog($inst_lien->msg, DEBUG_MODE);  
                 $message_class = "error";  
                 $message = sprintf(  
                     '%s %s',  
                     __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),  
                     __('Veuillez contacter votre administrateur.')  
                 );  
             }  
             $this->f->displayMessage($message_class, $message);  
1174          }          }
1175            return $val_consultation;
1176        }
1177    
1178        // XXX WIP
1179        protected function get_service_data(string $service) {
1180            $val_service = array();
1181            $inst_service = $this->f->get_inst__om_dbform(array(
1182                "obj" => "service",
1183                "idx" => $service,
1184            ));
1185            $val_service = $inst_service->get_json_data();
1186            return $val_service;
1187        }
1188    
1189        protected function view_form_json($in_field = false) {
1190          //          //
1191          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null
1192                && $this->getVal('state') !== self::STATUS_CANCELED) {
1193              // Liste des valeurs à afficher              // Liste des valeurs à afficher
1194              $val = array();              $val = array();
1195              //              //
# Line 494  class task extends task_gen { Line 1200  class task extends task_gen {
1200              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);
1201              $val['task'] = $val_task;              $val['task'] = $val_task;
1202              //              //
1203              if ($this->getVal('type') === 'creation_DA') {              if ($this->getVal('type') === 'creation_DA'
1204                    || $this->getVal('type') === 'modification_DA') {
1205                    //
1206                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));
1207                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');
1208                  $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);                  $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);
1209                  $val_external_uid = array();                  $val_external_uid = array();
1210                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier_autorisation']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier_autorisation']['dossier_autorisation'], 'dossier_autorisation');
1211                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1212              }              }
1213              //              //
1214              if ($this->getVal('type') === 'creation_DI'              if ($this->getVal('type') === 'creation_DI'
1215                  || $this->getVal('type') === 'modification_DI') {                  || $this->getVal('type') === 'modification_DI'
1216                    || $this->getVal('type') === 'depot_DI') {
1217                  //                  //
1218                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
1219                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_instruction');                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_instruction');
# Line 515  class task extends task_gen { Line 1224  class task extends task_gen {
1224                  $val_external_uid = array();                  $val_external_uid = array();
1225                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1226                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1227                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1228              }              }
1229              //              //
1230              if ($this->getVal('type') === 'qualification_DI') {              if ($this->getVal('type') === 'qualification_DI') {
1231                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1232                  $val_external_uid = array();                  $val_external_uid = array();
1233                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1234                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1235                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1236              }              }
1237              //              //
1238              if ($this->getVal('type') === 'ajout_piece') {              if ($this->getVal('type') === 'ajout_piece') {
# Line 533  class task extends task_gen { Line 1242  class task extends task_gen {
1242                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1243                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1244                  $val_external_uid['document_numerise'] = $this->get_external_uid($val['document_numerise']['document_numerise'], 'document_numerise');                  $val_external_uid['document_numerise'] = $this->get_external_uid($val['document_numerise']['document_numerise'], 'document_numerise');
1245                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1246              }              }
1247              //              //
1248              if ($this->getVal('type') === 'decision_DI') {              if ($this->getVal('type') === 'decision_DI') {
1249                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1250                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier']);                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1251                    $val_external_uid = array();
1252                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1253                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1254                    $val['external_uids'] = $val_external_uid;
1255                }
1256                //
1257                if ($this->getVal('type') === 'incompletude_DI') {
1258                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1259                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1260                  $val_external_uid = array();                  $val_external_uid = array();
1261                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1262                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1263                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1264                }
1265                //
1266                if ($this->getVal('type') === 'completude_DI') {
1267                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1268                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1269                    $val_external_uid = array();
1270                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1271                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1272                    $val['external_uids'] = $val_external_uid;
1273                }
1274                //
1275                if ($this->getVal('type') === 'pec_metier_consultation') {
1276                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1277                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1278                    $val_external_uid = array();
1279                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1280                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1281                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1282                    $val['external_uids'] = $val_external_uid;
1283                }
1284                //
1285                if ($this->getVal('type') === 'avis_consultation') {
1286                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1287                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1288                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1289                    if (isset($val['instruction']['signataire_arrete']) === true) {
1290                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1291                    }
1292                    $val_external_uid = array();
1293                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1294                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1295                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1296                    $val['external_uids'] = $val_external_uid;
1297                }
1298                // XXX WIP
1299                if ($this->getVal('type') === 'creation_consultation') {
1300                    //
1301                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1302                    $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
1303                    $val['service'] = $this->get_service_data($val['consultation']['service']);
1304                    $val_external_uid = array();
1305                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1306                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1307                    $val['external_uids'] = $val_external_uid;
1308                }
1309                //
1310                if ($this->getVal('type') === 'notification_instruction'
1311                    || $this->getVal('type') === 'notification_recepisse'
1312                    || $this->getVal('type') === 'notification_decision') {
1313                    //
1314                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1315                    $val['demandeur'] = $this->get_demandeurs_data($this->getVal('dossier'));
1316                    $val['instruction_notification'] = $this->get_instruction_notification_data($this->getVal('category'), 'with-id', array('with-id' => $this->getVal('object_id')));
1317                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $val['instruction_notification']['instruction']));
1318                    $val_external_uid = array();
1319                    $val_external_uid['demande'] = $this->get_external_uid($val['dossier']['dossier'], 'demande');
1320                    $val['external_uids'] = $val_external_uid;
1321              }              }
1322    
1323              // Liste des valeurs affichée en JSON              if ($in_field === true) {
1324              printf(json_encode($val));                  return json_encode($val, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
1325                } else {
1326                    // Liste des valeurs affichée en JSON
1327                    printf(json_encode($val, JSON_UNESCAPED_SLASHES));
1328                }
1329          }          }
1330      }      }
1331    
1332      protected function get_lien_objet_by_type($type) {      function post_update_task() {
1333          //          // Mise à jour des valeurs
1334          $objet = '';  
1335          if ($type === 'creation_DA') {          // Modification de l'état de la tâche
1336              $objet = 'dossier_autorisation';          if ($this->f->get_submitted_post_value('state') !== null) {
1337                $params = array(
1338                    'val' => array(
1339                        'state' => $this->f->get_submitted_post_value('state')
1340                    ),
1341                );
1342                $update = $this->update_task($params);
1343                $message_class = "valid";
1344                $message = $this->msg;
1345                if ($update === false) {
1346                    $this->addToLog($this->msg, DEBUG_MODE);
1347                    $message_class = "error";
1348                    $message = sprintf(
1349                        '%s %s',
1350                        __('Impossible de mettre à jour la tâche.'),
1351                        __('Veuillez contacter votre administrateur.')
1352                    );
1353                }
1354                $this->f->displayMessage($message_class, $message);
1355          }          }
1356          if ($type === 'creation_DI'  
1357              || $type === 'modification_DI'          // Sauvegarde de l'uid externe retourné
1358              || $type === 'qualification_DI'          if ($this->f->get_submitted_post_value('external_uid') !== null) {
             || $type === 'decision_DI') {  
1359              //              //
1360              $objet = 'dossier';              $objects = $this->get_objects_by_task_type($this->getVal('type'), $this->getVal('stream'));
1361                foreach ($objects as $object) {
1362                    $inst_lien = $this->f->get_inst__om_dbform(array(
1363                        "obj" => "lien_id_interne_uid_externe",
1364                        "idx" => ']',
1365                    ));
1366                    if ($inst_lien->is_exists($object, $this->getVal('object_id'), $this->f->get_submitted_post_value('external_uid'), $this->getVal('dossier')) === false) {
1367                        $valF = array(
1368                            'lien_id_interne_uid_externe' => '',
1369                            'object' => $object,
1370                            'object_id' => $this->getVal('object_id'),
1371                            'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1372                            'dossier' => $this->getVal('dossier'),
1373                            'category' => $this->getVal('category'),
1374                        );
1375                        $add = $inst_lien->ajouter($valF);
1376                        $message_class = "valid";
1377                        $message = $inst_lien->msg;
1378                        if ($add === false) {
1379                            $this->addToLog($inst_lien->msg, DEBUG_MODE);
1380                            $message_class = "error";
1381                            $message = sprintf(
1382                                '%s %s',
1383                                __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1384                                __('Veuillez contacter votre administrateur.')
1385                            );
1386                        }
1387                        $this->f->displayMessage($message_class, $message);
1388                    }
1389                }
1390          }          }
1391          if ($type === 'ajout_piece') {      }
1392              $objet = 'document_numerise';  
1393        function post_add_task() {
1394            // TODO Tester de remplacer la ligne de json_payload par un $_POST
1395            $result = $this->add_task(array(
1396                'val' => array(
1397                    'stream' => 'input',
1398                    'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload')),
1399                    'type' => $this->f->get_submitted_post_value('type'),
1400                    'category' => $this->f->get_submitted_post_value('category'),
1401                )
1402            ));
1403            $message = sprintf(
1404                __("Tâche %s ajoutée avec succès"),
1405                $this->getVal($this->clePrimaire)).
1406                '<br/><br/>'.
1407                $this->msg;
1408            $message_class = "valid";
1409            if ($result === false){
1410                $this->addToLog($this->msg, DEBUG_MODE);
1411                $message_class = "error";
1412                $message = sprintf(
1413                    '%s %s',
1414                    __('Impossible d\'ajouter la tâche.'),
1415                    __('Veuillez contacter votre administrateur.')
1416                );
1417          }          }
1418          return $objet;          $this->f->displayMessage($message_class, $message);
1419      }      }
1420    
1421        function setLayout(&$form, $maj) {
1422    
1423            // Récupération du mode de l'action
1424            $crud = $this->get_action_crud($maj);
1425    
1426            // MODE different de CREER
1427            if ($maj != 0 || $crud != 'create') {
1428                $form->setBloc('json_payload', 'D', '', 'col_6');
1429                    $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1430                $form->setBloc('json_payload', 'F');
1431            }
1432            $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1433        }
1434    
1435        /**
1436         * [get_objects_by_task_type description]
1437         * @param  [type] $type [description]
1438         * @return [type]       [description]
1439         */
1440        function get_objects_by_task_type($type, $stream = 'all') {
1441            $objects = array();
1442            if (in_array($type, array('creation_DA', 'modification_DA', )) === true) {
1443                $objects = array('dossier_autorisation', );
1444            }
1445            if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1446                $objects = array('dossier', );
1447            }
1448            if (in_array($type, array('create_DI_for_consultation', )) === true) {
1449                $objects = array('dossier', 'dossier_consultation', );
1450            }
1451            if (in_array($type, array('create_DI', )) === true
1452                && $stream === 'input') {
1453                $objects = array('dossier', 'dossier_autorisation', 'demande', );
1454            }
1455            if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1456                $objects = array('instruction', );
1457            }
1458            if (in_array($type, array('pec_metier_consultation', )) === true
1459                && $stream === 'output') {
1460                $objects = array('pec_dossier_consultation', );
1461            }
1462            if (in_array($type, array('avis_consultation', )) === true
1463                && $stream === 'output') {
1464                $objects = array('avis_dossier_consultation', );
1465            }
1466            if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1467                $objects = array('piece', );
1468            }
1469            if (in_array($type, array('creation_consultation', )) === true) {
1470                $objects = array('consultation', );
1471            }
1472            if (in_array($type, array('pec_metier_consultation', )) === true
1473                && $stream === 'input') {
1474                $objects = array('pec_metier_consultation', );
1475            }
1476            if (in_array($type, array('avis_consultation', )) === true
1477                && $stream === 'input') {
1478                $objects = array('avis_consultation', );
1479            }
1480            if (in_array($type, array('create_message', )) === true
1481                && $stream === 'input') {
1482                $objects = array('dossier_message', );
1483            }
1484            if (in_array($type, array('notification_recepisse', 'notification_instruction', 'notification_decision' )) === true) {
1485                $objects = array('instruction_notification', );
1486            }
1487            return $objects;
1488        }
1489    
1490  }  }

Legend:
Removed from v.9414  
changed lines
  Added in v.10808

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26