/[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 9402 by softime, Tue Jun 2 08:40:34 2020 UTC trunk/obj/task.class.php revision 10968 by softime, Wed Dec 15 00:06:28 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            'prescription',
52        );
53    
54        /**
55         * Catégorie de la tâche
56         */
57        var $category = 'platau';
58    
59      /**      /**
60       * Définition des actions disponibles sur la classe.       * Définition des actions disponibles sur la classe.
61       *       *
# Line 19  class task extends task_gen { Line 69  class task extends task_gen {
69              "view" => "view_json_data",              "view" => "view_json_data",
70              "permission_suffix" => "consulter",              "permission_suffix" => "consulter",
71          );          );
72            $this->class_actions[997] = array(
73                "identifier" => "json_data",
74                "view" => "post_update_task",
75                "permission_suffix" => "modifier",
76            );
77            $this->class_actions[996] = array(
78                "identifier" => "json_data",
79                "view" => "post_add_task",
80                "permission_suffix" => "ajouter",
81            );
82        }
83    
84        public function setvalF($val = array()) {
85    
86            // // les guillets doubles sont remplacés automatiquement par des simples
87            // // dans core/om_formulaire.clasS.php::recupererPostvar()
88            // // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
89            // // ceci est un hack sale temporaire en attendant résolution du ticket
90            // foreach(array('json_payload', 'timestamp_log') as $key) {
91            //     if (isset($val[$key]) && ! empty($val[$key]) &&
92            //             isset($_POST[$key]) && ! empty($_POST[$key])) {
93            //         $submited_payload = $_POST[$key];
94            //         if (! empty($submited_payload)) {
95            //             $new_payload = str_replace("'", '"', $val[$key]);
96            //             if ($new_payload == $submited_payload ||
97            //                     strpos($submited_payload, '"') === false) {
98            //                 $val[$key] = $new_payload;
99            //             }
100            //             else {
101            //                 $error_msg = sprintf(
102            //                     __("La convertion des guillemets de la payload JSON '%s' ".
103            //                         "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
104            //                     $key, var_export($val[$key], true), var_export($submited_payload, true),
105            //                     var_export($new_payload, true));
106            //                 $this->correct = false;
107            //                 $this->addToMessage($error_msg);
108            //                 $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
109            //                 return false;
110            //             }
111            //         }
112            //     }
113            // }
114    
115            parent::setvalF($val);
116    
117            // XXX Ancien code : permet de ne pas avoir d'erreru lors de la modification d'une task
118            if (array_key_exists('timestamp_log', $val) === true) {
119                $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
120            }
121    
122            // récupération de l'ID de l'objet existant
123            $id = property_exists($this, 'id') ? $this->id : null;
124            if(isset($val[$this->clePrimaire])) {
125                $id = $val[$this->clePrimaire];
126            } elseif(isset($this->valF[$this->clePrimaire])) {
127                $id = $this->valF[$this->clePrimaire];
128            }
129    
130            // MODE MODIFIER
131            if (! empty($id)) {
132    
133                // si aucune payload n'est fourni (devrait toujours être le cas)
134                if (! isset($val['json_payload']) || empty($val['json_payload'])) {
135    
136                    // récupère l'objet existant
137                    $existing = $this->f->findObjectById('task', $id);
138                    if (! empty($existing)) {
139    
140                        // récupère la payload de l'objet
141                        $val['json_payload'] = $existing->getVal('json_payload');
142                        $this->valF['json_payload'] = $existing->getVal('json_payload');
143                        $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
144                            "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
145                    }
146                }
147            }
148    
149            if (array_key_exists('category', $val) === false
150                || $this->valF['category'] === ''
151                || $this->valF['category'] === null) {
152                //
153                $this->valF['category'] = $this->category;
154            }
155        }
156    
157        /**
158         *
159         * @return array
160         */
161        function get_var_sql_forminc__champs() {
162            return array(
163                "task",
164                "type",
165                "state",
166                "object_id",
167                "dossier",
168                "stream",
169                "json_payload",
170                "timestamp_log",
171                "category",
172            );
173        }
174    
175        function setType(&$form, $maj) {
176            parent::setType($form, $maj);
177    
178            // Récupération du mode de l'action
179            $crud = $this->get_action_crud($maj);
180    
181            // ALL
182            $form->setType("category", "hidden");
183    
184            // MODE CREER
185            if ($maj == 0 || $crud == 'create') {
186                $form->setType("state", "select");
187                $form->setType("stream", "select");
188                $form->setType("json_payload", "textarea");
189            }
190            // MDOE MODIFIER
191            if ($maj == 1 || $crud == 'update') {
192                $form->setType("state", "select");
193                $form->setType("stream", "select");
194                $form->setType("json_payload", "jsonprettyprint");
195            }
196            // MODE CONSULTER
197            if ($maj == 3 || $crud == 'read') {
198                $form->setType('dossier', 'link');
199                $form->setType('json_payload', 'jsonprettyprint');
200            }
201    
202        }
203    
204        /**
205         *
206         */
207        function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
208            if($maj < 2) {
209    
210                $contenu = array();
211                foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG', 'ARCHIVED', 'CANCELED') as $key) {
212                    $const_name = 'STATUS_'.$key;
213                    $const_value = constant("self::$const_name");
214                    $contenu[0][] = $const_value;
215                    $contenu[1][] = __($const_value);
216                }
217    
218                $form->setSelect("state", $contenu);
219    
220                $contenu_stream =array();
221                $contenu_stream[0][0]="input";
222                $contenu_stream[1][0]=_('input');
223                $contenu_stream[0][1]="output";
224                $contenu_stream[1][1]=_('output');
225                $form->setSelect("stream", $contenu_stream);
226    
227            }
228    
229            if ($maj == 3) {
230                if ($this->getVal('stream') == 'output') {
231                    $inst_dossier = $this->f->get_inst__om_dbform(array(
232                        "obj" => "dossier",
233                        "idx" => $form->val['dossier'],
234                    ));
235    
236                    if($form->val['type'] == "creation_DA"
237                        || $form->val['type'] == "modification_DA"){
238                        //
239                        $obj_link = 'dossier_autorisation';
240                    } else {
241                        $obj_link = 'dossier_instruction';
242                    }
243    
244                    $params = array();
245                    $params['obj'] = $obj_link;
246                    $params['libelle'] = $inst_dossier->getVal('dossier');
247                    $params['title'] = "Consulter le dossier";
248                    $params['idx'] = $form->val['dossier'];
249                    $form->setSelect("dossier", $params);
250                }
251            }
252      }      }
253    
254      protected function task_exists(string $type, string $object_id) {      /**
255         * SETTER_FORM - setVal (setVal).
256         *
257         * @return void
258         */
259        function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {
260            // parent::setVal($form, $maj, $validation);
261            //
262            if ($this->getVal('stream') == "output") {
263                $form->setVal('json_payload', $this->view_form_json(true));
264            } else {
265                $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));
266            }
267        }
268    
269        function setLib(&$form, $maj) {
270            parent::setLib($form, $maj);
271    
272            // Récupération du mode de l'action
273            $crud = $this->get_action_crud($maj);
274    
275            // MODE different de CREER
276            if ($maj != 0 || $crud != 'create') {
277                $form->setLib('json_payload', '');
278            }
279        }
280    
281        public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
282            $ret = parent::verifier($val, $dnu1, $dnu2);
283    
284            // une tâche entrante doit avoir un type et une payload non-vide
285            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
286                if (isset($this->valF['type']) === false) {
287                    $this->correct = false;
288                    $this->addToMessage(sprintf(
289                        __("Le champ %s est obligatoire pour une tâche entrante."),
290                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('type'))
291                    ));
292                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
293                }
294                if (isset($this->valF['json_payload']) === false) {
295                    $this->correct = false;
296                    $this->addToMessage(sprintf(
297                        __("Le champ %s est obligatoire pour une tâche entrante."),
298                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
299                    ));
300                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
301                }
302            }
303    
304            // les JSONs doivent être décodables
305            foreach(array('json_payload', 'timestamp_log') as $key) {
306                if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
307                        is_array(json_decode($this->valF[$key], true)) === false
308                        || json_last_error() !== JSON_ERROR_NONE)) {
309                    $this->correct = false;
310                    $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
311                    $this->addToMessage(sprintf(
312                        __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
313                        "<p>%s valF:</br><pre>%s</pre></p>".
314                        "<p>%s val:</br><pre>%s</pre></p>".
315                        "<p>%s POST:</br><pre>%s</pre></p>".
316                        "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
317                        $champ_text,
318                        json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
319                        $champ_text,
320                        $this->valF[$key],
321                        $champ_text,
322                        $val[$key],
323                        $champ_text,
324                        isset($_POST[$key]) ? $_POST[$key] : '',
325                        $champ_text,
326                        $this->f->get_submitted_post_value($key)
327                    ));
328                    $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
329                }
330            }
331    
332            // une tâche entrante doit avoir une payload avec les clés requises
333            if ($this->correct && (isset($this->valF['stream']) === false ||
334                                   $this->valF['stream'] == 'input')) {
335    
336                // décode la payload JSON
337                $json_payload = json_decode($this->valF['json_payload'], true);
338    
339                // défini une liste de chemin de clés requises
340                $paths = array();
341                if ($this->valF['category'] === 'platau') {
342                    $paths = array(
343                        'external_uids/dossier'
344                    );
345                }
346    
347                // tâche de type création de DI/DA
348                if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {
349    
350                    $paths = array_merge($paths, array(
351                        'dossier/dossier',
352                        'dossier/dossier_autorisation_type_detaille_code',
353                        'dossier/date_demande',
354                        'dossier/depot_electronique',
355                    ));
356    
357                    // si l'option commune est activée (mode MC)
358                    if ($this->f->is_option_dossier_commune_enabled()) {
359                        $paths[] = 'dossier/insee';
360                    }
361    
362                    // présence d'un moyen d'identifier la collectivité/le service
363                    if (! isset($json_payload['external_uids']['acteur']) &&
364                            ! isset($json_payload['dossier']['om_collectivite'])) {
365                        $this->correct = false;
366                        $this->addToMessage(sprintf(
367                            __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
368                            sprintf('<span class="bold">%s</span>', 'external_uids/acteur'),
369                            sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
370                            sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
371                        ));
372                        $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
373                    }
374                }
375    
376                // pas d'erreur déjà trouvée
377                if($this->correct) {
378    
379                    // pour chaque chemin
380                    foreach($paths as $path) {
381    
382                        // décompose le chemin
383                        $tokens = explode('/', $path);
384                        $cur_depth = $json_payload;
385    
386                        // descend au et à mesure dans l'arborescence du chemin
387                        foreach($tokens as $token) {
388    
389                            // en vérifiant que chaque élément du chemin est défini et non-nul
390                            if (isset($cur_depth[$token]) === false) {
391    
392                                // sinon on produit une erreur
393                                $this->correct = false;
394                                $this->addToMessage(sprintf(
395                                    __("La clé %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
396                                    sprintf('<span class="bold">%s</span>', $path),
397                                    sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
398                                ));
399                                $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
400                                break 2;
401                            }
402                            $cur_depth = $cur_depth[$token];
403                        }
404                    }
405                }
406            }
407    
408            return $ret && $this->correct;
409        }
410    
411        /**
412         * [task_exists description]
413         * @param  string $type      [description]
414         * @param  string $object_id [description]
415         * @param  bool   $is_not_done   [description]
416         * @return [type]            [description]
417         */
418        public function task_exists(string $type, string $object_id, string $dossier = null, bool $is_not_done = true) {
419          $query = sprintf('          $query = sprintf('
420              SELECT task              SELECT task
421              FROM %1$stask              FROM %1$stask
422              WHERE state != \'%2$s\'              WHERE %2$s
423              AND type = \'%3$s\'              type = \'%3$s\'
424              AND object_id = \'%4$s\'              AND (object_id = \'%4$s\'
425                %5$s)
426                AND state != \'%6$s\'
427              ',              ',
428              DB_PREFIXE,              DB_PREFIXE,
429              'done',              $is_not_done == true ? 'state != \''.self::STATUS_DONE.'\' AND' : '',
430              $type,              $type,
431              $object_id              $object_id,
432                $dossier !== null ? sprintf('OR dossier = \'%s\'', $dossier) : '',
433                self::STATUS_CANCELED
434          );          );
435          $res = $this->f->get_one_result_from_db_query($query);          $res = $this->f->get_one_result_from_db_query($query);
436          if ($res['result'] !== null && $res['result'] !== '') {          if ($res['result'] !== null && $res['result'] !== '') {
# Line 42  class task extends task_gen { Line 440  class task extends task_gen {
440      }      }
441    
442      /**      /**
443         * Permet la recherche multi-critères des tasks.
444         *
445         * @param  array  $search_values Chaque entrée du tableau est une ligne dans le WHERE
446         * @return mixed                 Retourne le résultat de la requête ou false
447         */
448        public function task_exists_multi_search(array $search_values) {
449            $query = sprintf('
450                SELECT task
451                FROM %1$stask
452                %2$s
453                %3$s
454                ',
455                DB_PREFIXE,
456                empty($search_values) === false ? ' WHERE ' : '',
457                implode(' AND ', $search_values)
458            );
459            $res = $this->f->get_all_results_from_db_query($query);
460            if (count($res['result']) > 0) {
461                return $res['result'];
462            }
463            return false;
464        }
465    
466        /**
467         * TRIGGER - triggerajouter.
468         *
469         * @param string $id
470         * @param null &$dnu1 @deprecated  Ne pas utiliser.
471         * @param array $val Tableau des valeurs brutes.
472         * @param null $dnu2 @deprecated  Ne pas utiliser.
473         *
474         * @return boolean
475         */
476        function triggerajouter($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
477    
478            // tâche entrante
479            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
480    
481                // décode la paylod JSON pour extraire les données métiers à ajouter
482                // en tant que métadonnées de la tâche
483                $json_payload = json_decode($this->valF['json_payload'], true);
484    
485                // si la tâche possède déjà une clé dossier
486                if (isset($json_payload['dossier']['dossier']) &&
487                        ! empty($json_payload['dossier']['dossier'])) {
488                    $this->valF["dossier"] = $json_payload['dossier']['dossier'];
489                }
490            }
491    
492            // gestion d'une tache de type notification et de category mail
493            if (isset($val['type'])
494                && (//$val['type'] === 'notification_recepisse'
495                    $val['type'] === 'notification_instruction'
496                    || $val['type'] === 'notification_decision')
497                && isset($val['category'])
498                && $val['category'] === 'mail') {
499                // Récupère la payload de la tache
500                $data = array();
501                $data['instruction_notification'] = $this->get_instruction_notification_data(
502                    $this->valF['category'],
503                    'with-id',
504                    array('with-id' => $this->valF['object_id'])
505                );
506                $data['dossier'] = $this->get_dossier_data($this->valF['dossier']);
507    
508                // Récupère l'instance de la notification
509                $inst_notif = $this->f->get_inst__om_dbform(array(
510                    "obj" => "instruction_notification",
511                    "idx" => $val['object_id'],
512                ));
513                // Envoi le mail et met à jour le suivi
514                $envoiMail = $inst_notif->send_mail_notification_demandeur($data);
515                // Passage de la tache à done si elle a réussi et à error
516                // si l'envoi a échoué
517                $this->valF['state'] = 'done';
518                if ($envoiMail === false) {
519                    $this->valF['state'] = 'error';
520                }
521            }
522        }
523    
524        /**
525         * TRIGGER - triggermodifierapres.
526         *
527         * @param string $id
528         * @param null &$dnu1 @deprecated  Ne pas utiliser.
529         * @param array $val Tableau des valeurs brutes.
530         * @param null $dnu2 @deprecated  Ne pas utiliser.
531         *
532         * @return boolean
533         */
534        public function triggermodifierapres($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
535            parent::triggermodifierapres($id, $dnu1, $val, $dnu2);
536    
537            // Suivi des notificiations
538            if (isset($val['category']) === true
539                && $val['category'] === 'portal'
540                && isset($val['type']) === true
541                && ($val['type'] === 'notification_recepisse'
542                    || $val['type'] === 'notification_instruction'
543                    || $val['type'] === 'notification_decision')) {
544                //
545                if (isset($this->valF['state']) === true
546                    && $this->valF['state'] !== $this->getVal('state')) {
547                    //
548                    $inst_in = $this->f->get_inst__om_dbform(array(
549                        "obj" => "instruction_notification",
550                        "idx" => $val['object_id'],
551                    ));
552                    $valF_in = array();
553                    foreach ($inst_in->champs as $champ) {
554                        $valF_in[$champ] = $inst_in->getVal($champ);
555                    }
556                    $valF_in['date_envoi'] = null;
557                    $valF_in['date_premier_acces'] = null;
558                    //
559                    if ($this->valF['state'] === self::STATUS_DONE) {
560                        //
561                        $valF_in['statut'] = __("envoyé");
562                        $valF_in['commentaire'] = __("Notification traitée");
563                        $valF_in['date_envoi'] = date('d/m/Y H:i:s');
564                        //
565                        $inst_instruction = $this->f->get_inst__om_dbform(array(
566                            "obj" => "instruction",
567                            "idx" => $inst_in->getVal('instruction'),
568                        ));
569                        if ($inst_instruction->has_an_edition() === true) {
570                            $valF_instruction = array();
571                            foreach ($inst_instruction->champs as $champ) {
572                                $valF_instruction[$champ] = $inst_instruction->getVal($champ);
573                            }
574                            $valF_instruction['date_envoi_rar'] = date('d/m/Y');
575                            $valF_instruction['date_retour_rar'] = date('d/m/Y', strtotime('now + 1 day'));
576                            $inst_instruction->setParameter('maj', 1);
577                            $update_instruction = $inst_instruction->modifier($valF_instruction);
578                            if ($update_instruction === false) {
579                                $this->addToLog(__METHOD__."(): ".$inst_instruction->msg, DEBUG_MODE);
580                                return false;
581                            }
582                        }
583                    }
584                    if ($this->valF['state'] === self::STATUS_ERROR) {
585                        $valF_in['statut'] = __("échec");
586                        $valF_in['commentaire'] = __("Le traitement de la notification a échoué");
587                    }
588                    $inst_in->setParameter('maj', 1);
589                    $update_in = $inst_in->modifier($valF_in);
590                    if ($update_in === false) {
591                        $this->addToLog(__METHOD__."(): ".$inst_in->msg, DEBUG_MODE);
592                        return false;
593                    }
594                }
595            }
596    
597            //
598            return true;
599        }
600    
601        /**
602       * TREATMENT - add_task       * TREATMENT - add_task
603       * Ajoute un enregistrement.       * Ajoute un enregistrement.
604       *       *
# Line 50  class task extends task_gen { Line 607  class task extends task_gen {
607       */       */
608      public function add_task($params = array()) {      public function add_task($params = array()) {
609          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
610    
611            // Vérifie si la task doit être ajoutée en fonction du mode de l'application,
612            // seulement pour les tasks output
613            $task_types_si = self::TASK_TYPE_SI;
614            $task_types_sc = self::TASK_TYPE_SC;
615            $stream = isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output';
616            if ($stream === 'output'
617                && isset($params['val']['type']) === true
618                && $this->f->is_option_mode_service_consulte_enabled() === true
619                && in_array($params['val']['type'], $task_types_sc) === false) {
620                //
621                return $this->end_treatment(__METHOD__, true);
622            }
623            if ($stream === 'output'
624                && isset($params['val']['type']) === true
625                && $this->f->is_option_mode_service_consulte_enabled() === false
626                && in_array($params['val']['type'], $task_types_si) === false) {
627                //
628                return $this->end_treatment(__METHOD__, true);
629            }
630    
631            //
632          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array(
633              'creation_date' => date('Y-m-d H:i:s'),              'creation_date' => date('Y-m-d H:i:s'),
634          ));          ));
635    
636            //
637            $category = isset($params['val']['category']) === true ? $params['val']['category'] : $this->category;
638    
639            // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
640            // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
641            if (isset($params['val']['type'])
642                && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")
643                && isset($params['val']['stream'])
644                && $params['val']['stream'] == "input" ) {
645                //
646                $json_payload = json_decode($params['val']['json_payload'], true);
647                if (json_last_error() !== JSON_ERROR_NONE) {
648                    $this->addToMessage(__("Le contenu JSON de la tâche n'est pas valide."));
649                    return $this->end_treatment(__METHOD__, false);
650                }
651                if (isset($json_payload['document_numerise']) === true
652                    && empty($json_payload['document_numerise']) === false) {
653                    //
654                    $document_numerise = $json_payload['document_numerise'];
655                    $file_content = base64_decode($document_numerise["file_content"]);
656                    if ($file_content === false){
657                        $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));
658                        return $this->end_treatment(__METHOD__, false);
659                    }
660                    $metadata = array(
661                        "filename" => $document_numerise['nom_fichier'],
662                        "size" => strlen($file_content),
663                        "mimetype" => $document_numerise['file_content_type'],
664                        "date_creation" => isset($document_numerise['date_creation']) === true ? $document_numerise['date_creation'] : date("Y-m-d"),
665                    );
666                    $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content", "task.uid_fichier");
667                    if ($uid_fichier === OP_FAILURE) {
668                        $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
669                        return $this->end_treatment(__METHOD__, false);
670                    }
671                    $json_payload["document_numerise"]["uid"] = $uid_fichier;
672                    // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
673                    unset($json_payload["document_numerise"]["file_content"]);
674                    $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
675                }
676            }
677    
678          // Mise à jour du DI          // Mise à jour du DI
679          $valF = array(          $valF = array(
680              'task' => '',              'task' => '',
681              'type' => $params['val']['type'],              'type' => $params['val']['type'],
682              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
683              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : 'new',              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
684              'object_id' => $params['val']['object_id'],              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
685                'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
686                'stream' => $stream,
687                'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
688                'category' => $category,
689          );          );
690          $task_exists = $this->task_exists($valF['type'], $valF['object_id']);  
691          if ($task_exists !== false) {          // tâche sortante
692              $inst_task = $this->f->get_inst__om_dbform(array(          if ($valF["stream"] == "output"
693                  "obj" => "task",              && $valF['type'] !== 'notification_recepisse'
694                  "idx" => $task_exists,              && $valF['type'] !== 'notification_instruction'
695              ));              && $valF['type'] !== 'notification_decision') {
696              $update_params = array(  
697                  'val' => array(              // TODO expliquer ce code
698                      'state' => $inst_task->getVal('state'),              $task_exists = $this->task_exists($valF['type'], $valF['object_id'], $valF['dossier']);
699                  ),              if ($valF['type'] === 'modification_DI' && $task_exists === false) {
700              );                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
701              return $inst_task->update_task($update_params);              }
702                if ($valF['type'] === 'modification_DA' && $task_exists === false) {
703                    $task_exists = $this->task_exists('creation_DA', $valF['object_id']);
704                }
705                if ($valF['type'] === 'ajout_piece') {
706                    $task_exists = $this->task_exists('ajout_piece', $valF['object_id']);
707                }
708                if ($valF['type'] === 'creation_consultation') {
709                    $task_exists = $this->task_exists('creation_consultation', $valF['object_id']);
710                }
711                if ($task_exists !== false) {
712                    $inst_task = $this->f->get_inst__om_dbform(array(
713                        "obj" => "task",
714                        "idx" => $task_exists,
715                    ));
716                    $update_state = $inst_task->getVal('state');
717                    if (isset($params['update_val']['state']) === true) {
718                        $update_state = $params['update_val']['state'];
719                    }
720                    $update_params = array(
721                        'val' => array(
722                            'state' => $update_state,
723                        ),
724                    );
725                    return $inst_task->update_task($update_params);
726                }
727          }          }
728          $add = $this->ajouter($valF);          $add = $this->ajouter($valF);
729            $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
730          if ($add === false) {          if ($add === false) {
731              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog(__METHOD__."(): ".$this->msg, DEBUG_MODE);
732              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
733          }          }
734          return $this->end_treatment(__METHOD__, true);          return $this->end_treatment(__METHOD__, true);
# Line 93  class task extends task_gen { Line 745  class task extends task_gen {
745          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
746          $timestamp_log = $this->get_timestamp_log();          $timestamp_log = $this->get_timestamp_log();
747          if ($timestamp_log === false) {          if ($timestamp_log === false) {
748              $this->addToLog(__('XXX'), DEBUG_MODE);              $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
749              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
750          }          }
751          array_push($timestamp_log, array(          array_push($timestamp_log, array(
# Line 107  class task extends task_gen { Line 759  class task extends task_gen {
759              'type' => $this->getVal('type'),              'type' => $this->getVal('type'),
760              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
761              'state' => $params['val']['state'],              'state' => $params['val']['state'],
762              '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'),
763                'stream' => $this->getVal('stream'),
764                'dossier' => $this->getVal('dossier'),
765                'json_payload' => $this->getVal('json_payload'),
766                'category' => $this->getVal('category'),
767          );          );
768          $update = $this->modifier($valF);          $update = $this->modifier($valF);
769          if ($update === false) {          if ($update === false) {
# Line 120  class task extends task_gen { Line 776  class task extends task_gen {
776      /**      /**
777       * 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
778       * l'enregistrement instancié.       * l'enregistrement instancié.
779       *       *
780       * @param  array  $params Tableau des paramètres       * @param  array  $params Tableau des paramètres
781       * @return array sinon false en cas d'erreur       * @return array sinon false en cas d'erreur
782       */       */
# Line 159  class task extends task_gen { Line 815  class task extends task_gen {
815          if ($this->f->get_submitted_get_value('state') !== null          if ($this->f->get_submitted_get_value('state') !== null
816              && $this->f->get_submitted_get_value('state') !== '') {              && $this->f->get_submitted_get_value('state') !== '') {
817              //              //
818              $where = sprintf(' WHERE state = \'%s\' ', $this->f->get_submitted_get_value('state'));              $where_or_and = 'WHERE';
819                if ($where !== '') {
820                    $where_or_and = 'AND';
821                }
822                $where .= sprintf(' %s state = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('state'));
823            }
824            if ($this->f->get_submitted_get_value('category') !== null
825                && $this->f->get_submitted_get_value('category') !== '') {
826                //
827                $where_or_and = 'WHERE';
828                if ($where !== '') {
829                    $where_or_and = 'AND';
830                }
831                $where .= sprintf(' %s category = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('category'));
832          }          }
833          $query = sprintf('          $query = sprintf('
834              SELECT              SELECT
835                  *                  *
836              FROM %1$stask              FROM %1$stask
837              %2$s              %2$s
838                ORDER BY task ASC
839              ',              ',
840              DB_PREFIXE,              DB_PREFIXE,
841              $where              $where
# Line 176  class task extends task_gen { Line 846  class task extends task_gen {
846          }          }
847          $list_tasks = array();          $list_tasks = array();
848          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
849                $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
850                $task['dossier'] = $task['dossier'];
851                if ($task['type'] === 'ajout_piece') {
852                    $val_dn = $this->get_document_numerise_data($task['object_id']);
853                }
854                if ($task['stream'] === 'output') {
855                    $task['external_uids'] = $this->get_all_external_uids($task['dossier']);
856                }
857              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
858          }          }
859          printf(json_encode($list_tasks));          printf(json_encode($list_tasks));
# Line 187  class task extends task_gen { Line 865  class task extends task_gen {
865              "obj" => "dossier",              "obj" => "dossier",
866              "idx" => $dossier,              "idx" => $dossier,
867          ));          ));
868          $val_di = json_decode($inst_di->get_json_data(), true);          $val_di = $inst_di->get_json_data();
869          if ($val_di['dossier_instruction_type_code'] === 'T') {          if ($val_di['dossier_instruction_type_code'] === 'T') {
870              $val_di['date_decision_transfert'] = $val_di['date_decision'];              $val_di['date_decision_transfert'] = $val_di['date_decision'];
871          }          }
# Line 202  class task extends task_gen { Line 880  class task extends task_gen {
880              "obj" => "dossier_autorisation",              "obj" => "dossier_autorisation",
881              "idx" => $da,              "idx" => $da,
882          ));          ));
883          $val_da = json_decode($inst_da->get_json_data(), true);          $val_da = $inst_da->get_json_data();
884          return $val_da;          return $val_da;
885      }      }
886    
# Line 224  class task extends task_gen { Line 902  class task extends task_gen {
902                  $val_dt['am_exist_date_num'] = $val_dt['am_exist_date'];                  $val_dt['am_exist_date_num'] = $val_dt['am_exist_date'];
903              }              }
904          }          }
905            // Correspond à la nomenclature de Plat'AU STATUT_INFO
906            $val_dt['tax_statut_info'] = 'Déclaré';
907            //
908            if ($inst_dt->is_tab_surf_ssdest_enabled() === true) {
909                $fields_tab_surf_dest = $inst_dt->get_fields_tab_surf_dest();
910                foreach ($fields_tab_surf_dest as $field) {
911                    if (isset($val_dt[$field]) === true) {
912                        unset($val_dt[$field]);
913                    }
914                }
915            } else {
916                $fields_tab_surf_ssdest = $inst_dt->get_fields_tab_surf_ssdest();
917                foreach ($fields_tab_surf_ssdest as $field) {
918                    if (isset($val_dt[$field]) === true) {
919                        unset($val_dt[$field]);
920                    }
921                }
922            }
923            // Correspond à la nouvelle ligne CERFA v7 dans le DENSI imposition 1.2.3
924            if (isset($val_dt['tax_su_non_habit_surf2']) === true
925                && isset($val_dt['tax_su_non_habit_surf3']) === true
926                && (($val_dt['tax_su_non_habit_surf2'] !== null
927                        && $val_dt['tax_su_non_habit_surf2'] !== '')
928                    || ($val_dt['tax_su_non_habit_surf3'] !== null
929                        && $val_dt['tax_su_non_habit_surf3'] !== ''))) {
930                //
931                $val_dt['tax_su_non_habit_surf8'] = intval($val_dt['tax_su_non_habit_surf2']) + intval($val_dt['tax_su_non_habit_surf3']);
932            }
933            if (isset($val_dt['tax_su_non_habit_surf_stat2']) === true
934                && isset($val_dt['tax_su_non_habit_surf_stat3']) === true
935                && (($val_dt['tax_su_non_habit_surf_stat2'] !== null
936                        && $val_dt['tax_su_non_habit_surf_stat2'] !== '')
937                    || ($val_dt['tax_su_non_habit_surf_stat3'] !== null
938                        && $val_dt['tax_su_non_habit_surf_stat3'] !== ''))) {
939                //
940                $val_dt['tax_su_non_habit_surf_stat8'] = intval($val_dt['tax_su_non_habit_surf_stat2']) + intval($val_dt['tax_su_non_habit_surf_stat3']);
941            }
942            // Cas particulier d'un projet réduit à l'extension d'une habitation existante
943            $particular_case = false;
944            $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();
945            foreach ($fields_tab_crea_loc_hab as $field) {
946                if (isset($val_dt[$field]) === false
947                    || (isset($val_dt[$field]) === true
948                        && ($val_dt[$field] === null
949                            || $val_dt[$field] === ''))) {
950                    //
951                    $particular_case = true;
952                }
953            }
954            if ($particular_case === true) {
955                if (isset($val_dt['tax_ext_pret']) === true
956                    && $val_dt['tax_ext_pret'] === 'f') {
957                    //
958                    $val_dt['tax_su_princ_surf1'] = $val_dt['tax_surf_tot_cstr'];
959                    $val_dt['tax_su_princ_surf_stat1'] = $val_dt['tax_surf_loc_stat'];
960                }
961                if (isset($val_dt['tax_ext_pret']) === true
962                    && $val_dt['tax_ext_pret'] === 't') {
963                    //
964                    if (isset($val_dt['tax_ext_desc']) === true) {
965                        if (preg_match('/[pP].*[lL].*[aA].*[iI]/', $val_dt['tax_ext_desc']) === 1
966                            || preg_match('/[lL].*[lL].*[tT].*[sS]/', $val_dt['tax_ext_desc']) === 1) {
967                            //
968                            $val_dt['tax_su_princ_surf2'] = $val_dt['tax_surf_tot_cstr'];
969                            $val_dt['tax_su_princ_surf_stat2'] = $val_dt['tax_surf_loc_stat'];
970                        }
971                        // if (preg_match('/[pP].*[tT].*[zZ]/', $val_dt['tax_ext_desc']) === 1) {
972                        //     $val_dt['tax_su_princ_surf4'] = $val_dt['tax_surf_tot_cstr'];
973                        //     $val_dt['tax_su_princ_surf_stat4'] = $val_dt['tax_surf_loc_stat'];
974                        // }
975                        // if (preg_match('/[pP].*[lL].*[uU].*[sS]/', $val_dt['tax_ext_desc']) === 1
976                        //     || preg_match('/[lL].*[eE].*[sS]/', $val_dt['tax_ext_desc']) === 1
977                        //     || preg_match('/[pP].*[sS].*[lL].*[aA]/', $val_dt['tax_ext_desc']) === 1
978                        //     || preg_match('/[pP].*[lL].*[sS]/', $val_dt['tax_ext_desc']) === 1
979                        //     || preg_match('/[lL].*[lL].*[sS]/', $val_dt['tax_ext_desc']) === 1) {
980                        //     //
981                        //     $val_dt['tax_su_princ_surf3'] = $val_dt['tax_surf_tot_cstr'];
982                        //     $val_dt['tax_su_princ_surf_stat3'] = $val_dt['tax_surf_loc_stat'];
983                        // }
984                    }
985                }
986            }
987            // Cas particulier de la surface taxable démolie
988            if (isset($val_dt['tax_surf_tot_demo']) === true
989                && isset($val_dt['tax_surf_tax_demo']) === true
990                && ($val_dt['tax_surf_tot_demo'] === null
991                    || $val_dt['tax_surf_tot_demo'] === '')) {
992                //
993                $val_dt['tax_surf_tot_demo'] = $val_dt['tax_surf_tax_demo'];
994            }
995          return $val_dt;          return $val_dt;
996      }      }
997    
998        /**
999         * Récupère la liste des objets distincts existants dans la table des liens
1000         * entre identifiants internes et identifiants externes.
1001         *
1002         * @return array
1003         */
1004        protected function get_list_distinct_objects_external_link() {
1005            $query = sprintf('
1006                SELECT
1007                    DISTINCT(object)
1008                FROM %1$slien_id_interne_uid_externe
1009                ORDER BY object ASC
1010                ',
1011                DB_PREFIXE
1012            );
1013            $res = $this->f->get_all_results_from_db_query($query, true);
1014            if ($res['code'] === 'KO') {
1015                return array();
1016            }
1017            $result = array();
1018            foreach ($res['result'] as $object) {
1019                $result[] = $object['object'];
1020            }
1021            return $result;
1022        }
1023    
1024      protected function get_external_uid($fk_idx, string $fk_idx_2) {      protected function get_external_uid($fk_idx, string $fk_idx_2) {
1025          $inst_external_uid_da = $this->f->get_inst__by_other_idx(array(          $inst_external_uid = $this->f->get_inst__by_other_idx(array(
1026              "obj" => "lien_id_interne_uid_externe",              "obj" => "lien_id_interne_uid_externe",
1027              "fk_field" => 'object_id',              "fk_field" => 'object_id',
1028              "fk_idx" => $fk_idx,              "fk_idx" => $fk_idx,
1029              "fk_field_2" => 'object',              "fk_field_2" => 'object',
1030              "fk_idx_2" => $fk_idx_2,              "fk_idx_2" => $fk_idx_2,
1031          ));          ));
1032          return $inst_external_uid_da->getVal('external_uid');          return $inst_external_uid->getVal('external_uid');
1033        }
1034    
1035        protected function get_all_external_uids($fk_idx, $link_objects = array()) {
1036            if (count($link_objects) == 0) {
1037                $link_objects = $this->get_list_distinct_objects_external_link();
1038            }
1039            $val_external_uid = array();
1040            foreach ($link_objects as $link_object) {
1041                $external_uid = $this->get_external_uid($fk_idx, $link_object);
1042                if ($external_uid !== '' && $external_uid !== null) {
1043                    $val_external_uid[$link_object] = $external_uid;
1044                }
1045            }
1046            return $val_external_uid;
1047      }      }
1048    
1049      protected function get_demandeurs_data(string $dossier) {      protected function get_demandeurs_data(string $dossier) {
# Line 250  class task extends task_gen { Line 1058  class task extends task_gen {
1058                  "obj" => "demandeur",                  "obj" => "demandeur",
1059                  "idx" => $demandeur['demandeur'],                  "idx" => $demandeur['demandeur'],
1060              ));              ));
1061              $val_demandeur[$demandeur['demandeur']] = json_decode($inst_demandeur->get_json_data(), true);              $val_demandeur[$demandeur['demandeur']] = $inst_demandeur->get_json_data();
1062              $val_demandeur[$demandeur['demandeur']]['petitionnaire_principal'] = $demandeur['petitionnaire_principal'];              $val_demandeur[$demandeur['demandeur']]['petitionnaire_principal'] = $demandeur['petitionnaire_principal'];
1063          }          }
1064          return $val_demandeur;          return $val_demandeur;
1065      }      }
1066    
1067      protected function get_architecte_data($architecte = null) {      protected function get_architecte_data($architecte = null) {
1068          $val_architecte = array();          $val_architecte = null;
1069          if ($architecte !== null          if ($architecte !== null
1070              && $architecte !== '') {              && $architecte !== '') {
1071              //              //
# Line 265  class task extends task_gen { Line 1073  class task extends task_gen {
1073                  "obj" => "architecte",                  "obj" => "architecte",
1074                  "idx" => $architecte,                  "idx" => $architecte,
1075              ));              ));
1076              $val_architecte = json_decode($inst_architecte->get_json_data(), true);              $val_architecte = $inst_architecte->get_json_data();
1077          }          }
1078          return $val_architecte;          return $val_architecte;
1079      }      }
1080    
1081      protected function get_instruction_data(string $dossier) {      protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
1082          $val_instruction = array();          $val_instruction = null;
1083            $instruction_with_doc = null;
1084          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
1085              "obj" => "dossier",              "obj" => "dossier",
1086              "idx" => $dossier,              "idx" => $dossier,
1087          ));          ));
1088            $idx = null;
1089            if ($type === 'decision') {
1090                $idx = $inst_di->get_last_instruction_decision();
1091            }
1092            if ($type === 'incompletude') {
1093                $idx = $inst_di->get_last_instruction_incompletude();
1094            }
1095            // XXX Permet de récupérer l'instruction par son identifiant
1096            if ($type === 'with-id') {
1097                $idx = $extra_params['with-id'];
1098            }
1099          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
1100              "obj" => "instruction",              "obj" => "instruction",
1101              "idx" => $inst_di->get_last_instruction_decision(),              "idx" => $idx,
1102          ));          ));
1103          if (count($inst_instruction->val) > 0) {          if (count($inst_instruction->val) > 0) {
1104              $val_instruction = json_decode($inst_instruction->get_json_data(), true);              $val_instruction = array();
1105                $instruction_data = $inst_instruction->get_json_data();
1106                $val_instruction = $this->sort_instruction_data($instruction_data, $val_instruction);
1107                if ($instruction_data['om_fichier_instruction'] !== null
1108                    && $instruction_data['om_fichier_instruction'] !== '') {
1109                    //
1110                    $instruction_with_doc = $inst_instruction->getVal($inst_instruction->clePrimaire);
1111                }
1112                $inst_ev = $this->f->get_inst__om_dbform(array(
1113                    "obj" => "evenement",
1114                    "idx" => $inst_instruction->getVal('evenement'),
1115                ));
1116                if ($inst_ev->getVal('retour') === 't') {
1117                    $instructions_related = $inst_instruction->get_related_instructions();
1118                    foreach ($instructions_related as $instruction) {
1119                        if ($instruction !== null && $instruction !== '') {
1120                            $inst_related_instruction = $this->f->get_inst__om_dbform(array(
1121                                "obj" => "instruction",
1122                                "idx" => $instruction,
1123                            ));
1124                            $instruction_data = $inst_related_instruction->get_json_data();
1125                            $val_instruction = $this->sort_instruction_data($instruction_data, $val_instruction);
1126                            if ($instruction_data['om_fichier_instruction'] !== null
1127                                && $instruction_data['om_fichier_instruction'] !== '') {
1128                                //
1129                                $instruction_with_doc = $inst_related_instruction->getVal($inst_related_instruction->clePrimaire);
1130                            }
1131                        }
1132                    }
1133                }
1134                if ($instruction_with_doc !== null) {
1135                    //
1136                    $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);
1137                }
1138          }          }
1139          return $val_instruction;          return $val_instruction;
1140      }      }
1141    
1142        /**
1143         * Récupère les informations
1144        */
1145        protected function get_instruction_notification_data($category, $type = '', $extra_params = array()) {
1146            $val_in = array();
1147    
1148            $idx = null;
1149            if ($type === 'with-id') {
1150                $idx = $extra_params['with-id'];
1151            }
1152    
1153            // récupére les données à intégrer à la payload
1154            $inst_in = $this->f->get_inst__om_dbform(array(
1155                "obj" => "instruction_notification",
1156                "idx" => $idx,
1157            ));
1158            $val_in = $inst_in->get_json_data();
1159    
1160            // Récupération du message et du titre
1161            $inst_instruction = $this->f->get_inst__om_dbform(array(
1162                "obj" => "instruction",
1163                "idx" => $inst_in->getVal('instruction'),
1164            ));
1165            $collectivite_id = $inst_instruction->get_dossier_instruction_om_collectivite($inst_instruction->getVal('dossier'));
1166            $phrase_type_notification = array();
1167            $phrase_type_notification = $this->f->get_notification_parametre_courriel_type($collectivite_id);
1168            //
1169            $val_in['parametre_courriel_type_titre'] = $phrase_type_notification['parametre_courriel_type_titre'];
1170            $val_in['parametre_courriel_type_message'] = $phrase_type_notification['parametre_courriel_type_message'];
1171    
1172            // Récupération des liens vers les documents et de l'id de l'instruction
1173            // de l'annexe
1174            $infoDocNotif = $inst_in->getInfosDocumentsNotif($inst_in->getVal($inst_in->clePrimaire));
1175            $val_in['lien_telechargement_document'] = $infoDocNotif['document']['lien'];
1176            $val_in['lien_telechargement_annexe'] = $infoDocNotif['annexe']['lien'];
1177            $val_in['instruction_annexe'] = $infoDocNotif['annexe']['id_instruction'];
1178    
1179            return $val_in;
1180        }
1181    
1182        protected function sort_instruction_data(array $values, array $res) {
1183            $fields = array(
1184                "date_evenement",
1185                "date_envoi_signature",
1186                "date_retour_signature",
1187                "date_envoi_rar",
1188                "date_retour_rar",
1189                "date_envoi_controle_legalite",
1190                "date_retour_controle_legalite",
1191                "signataire_arrete",
1192                "om_fichier_instruction",
1193                "tacite",
1194                "lettretype",
1195                "commentaire",
1196                "complement_om_html",
1197            );
1198            foreach ($values as $key => $value) {
1199                if (in_array($key, $fields) === true) {
1200                    if (array_key_exists($key, $res) === false
1201                        && $value !== null
1202                        && $value !== '') {
1203                        //
1204                        $res[$key] = $value;
1205                    } elseif ($key === 'tacite'
1206                        && $value === 't') {
1207                        //
1208                        $res[$key] = $value;
1209                    }
1210                }
1211            }
1212            return $res;
1213        }
1214    
1215        /**
1216         * Permet de définir si l'instruction passée en paramètre est une instruction
1217         * récépissé d'une demande et si la demande en question a générée un dossier d'instruction.
1218         *
1219         * @param  integer  $instruction Identifiant de l'instruction
1220         * @return boolean
1221         */
1222        protected function is_demande_instruction_recepisse_without_dossier($instruction) {
1223            $query = sprintf('
1224                SELECT demande_type.dossier_instruction_type
1225                FROM %1$sdemande
1226                    INNER JOIN %1$sdemande_type ON demande.demande_type = demande_type.demande_type
1227                WHERE demande.instruction_recepisse = %2$s
1228                ',
1229                DB_PREFIXE,
1230                $instruction
1231            );
1232            $res = $this->f->get_one_result_from_db_query(
1233                $query,
1234                true
1235            );
1236            if ($res['code'] === 'KO') {
1237                return null;
1238            }
1239            if ($res['result'] === '') {
1240                return true;
1241            }
1242            return false;
1243        }
1244    
1245      protected function get_document_numerise_data(string $dn) {      protected function get_document_numerise_data(string $dn) {
1246          $val_dn = array();          $val_dn = array();
1247          $inst_dn = $this->f->get_inst__om_dbform(array(          $inst_dn = $this->f->get_inst__om_dbform(array(
1248              "obj" => "document_numerise",              "obj" => "document_numerise",
1249              "idx" => $dn,              "idx" => $dn,
1250          ));          ));
1251          $val_dn = json_decode($inst_dn->get_json_data(), true);          $val_dn = $inst_dn->get_json_data();
1252          $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'));
1253            // Correspond à la nomenclature Plat'AU NATURE_PIECE
1254            $val_dn['nature'] = $val_dn['document_numerise_nature_libelle'];
1255          return $val_dn;          return $val_dn;
1256      }      }
1257    
# Line 316  class task extends task_gen { Line 1274  class task extends task_gen {
1274          return $val_dp;          return $val_dp;
1275      }      }
1276    
1277      protected function view_form_json() {      protected function get_avis_decision_data(string $dossier) {
1278          // Mise à jour des valeurs          $inst_di = $this->f->get_inst__om_dbform(array(
1279          if ($this->f->get_submitted_post_value('valid') === 'true'              "obj" => "dossier",
1280              && $this->f->get_submitted_post_value('state') !== null) {              "idx" => $dossier,
1281              //          ));
1282              $params = array(          $ad = $inst_di->getVal('avis_decision');
1283                  'val' => array(          $val_ad = array();
1284                      'state' => $this->f->get_submitted_post_value('state')          if ($ad !== null) {
1285                  ),              $inst_ad = $this->f->get_inst__om_dbform(array(
1286              );                  "obj" => "avis_decision",
1287              $update = $this->update_task($params);                  "idx" => $ad,
1288              $message_class = "valid";              ));
1289              $message = $this->msg;              $val_ad = $inst_ad->get_json_data();
1290              if ($update === false) {              $val_ad['txAvis'] = "Voir document joint";
1291                  $this->addToLog($this->msg, DEBUG_MODE);              if (isset($val_ad['tacite']) ===  true
1292                  $message_class = "error";                  && $val_ad['tacite'] === 't') {
1293                  $message = sprintf(                  //
1294                      '%s %s',                  $val_ad['txAvis'] = "Sans objet";
                     __('Impossible de mettre à jour la tâche.'),  
                     __('Veuillez contacter votre administrateur.')  
                 );  
1295              }              }
             $this->f->displayMessage($message_class, $message);  
1296          }          }
1297          //          return $val_ad;
1298          if ($this->f->get_submitted_post_value('valid') === 'true'      }
1299              && $this->f->get_submitted_post_value('external_uid') !== null) {  
1300        protected function get_signataire_arrete_data(string $sa) {
1301            $inst_sa = $this->f->get_inst__om_dbform(array(
1302                "obj" => "signataire_arrete",
1303                "idx" => $sa,
1304            ));
1305            $val_sa = array_combine($inst_sa->champs, $inst_sa->val);
1306            foreach ($val_sa as $key => $value) {
1307                $val_sa[$key] = strip_tags($value);
1308            }
1309            return $val_sa;
1310        }
1311    
1312        // XXX WIP
1313        protected function get_consultation_data(string $consultation) {
1314            $val_consultation = array();
1315            $inst_consultation = $this->f->get_inst__om_dbform(array(
1316                "obj" => "consultation",
1317                "idx" => $consultation,
1318            ));
1319            $val_consultation = $inst_consultation->get_json_data();
1320            if (isset($val_consultation['fichier']) === true
1321                && $val_consultation['fichier'] !== '') {
1322              //              //
1323              $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'));
                 "obj" => "lien_id_interne_uid_externe",  
                 "idx" => ']',  
             ));  
             $valF = array(  
                 'lien_id_interne_uid_externe' => '',  
                 '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);  
1324          }          }
1325            if (isset($val_consultation['om_fichier_consultation']) === true
1326                && $val_consultation['om_fichier_consultation'] !== '') {
1327                //
1328                $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'));
1329            }
1330            return $val_consultation;
1331        }
1332    
1333        // XXX WIP
1334        protected function get_service_data(string $service) {
1335            $val_service = array();
1336            $inst_service = $this->f->get_inst__om_dbform(array(
1337                "obj" => "service",
1338                "idx" => $service,
1339            ));
1340            $val_service = $inst_service->get_json_data();
1341            return $val_service;
1342        }
1343    
1344        protected function view_form_json($in_field = false) {
1345          //          //
1346          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null
1347                && $this->getVal('state') !== self::STATUS_CANCELED) {
1348              // Liste des valeurs à afficher              // Liste des valeurs à afficher
1349              $val = array();              $val = array();
1350              //              //
1351              $val_task = array_combine($this->champs, $this->val);              $val_task = array_combine($this->champs, $this->val);
1352                foreach ($val_task as $key => $value) {
1353                    $val_task[$key] = strip_tags($value);
1354                }
1355                $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);
1356              $val['task'] = $val_task;              $val['task'] = $val_task;
1357              //              //
1358              if ($this->getVal('type') === 'creation_DA') {              if ($this->getVal('type') === 'creation_DA'
1359                    || $this->getVal('type') === 'modification_DA') {
1360                    //
1361                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));
1362                  $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');
1363                  $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']);
1364                  $val_external_uid = array();                  $val_external_uid = array();
1365                  $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');
1366                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1367              }              }
1368              //              //
1369              if ($this->getVal('type') === 'creation_DI'              if ($this->getVal('type') === 'creation_DI'
1370                  || $this->getVal('type') === 'modification_DI') {                  || $this->getVal('type') === 'modification_DI'
1371                    || $this->getVal('type') === 'depot_DI') {
1372                  //                  //
1373                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
1374                  $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');
1375                  $val['demandeur'] = $this->get_demandeurs_data($val['dossier']['dossier']);                  $val['demandeur'] = $this->get_demandeurs_data($val['dossier']['dossier']);
1376                  $val['architecte'] = $this->get_architecte_data($val['donnees_techniques']['architecte']);                  $architecte = isset($val['donnees_techniques']['architecte']) === true ? $val['donnees_techniques']['architecte'] : null;
1377                    $val['architecte'] = $this->get_architecte_data($architecte);
1378                  $val['dossier_parcelle'] = $this->get_parcelles_data('dossier', $val['dossier']['dossier']);                  $val['dossier_parcelle'] = $this->get_parcelles_data('dossier', $val['dossier']['dossier']);
1379                  $val_external_uid = array();                  $val_external_uid = array();
1380                  $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');
1381                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1382                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1383              }              }
1384              //              //
1385              if ($this->getVal('type') === 'qualification_DI') {              if ($this->getVal('type') === 'qualification_DI') {
1386                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
                 $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier']);  
1387                  $val_external_uid = array();                  $val_external_uid = array();
1388                  $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');
1389                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1390                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1391              }              }
1392              //              //
1393              if ($this->getVal('type') === 'ajout_piece') {              if ($this->getVal('type') === 'ajout_piece') {
# Line 416  class task extends task_gen { Line 1397  class task extends task_gen {
1397                  $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');
1398                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1399                  $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');
1400                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1401                }
1402                //
1403                if ($this->getVal('type') === 'decision_DI') {
1404                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1405                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1406                    $val['instruction']['final'] = 't';
1407                    if (isset($val['instruction']['signataire_arrete']) === true) {
1408                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1409                    }
1410                    $val_external_uid = array();
1411                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1412                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1413                    $val['external_uids'] = $val_external_uid;
1414                }
1415                //
1416                if ($this->getVal('type') === 'incompletude_DI') {
1417                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1418                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1419                    $val_external_uid = array();
1420                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1421                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1422                    $val['external_uids'] = $val_external_uid;
1423                }
1424                //
1425                if ($this->getVal('type') === 'completude_DI') {
1426                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1427                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1428                    $val_external_uid = array();
1429                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1430                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1431                    $val['external_uids'] = $val_external_uid;
1432                }
1433                //
1434                if ($this->getVal('type') === 'pec_metier_consultation') {
1435                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1436                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1437                    $val_external_uid = array();
1438                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1439                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1440                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1441                    $val['external_uids'] = $val_external_uid;
1442                }
1443                //
1444                if ($this->getVal('type') === 'avis_consultation') {
1445                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1446                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1447                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1448                    if (isset($val['instruction']['signataire_arrete']) === true) {
1449                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1450                    }
1451                    $val_external_uid = array();
1452                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1453                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1454                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1455                    $val['external_uids'] = $val_external_uid;
1456                }
1457                // XXX WIP
1458                if ($this->getVal('type') === 'creation_consultation') {
1459                    //
1460                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1461                    $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
1462                    $val['service'] = $this->get_service_data($val['consultation']['service']);
1463                    $val_external_uid = array();
1464                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1465                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1466                    $val['external_uids'] = $val_external_uid;
1467                }
1468                //
1469                if ($this->getVal('type') === 'notification_instruction'
1470                    || $this->getVal('type') === 'notification_recepisse'
1471                    || $this->getVal('type') === 'notification_decision') {
1472                    //
1473                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1474                    $val['demandeur'] = $this->get_demandeurs_data($this->getVal('dossier'));
1475                    $val['instruction_notification'] = $this->get_instruction_notification_data($this->getVal('category'), 'with-id', array('with-id' => $this->getVal('object_id')));
1476                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $val['instruction_notification']['instruction']));
1477                    // Précise qu'il s'agit d'une instruction final si l'instruction est liée à une
1478                    // demande dont le type ne génère pas de dossier
1479                    if ($this->is_demande_instruction_recepisse_without_dossier($val['instruction_notification']['instruction']) === true) {
1480                        $val['instruction']['final'] = 't';
1481                    }
1482                    //
1483                    if ($val['instruction_notification']['instruction_annexe'] != '') {
1484                        $val['instruction_annexe'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $val['instruction_notification']['instruction_annexe']));
1485                    }
1486                    $val_external_uid = array();
1487                    // Affiche l'identifiant externe lié à l'instruction si cette combinaison existe, sinon celui lié au dossier
1488                    $val_external_uid['demande'] = $this->get_external_uid($val['instruction_notification']['instruction'], 'demande') !== '' ? $this->get_external_uid($val['instruction_notification']['instruction'], 'demande') : $this->get_external_uid($val['dossier']['dossier'], 'demande');
1489                    $val['external_uids'] = $val_external_uid;
1490                }
1491                //
1492                if ($this->getVal('type') === 'prescription') {
1493                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1494                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1495                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1496                    if (isset($val['instruction']['signataire_arrete']) === true) {
1497                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1498                    }
1499                    $val_external_uid = array();
1500                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1501                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1502                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1503                    $val['external_uids'] = $val_external_uid;
1504              }              }
1505    
1506              // Liste des valeurs affichée en JSON              if ($in_field === true) {
1507              printf(json_encode($val));                  return json_encode($val, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
1508                } else {
1509                    // Liste des valeurs affichée en JSON
1510                    printf(json_encode($val, JSON_UNESCAPED_SLASHES));
1511                }
1512          }          }
1513      }      }
1514    
1515      protected function get_lien_objet_by_type($type) {      function post_update_task() {
1516          //          // Mise à jour des valeurs
1517          $objet = '';  
1518          if ($type === 'creation_DA') {          // Modification de l'état de la tâche
1519              $objet = 'dossier_autorisation';          if ($this->f->get_submitted_post_value('state') !== null) {
1520                $params = array(
1521                    'val' => array(
1522                        'state' => $this->f->get_submitted_post_value('state')
1523                    ),
1524                );
1525                $update = $this->update_task($params);
1526                $message_class = "valid";
1527                $message = $this->msg;
1528                if ($update === false) {
1529                    $this->addToLog($this->msg, DEBUG_MODE);
1530                    $message_class = "error";
1531                    $message = sprintf(
1532                        '%s %s',
1533                        __('Impossible de mettre à jour la tâche.'),
1534                        __('Veuillez contacter votre administrateur.')
1535                    );
1536                }
1537                $this->f->displayMessage($message_class, $message);
1538            }
1539    
1540            // Sauvegarde de l'uid externe retourné
1541            if ($this->f->get_submitted_post_value('external_uid') !== null) {
1542                //
1543                $objects = $this->get_objects_by_task_type($this->getVal('type'), $this->getVal('stream'));
1544                foreach ($objects as $object) {
1545                    $inst_lien = $this->f->get_inst__om_dbform(array(
1546                        "obj" => "lien_id_interne_uid_externe",
1547                        "idx" => ']',
1548                    ));
1549                    if ($inst_lien->is_exists($object, $this->getVal('object_id'), $this->f->get_submitted_post_value('external_uid'), $this->getVal('dossier')) === false) {
1550                        $valF = array(
1551                            'lien_id_interne_uid_externe' => '',
1552                            'object' => $object,
1553                            'object_id' => $this->getVal('object_id'),
1554                            'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1555                            'dossier' => $this->getVal('dossier'),
1556                            'category' => $this->getVal('category'),
1557                        );
1558                        $add = $inst_lien->ajouter($valF);
1559                        $message_class = "valid";
1560                        $message = $inst_lien->msg;
1561                        if ($add === false) {
1562                            $this->addToLog($inst_lien->msg, DEBUG_MODE);
1563                            $message_class = "error";
1564                            $message = sprintf(
1565                                '%s %s',
1566                                __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1567                                __('Veuillez contacter votre administrateur.')
1568                            );
1569                        }
1570                        $this->f->displayMessage($message_class, $message);
1571                    }
1572                }
1573            }
1574        }
1575    
1576        function post_add_task() {
1577            // TODO Tester de remplacer la ligne de json_payload par un $_POST
1578            $result = $this->add_task(array(
1579                'val' => array(
1580                    'stream' => 'input',
1581                    'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload')),
1582                    'type' => $this->f->get_submitted_post_value('type'),
1583                    'category' => $this->f->get_submitted_post_value('category'),
1584                )
1585            ));
1586            $message = sprintf(
1587                __("Tâche %s ajoutée avec succès"),
1588                $this->getVal($this->clePrimaire)).
1589                '<br/><br/>'.
1590                $this->msg;
1591            $message_class = "valid";
1592            if ($result === false){
1593                $this->addToLog($this->msg, DEBUG_MODE);
1594                $message_class = "error";
1595                $message = sprintf(
1596                    '%s %s',
1597                    __('Impossible d\'ajouter la tâche.'),
1598                    __('Veuillez contacter votre administrateur.')
1599                );
1600            }
1601            $this->f->displayMessage($message_class, $message);
1602        }
1603    
1604        function setLayout(&$form, $maj) {
1605    
1606            // Récupération du mode de l'action
1607            $crud = $this->get_action_crud($maj);
1608    
1609            // MODE different de CREER
1610            if ($maj != 0 || $crud != 'create') {
1611                $form->setBloc('json_payload', 'D', '', 'col_6');
1612                    $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1613                $form->setBloc('json_payload', 'F');
1614            }
1615            $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1616        }
1617    
1618        /**
1619         * [get_objects_by_task_type description]
1620         * @param  [type] $type [description]
1621         * @return [type]       [description]
1622         */
1623        function get_objects_by_task_type($type, $stream = 'all') {
1624            $objects = array();
1625            if (in_array($type, array('creation_DA', 'modification_DA', )) === true) {
1626                $objects = array('dossier_autorisation', );
1627          }          }
1628          if ($type === 'creation_DI' || $type = 'modification_DI') {          if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1629              $objet = 'dossier';              $objects = array('dossier', );
1630          }          }
1631          if ($type === 'ajout_piece') {          if (in_array($type, array('create_DI_for_consultation', )) === true) {
1632              $objet = 'document_numerise';              $objects = array('dossier', 'dossier_consultation', );
1633          }          }
1634          return $objet;          if (in_array($type, array('create_DI', )) === true
1635                && $stream === 'input') {
1636                $objects = array('dossier', 'dossier_autorisation', 'demande', );
1637            }
1638            if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1639                $objects = array('instruction', );
1640            }
1641            if (in_array($type, array('pec_metier_consultation', )) === true
1642                && $stream === 'output') {
1643                $objects = array('pec_dossier_consultation', );
1644            }
1645            if (in_array($type, array('avis_consultation', )) === true
1646                && $stream === 'output') {
1647                $objects = array('avis_dossier_consultation', );
1648            }
1649            if (in_array($type, array('prescription', )) === true
1650                && $stream === 'output') {
1651                $objects = array('prescription', );
1652            }
1653            if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1654                $objects = array('piece', );
1655            }
1656            if (in_array($type, array('creation_consultation', )) === true) {
1657                $objects = array('consultation', );
1658            }
1659            if (in_array($type, array('pec_metier_consultation', )) === true
1660                && $stream === 'input') {
1661                $objects = array('pec_metier_consultation', );
1662            }
1663            if (in_array($type, array('avis_consultation', )) === true
1664                && $stream === 'input') {
1665                $objects = array('avis_consultation', );
1666            }
1667            if (in_array($type, array('create_message', )) === true
1668                && $stream === 'input') {
1669                $objects = array('dossier_message', );
1670            }
1671            if (in_array($type, array('notification_recepisse', 'notification_instruction', 'notification_decision' )) === true) {
1672                $objects = array('instruction_notification', );
1673            }
1674            return $objects;
1675      }      }
1676    
1677  }  }

Legend:
Removed from v.9402  
changed lines
  Added in v.10968

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26