/[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

revision 11585 by softime, Thu Mar 3 17:52:44 2022 UTC revision 14542 by softime, Thu Apr 20 13:21:47 2023 UTC
# Line 38  class task extends task_gen { Line 38  class task extends task_gen {
38          'notification_decision',          'notification_decision',
39          'notification_service_consulte',          'notification_service_consulte',
40          'notification_tiers_consulte',          'notification_tiers_consulte',
41            'notification_depot_demat',
42            'notification_commune',
43            'lettre_incompletude',
44            'lettre_majoration'
45      );      );
46    
47      /**      /**
# Line 53  class task extends task_gen { Line 57  class task extends task_gen {
57          'notification_decision',          'notification_decision',
58          'notification_service_consulte',          'notification_service_consulte',
59          'notification_tiers_consulte',          'notification_tiers_consulte',
60            'notification_depot_demat',
61          'prescription',          'prescription',
62      );      );
63    
64      /**      /**
65         * Liste des types de tâche pouvant avoir des documents associés
66         */
67        const TASK_WITH_DOCUMENT = array(
68            'add_piece',
69            'avis_consultation',
70            'pec_metier_consultation'
71        );
72    
73        /**
74       * Catégorie de la tâche       * Catégorie de la tâche
75       */       */
76      var $category = 'platau';      var $category = PLATAU;
77    
78      /**      /**
79       * Définition des actions disponibles sur la classe.       * Définition des actions disponibles sur la classe.
# Line 157  class task extends task_gen { Line 171  class task extends task_gen {
171              //              //
172              $this->valF['category'] = $this->category;              $this->valF['category'] = $this->category;
173          }          }
174    
175            // Si last_modification_time est vide, la valeur est remplacée par NULL
176            // pour eviter d'avoir une erreur de base de données car le champ est au format time.
177            if ($val['last_modification_time'] == "") {
178                $this->valF['last_modification_time'] = NULL;
179            } else {
180                $this->valF['last_modification_time'] = $val['last_modification_time'];
181            }
182    
183            // Si creation_time est vide, la valeur est remplacée par NULL
184            // pour eviter d'avoir une erreur de base de données car le champ est au format time.
185            if ($val['creation_time'] == "") {
186                $this->valF['creation_time'] = NULL;
187            } else {
188                $this->valF['creation_time'] = $val['creation_time'];
189            }
190      }      }
191    
192      /**      /**
# Line 171  class task extends task_gen { Line 201  class task extends task_gen {
201              "object_id",              "object_id",
202              "dossier",              "dossier",
203              "stream",              "stream",
204                "creation_date",
205                "creation_time",
206                "CONCAT_WS(' ', to_char(task.creation_date, 'DD/MM/YYYY'), task.creation_time) AS date_creation",
207                'last_modification_date',
208                'last_modification_time',
209                "CONCAT_WS(' ', to_char(task.last_modification_date, 'DD/MM/YYYY'), task.last_modification_time) AS date_modification",
210                "comment",
211              "json_payload",              "json_payload",
212              "timestamp_log",              "timestamp_log",
213                "timestamp_log AS timestamp_log_hidden",
214              "category",              "category",
215          );          );
216      }      }
# Line 185  class task extends task_gen { Line 223  class task extends task_gen {
223    
224          // ALL          // ALL
225          $form->setType("category", "hidden");          $form->setType("category", "hidden");
226            $form->setType("timestamp_log_hidden", "hidden");
227    
228          // MODE CREER          // MODE CREER
229          if ($maj == 0 || $crud == 'create') {          if ($maj == 0 || $crud == 'create') {
230                $form->setType("type", "select");
231              $form->setType("state", "select");              $form->setType("state", "select");
232              $form->setType("stream", "select");              $form->setType("stream", "select");
233              $form->setType("json_payload", "textarea");              $form->setType("json_payload", "textarea");
234          }          }
235          // MDOE MODIFIER          // MODE MODIFIER
236          if ($maj == 1 || $crud == 'update') {          if ($maj == 1 || $crud == 'update') {
237                $form->setType("task", "hiddenstatic");
238              $form->setType("state", "select");              $form->setType("state", "select");
239              $form->setType("stream", "select");              $form->setType("stream", "hiddenstatic");
240              $form->setType("json_payload", "jsonprettyprint");              $form->setType("json_payload", "jsonprettyprint");
241                $form->setType("timestamp_log", "jsontotab");
242                $form->setType("type", "hiddenstatic");
243                $form->setType("creation_date", "hidden");
244                $form->setType("creation_time", "hidden");
245                $form->setType("object_id", "hiddenstatic");
246                $form->setType("dossier", "hiddenstatic");
247                $form->setType("date_creation", "hiddenstatic");
248                $form->setType("last_modification_date", "hidden");
249                $form->setType("last_modification_time", "hidden");
250                $form->setType("date_modification", "static");
251          }          }
252          // MODE CONSULTER          // MODE CONSULTER
253          if ($maj == 3 || $crud == 'read') {          if ($maj == 3 || $crud == 'read') {
254                $form->setType("state", "selecthiddenstatic");
255                $form->setType("stream", "selecthiddenstatic");
256              $form->setType('dossier', 'link');              $form->setType('dossier', 'link');
257              $form->setType('json_payload', 'jsonprettyprint');              $form->setType('json_payload', 'jsonprettyprint');
258                $form->setType("type", "selecthiddenstatic");
259                $form->setType("creation_date", "hidden");
260                $form->setType("creation_time", "hidden");
261                $form->setType("date_creation", "static");
262                $form->setType("last_modification_date", "hidden");
263                $form->setType("last_modification_time", "hidden");
264                $form->setType("date_modification", "static");
265                $form->setType("timestamp_log", "jsontotab");
266          }          }
   
267      }      }
268    
269        function stateTranslation ($currentState) {
270            switch ($currentState){
271                case "draft":
272                    return __('brouillon');
273                    break;
274                case "new":
275                    return __('à traiter');
276                    break;
277                case "pending":
278                    return __('en cours');
279                    break;
280                case "done":
281                    return __('terminé');
282                    break;
283                case "archived":
284                    return __('archivé');
285                    break;
286                case "error":
287                    return __('erreur');
288                    break;
289                case "debug":
290                    return __('debug');
291                    break;
292                case "canceled":
293                    return __('annulé');
294                    break;
295            }
296        }
297      /**      /**
298       *       *
299       */       */
300      function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {      function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
301          if($maj < 2) {          if($maj <= 3) {
   
302              $contenu = array();              $contenu = array();
303              foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG', 'ARCHIVED', 'CANCELED') as $key) {              foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG', 'ARCHIVED', 'CANCELED') as $key) {
304                  $const_name = 'STATUS_'.$key;                  $const_name = 'STATUS_'.$key;
305                  $const_value = constant("self::$const_name");                  $const_value = constant("self::$const_name");
306                  $contenu[0][] = $const_value;                  $contenu[0][] = $const_value;
307                  $contenu[1][] = $const_value;  
308    
309                    $contenu[1][] = $this->stateTranslation($const_value);
310    
311              }              }
312    
313              $form->setSelect("state", $contenu);              $form->setSelect("state", $contenu);
314    
315              $contenu_stream =array();              $contenu_stream =array();
316              $contenu_stream[0][0]="input";              $contenu_stream[0][0]="input";
317              $contenu_stream[1][0]=_('input');              $contenu_stream[1][0]=__('input');
318              $contenu_stream[0][1]="output";              $contenu_stream[0][1]="output";
319              $contenu_stream[1][1]=_('output');              $contenu_stream[1][1]=__('output');
320              $form->setSelect("stream", $contenu_stream);              $form->setSelect("stream", $contenu_stream);
321    
322                $tab_type = array_unique(array_merge(self::TASK_TYPE_SI, self::TASK_TYPE_SC));
323    
324                foreach ($tab_type as $type) {
325    
326                    $contenu_type[0][] = $type;
327    
328                    switch ($type) {
329                        case "creation_DA":
330                            $value_type = __('Création DA');
331                            break;
332                        case "create_DI":
333                            $value_type = __('Création demande');
334                            break;
335                        case "creation_DI":
336                            $value_type = __('Création DI');
337                            break;
338                        case "modification_DA":
339                            $value_type = __('Modification DA');
340                            break;
341                        case "modification_DI":
342                            $value_type = __('Modification DI');
343                            break;
344                        case "ajout_piece":
345                            $value_type = __('Ajout pièce (sortant)');
346                            break;
347                        case "add_piece":
348                            $value_type = __('Ajout pièce (entrant)');
349                            break;
350                        case "depot_DI":
351                            $value_type = __('Dépôt DI');
352                            break;
353                        case "qualification_DI":
354                            $value_type = __('Qualification DI');
355                            break;
356                        case "creation_consultation":
357                            $value_type = __('Création consultation');
358                            break;
359                        case "decision_DI":
360                            $value_type = __('Décision DI');
361                            break;
362                        case "envoi_CL":
363                            $value_type = __('Envoi contrôle de légalité');
364                            break;
365                        case "pec_metier_consultation":
366                            $value_type = __('PeC consultation');
367                            break;
368                        case "avis_consultation":
369                            $value_type = __('Avis');
370                            break;
371                        case "prescription":
372                            $value_type = __('Prescription');
373                            break;
374                        case "create_DI_for_consultation":
375                            $value_type = __('Création DI pour consultation');
376                            break;
377                        case "create_message":
378                            $value_type = __('Message');
379                            break;
380                        case "notification_recepisse":
381                            $value_type = __('Notification récépissé');
382                            break;
383                        case "notification_instruction":
384                            $value_type = __('Notification instruction');
385                            break;
386                        case "notification_decision":
387                            $value_type = __('Notification décision');
388                            break;
389                        case "notification_service_consulte":
390                            $value_type = __('Notification service consulté');
391                            break;
392                        case "notification_tiers_consulte":
393                            $value_type = __('Notification tiers consulté');
394                            break;
395                        case "completude_DI":
396                            $value_type = __('complétude DI');
397                            break;
398                        case "incompletude_DI":
399                            $value_type = __('incomplétude DI');
400                            break;
401                        case "lettre_incompletude":
402                            $value_type = __('Lettre au pétitionnaire d\'incompletude');
403                            break;
404                        case "lettre_majoration":
405                            $value_type = __('Lettre au pétitionnaire de majoration');
406                            break;
407                    }
408    
409                    $contenu_type[1][] = $value_type;
410                }
411    
412                $form->setselect('type', $contenu_type);
413          }          }
414    
415          if ($maj == 3) {          if ($maj == 3) {
416              if ($this->getVal('stream') == 'output') {              // Récupération du numéro du dossier si il n'est pas renseigné dans la tâche
417                  $inst_dossier = $this->f->get_inst__om_dbform(array(              if ($form->val['dossier'] == '' || $form->val['dossier'] == null) {
418                      "obj" => "dossier",                  // Récupération de la payload de la taĉhe.
419                      "idx" => $form->val['dossier'],                  // Si la tâche est une tâche input la payload est associée à la tâche.
420                  ));                  // Si la tâche est une tâche en output la payload est "calculé" à l'ouverture
421                    // du formulaire.
422                    if ($this->getVal('stream') == 'input') {
423                        $json_payload = json_decode($this->getVal('json_payload'), true);
424                    } else {
425                        $json_payload = json_decode($form->val['json_payload'], true);
426                    }
427                    // A partir de la payload de la tâche ont récupère les externals uid
428                    // Si un external uid de DI (dossier) existe ont le récupère et on stocke le numéro
429                    // pour l'afficher sur le formulaire.
430                    // Si l'external UID du DI n'existe pas on récupère celui du DA
431                    $external_uid = '';
432                    if (array_key_exists('external_uids', $json_payload)
433                        && array_key_exists('dossier', $json_payload['external_uids'])
434                    ) {
435                        $external_uid = $json_payload['external_uids']['dossier'];
436                    } elseif (array_key_exists('external_uids', $json_payload)
437                        && array_key_exists('demande', $json_payload['external_uids'])) {
438                        $external_uid = $json_payload['external_uids']['demande'];
439                    }
440                    // Recherche l'external uid dans la base de données pour récupèrer le numéro de
441                    // DI / DA correspondant. On stocke le numéro de dossier dans la propriété val
442                    // du formulaire pour pouvoir l'afficher
443                    if ($external_uid != '') {
444                        $qres = $this->f->get_one_result_from_db_query(
445                            sprintf(
446                                'SELECT
447                                    lien_id_interne_uid_externe.dossier
448                                FROM
449                                    %1$slien_id_interne_uid_externe
450                                WHERE
451                                    lien_id_interne_uid_externe.external_uid = \'%2$s\'',
452                                DB_PREFIXE,
453                                $this->f->db->escapeSimple($external_uid)
454                            ),
455                            array(
456                                "origin" => __METHOD__,
457                            )
458                        );
459                        if (! empty($qres["result"])) {
460                            $form->val['dossier'] = $qres["result"];
461                        }
462                    }
463                }
464    
465                  if($form->val['type'] == "creation_DA"              // Vérifie si le numéro de dossier associé à la tâche existe dans la base.
466                      || $form->val['type'] == "modification_DA"){              // Si c'est le cas ce numéro sera lié au dossier (DI ou DA) correspondant
467                      //              // TODO : vérifier la liste des tâches lié à des DA
468                $obj_link = '';
469                if ($form->val['type'] == "creation_DA" || $form->val['type'] == "modification_DA") {
470                    // Vérification que le numéro de DA affiché dans le formulaire existe
471                    $qres = $this->f->get_one_result_from_db_query(
472                        sprintf(
473                            'SELECT
474                                dossier_autorisation.dossier_autorisation
475                            FROM
476                                %1$sdossier_autorisation
477                            WHERE
478                                dossier_autorisation.dossier_autorisation = \'%2$s\'',
479                            DB_PREFIXE,
480                            $this->f->db->escapeSimple($form->val['dossier'])
481                        ),
482                        array(
483                            "origin" => __METHOD__,
484                        )
485                    );
486                    // Si on a un résultat c'est que le dossier existe, il faut afficher le lien
487                    if (! empty($qres["result"])) {
488                      $obj_link = 'dossier_autorisation';                      $obj_link = 'dossier_autorisation';
489                  } else {                  }
490                } else {
491                    // Vérification que le numéro de DI affiché dans le formulaire existe
492                    $qres = $this->f->get_one_result_from_db_query(
493                        sprintf(
494                            'SELECT
495                                dossier.dossier
496                            FROM
497                                %1$sdossier
498                            WHERE
499                                dossier.dossier = \'%2$s\'',
500                            DB_PREFIXE,
501                            $this->f->db->escapeSimple($form->val['dossier'])
502                        ),
503                        array(
504                            "origin" => __METHOD__,
505                        )
506                    );
507                    // Si on a un résultat c'est que le dossier existe, il faut afficher le lien
508                    if (! empty($qres["result"])) {
509                      $obj_link = 'dossier_instruction';                      $obj_link = 'dossier_instruction';
510                  }                  }
   
                 $params = array();  
                 $params['obj'] = $obj_link;  
                 $params['libelle'] = $inst_dossier->getVal('dossier');  
                 $params['title'] = "Consulter le dossier";  
                 $params['idx'] = $form->val['dossier'];  
                 $form->setSelect("dossier", $params);  
511              }              }
512                // Pour afficher le lien vers un dossier ont utilise un champ de type "link".
513                // Pour paramétrer ce champs on a besoin de savoir :
514                //  - quel objet est visé par le lien
515                //  - le label (libellé) du lien
516                //  - l'identifiant de l'objet qui sera utilisé dans le lien
517                //  - le titre associé au lien
518                // Pour cela on remplit le champs comme un select et les valeurs du select
519                // contiennent les informations nécessaire à l'affichage du champs.
520                $params = array(
521                    'obj' => $obj_link,
522                    'libelle' => $form->val['dossier'],
523                    'title' => "Consulter le dossier",
524                    'idx' => $form->val['dossier']
525                );
526                $form->setSelect("dossier", $params);
527          }          }
528      }      }
529    
# Line 264  class task extends task_gen { Line 535  class task extends task_gen {
535      function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {      function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {
536          // parent::setVal($form, $maj, $validation);          // parent::setVal($form, $maj, $validation);
537          //          //
538          if ($this->getVal('stream') == "output") {          if ($this->getVal('stream') == "output"
539                && ($this->getVal('state') !== self::STATUS_DONE
540                    || $this->getVal('json_payload') === "{}")) {
541                //
542              $form->setVal('json_payload', $this->view_form_json(true));              $form->setVal('json_payload', $this->view_form_json(true));
543          } else {          } else {
544              $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));              $form->setVal('json_payload', json_encode(json_decode($this->getVal('json_payload'), true), JSON_PRETTY_PRINT | JSON_UNESCAPED_UNICODE | JSON_UNESCAPED_SLASHES));
545            }
546            // Gestion du contenu de l'historique
547            if ($this->getVal('timestamp_log') !== ''
548                && $this->getVal('timestamp_log') !== null) {
549                //
550                $form->setVal('timestamp_log', $this->getVal('timestamp_log'));
551          }          }
552      }      }
553    
# Line 277  class task extends task_gen { Line 557  class task extends task_gen {
557          // Récupération du mode de l'action          // Récupération du mode de l'action
558          $crud = $this->get_action_crud($maj);          $crud = $this->get_action_crud($maj);
559    
560            $form->setLib('date_creation', __("Date de création"));
561            $form->setLib('date_modification', __("Date de dernière modification"));
562            $form->setLib('comment', __("commentaire"));
563    
564          // MODE different de CREER          // MODE different de CREER
565          if ($maj != 0 || $crud != 'create') {          if ($maj != 0 || $crud != 'create') {
566              $form->setLib('json_payload', '');              $form->setLib('json_payload', '');
567                $form->setLib("task", __("identifiant"));
568                $form->setLib("Task_portal", __("task_portal"));
569                $form->setLib("type", __("type"));
570                $form->setLib("object_id", __("Réf. interne"));
571                $form->setLib("stream", __("flux"));
572                $form->setLib("timestamp_log", __("Historique"));
573          }          }
574      }      }
575    
# Line 339  class task extends task_gen { Line 629  class task extends task_gen {
629                                 $this->valF['stream'] == 'input')) {                                 $this->valF['stream'] == 'input')) {
630    
631              // décode la payload JSON              // décode la payload JSON
632                // TODO : COMMENTER
633              $json_payload = json_decode($this->valF['json_payload'], true);              $json_payload = json_decode($this->valF['json_payload'], true);
634    
635              // défini une liste de chemin de clés requises              // défini une liste de chemin de clés requises
636              $paths = array();              $paths = array();
637              if ($this->valF['category'] === 'platau') {              if ($this->valF['category'] === PLATAU) {
638                  $paths = array(                  $paths = array(
639                      'external_uids/dossier'                      'external_uids/dossier'
640                  );                  );
# Line 421  class task extends task_gen { Line 712  class task extends task_gen {
712       * @return [type]            [description]       * @return [type]            [description]
713       */       */
714      public function task_exists(string $type, string $object_id, string $dossier = null, bool $is_not_done = true) {      public function task_exists(string $type, string $object_id, string $dossier = null, bool $is_not_done = true) {
715          $query = sprintf('          $qres = $this->f->get_one_result_from_db_query(
716              SELECT task              sprintf(
717              FROM %1$stask                  'SELECT
718              WHERE %2$s                      task
719              type = \'%3$s\'                  FROM
720              AND (object_id = \'%4$s\'                      %1$stask
721              %5$s)                  WHERE
722              AND state != \'%6$s\'                      %2$s
723              ',                      type = \'%3$s\'
724              DB_PREFIXE,                      AND (
725              $is_not_done == true ? 'state != \''.self::STATUS_DONE.'\' AND' : '',                          object_id = \'%4$s\'
726              $type,                          %5$s
727              $object_id,                      )
728              $dossier !== null ? sprintf('OR dossier = \'%s\'', $dossier) : '',                      AND state != \'%6$s\'',
729              self::STATUS_CANCELED                  DB_PREFIXE,
730                    $is_not_done == true ? 'state != \''.self::STATUS_DONE.'\' AND' : '',
731                    $type,
732                    $object_id,
733                    $dossier !== null ? sprintf('OR dossier = \'%s\'', $dossier) : '',
734                    self::STATUS_CANCELED
735                ),
736                array(
737                    "origin" => __METHOD__,
738                )
739          );          );
740          $res = $this->f->get_one_result_from_db_query($query);          if ($qres["result"] !== null && $qres["result"] !== "") {
741          if ($res['result'] !== null && $res['result'] !== '') {              return $qres["result"];
             return $res['result'];  
742          }          }
743          return false;          return false;
744      }      }
# Line 456  class task extends task_gen { Line 755  class task extends task_gen {
755              FROM %1$stask              FROM %1$stask
756              %2$s              %2$s
757              %3$s              %3$s
758                ORDER BY task ASC
759              ',              ',
760              DB_PREFIXE,              DB_PREFIXE,
761              empty($search_values) === false ? ' WHERE ' : '',              empty($search_values) === false ? ' WHERE ' : '',
762              implode(' AND ', $search_values)              implode(' AND ', $search_values)
763          );          );
764          $res = $this->f->get_all_results_from_db_query($query);          $res = $this->f->get_all_results_from_db_query(
765                $query,
766                array(
767                    "origin" => __METHOD__,
768                )
769            );
770          if (count($res['result']) > 0) {          if (count($res['result']) > 0) {
771              return $res['result'];              return $res['result'];
772          }          }
# Line 496  class task extends task_gen { Line 801  class task extends task_gen {
801    
802          // gestion d'une tache de type notification et de category mail          // gestion d'une tache de type notification et de category mail
803          if (isset($val['type'])          if (isset($val['type'])
804              && ((//$val['type'] === 'notification_recepisse'              && (($val['type'] === 'notification_instruction' || $val['type'] === 'notification_decision')
805                  $val['type'] === 'notification_instruction'                  && isset($val['category'])
806                  || $val['type'] === 'notification_decision')                  && $val['category'] === 'mail')
             && isset($val['category'])  
             && $val['category'] === 'mail')  
807              || $val['type'] === 'notification_service_consulte'              || $val['type'] === 'notification_service_consulte'
808              || $val['type'] === 'notification_tiers_consulte'              || $val['type'] === 'notification_tiers_consulte'
809                || $val['type'] === 'notification_depot_demat'
810                || $val['type'] === 'notification_commune'
811              ) {              ) {
812              // Récupère la payload de la tache              // Récupère la payload de la tache
813              $data = array();              $data = array();
814              // TODO : pour l'instant la gestion des notifs des demandeurs a été séparée              $data['instruction_notification'] = $this->get_instruction_notification_data(
815              // de celle des autres type de notif afin de ne pas risquer de casser l'existant                  $this->valF['category'],
816              // et pour des contraintes de temps. A optimiser plus tard                  'with-id',
817              if ($val['type'] === 'notification_service_consulte'                  array('with-id' => $this->valF['object_id'])
818                  || $val['type'] === 'notification_tiers_consulte') {              );
                 $data['instruction_notification'] = $this->get_instruction_notification_data_annexe_multiple(  
                     $this->valF['category'],  
                     'with-id',  
                     array('with-id' => $this->valF['object_id'])  
                 );  
             } else {  
                 $data['instruction_notification'] = $this->get_instruction_notification_data(  
                     $this->valF['category'],  
                     'with-id',  
                     array('with-id' => $this->valF['object_id'])  
                 );  
             }  
819              $data['dossier'] = $this->get_dossier_data($this->valF['dossier']);              $data['dossier'] = $this->get_dossier_data($this->valF['dossier']);
820    
821              // Récupère l'instance de la notification              // Récupère l'instance de la notification
# Line 542  class task extends task_gen { Line 835  class task extends task_gen {
835      }      }
836    
837      /**      /**
838         * TRIGGER - triggermodifier.
839         *
840         * @param string $id
841         * @param null &$dnu1 @deprecated  Ne pas utiliser.
842         * @param array $val Tableau des valeurs brutes.
843         * @param null $dnu2 @deprecated  Ne pas utiliser.
844         *
845         * @return boolean
846         */
847        function triggermodifier($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
848            parent::triggermodifier($id, $dnu1, $val, $dnu2);
849            $this->addToLog(__METHOD__."(): start", EXTRA_VERBOSE_MODE);
850    
851            // Mise à jour des valeurs, notamment du timestamp_log en fonction de plusieurs critères
852            $values = array(
853                'state' => $this->valF['state'],
854                'object_id' => $this->valF['object_id'],
855                'comment' => $this->valF['comment'],
856            );
857            $new_values = $this->set_values_for_update($values);
858            if ($new_values === false) {
859                $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
860                return false;
861            }
862    
863            // Mise à jour des valeurs
864            $this->valF['timestamp_log'] = $new_values['timestamp_log'];
865            $this->valF['state'] = $new_values['state'];
866            $this->valF['object_id'] = $new_values['object_id'];
867            $this->valF['last_modification_date'] = date('Y-m-d');
868            $this->valF['last_modification_time'] = date('H:i:s');
869            if ($val['stream'] === 'output') {
870                // Lorsque la task passe d'un état qui n'est pas "done" à l'état "done"
871                if ($this->getVal("state") !== self::STATUS_DONE
872                    && $this->valF['state'] === self::STATUS_DONE) {
873                    //
874                    $this->valF['json_payload'] = $this->view_form_json(true);
875                }
876                // Lorsque la task passe d'un état "done" à un état qui n'est pas "done"
877                if ($this->getVal("state") === self::STATUS_DONE
878                    && $this->valF['state'] !== self::STATUS_DONE) {
879                    //
880                    $this->valF['json_payload'] = "{}";
881                }
882            }
883    
884            return true;
885        }
886    
887    
888        /**
889         * Applique nouvelle valeur après traitement.
890         *
891         * @param array $params Tableau des valeurs en entrées
892         * @return array        Tableau des valeurs en sorties
893         */
894        public function set_values_for_update($params = array()) {
895    
896            // Récupération du timestamp_log existant
897            $timestamp_log = $this->get_timestamp_log();
898            if ($timestamp_log === false) {
899                return false;
900            }
901    
902            // Vérification des object_id précédent en cas de tentative d'appliquer
903            // l'état CANCELED sur la tâche
904            if (isset($params['state']) === true
905                && $params['state'] === self::STATUS_CANCELED) {
906                // Récupération du journal d'activité de la tâche sous forme de tableau
907                // trié par ordre décroissant
908                $log = $timestamp_log;
909                krsort($log);
910                // Pour chaque entrée dans le journal d'activité de la tâche :
911                // - vérification de la présence de l'object_id précédent
912                // - vérification que l'object_id précédent existe toujours dans la base de données
913                // - l'object_id est mise à jour avec la valeur de l'object_id précédent
914                // - le state n'est pas modifié
915                // - sortie du traitement dès que le premier object_id précédent existant est trouvé
916                // - si aucun object_id précédent existant n'est trouvé alors ni le state, ni l'object_id n'est modifiés
917                foreach ($log as $key => $value) {
918                    //
919                    if (isset($value['prev_object_id']) === true
920                        && $this->getVal('object_id') !== $value['prev_object_id']) {
921                        // Récupère la liste des tables potentielles pour un type de tâche
922                        $tables = $this->get_tables_by_task_type($this->getVal('type'), $this->getVal('stream'));
923                        foreach ($tables as $table) {
924                            // Vérifie s'il y a un ou aucun résultat
925                            $qres = $this->f->get_one_result_from_db_query(
926                                sprintf(
927                                    'SELECT
928                                        COUNT(%2$s)
929                                    FROM
930                                        %1$s%2$s
931                                    WHERE
932                                        %2$s::CHARACTER VARYING = \'%3$s\'',
933                                    DB_PREFIXE,
934                                    $table,
935                                    $value['prev_object_id']
936                                ),
937                                array(
938                                    "origin" => __METHOD__,
939                                    "force_return" => true,
940                                )
941                            );
942                            if ($qres["code"] !== "OK") {
943                                return $this->end_treatment(__METHOD__, false);
944                            }
945                            // Affectation des valeurs et sortie de la boucle
946                            if ($qres["result"] == '1') {
947                                $params['object_id'] = $value['prev_object_id'];
948                                $params['state'] = $this->getVal('state');
949                                break;
950                            }
951                        }
952                        // Sortie de la boucle si les valeurs sont affectées
953                        if ($params['object_id'] !== null
954                            && $params['object_id'] === $value['prev_object_id']) {
955                            //
956                            break;
957                        }
958                    }
959                }
960            }
961    
962            // Mise à jour du journal d'activité de la tâche
963            array_push($timestamp_log, array(
964                'modification_date' => date('Y-m-d H:i:s'),
965                'object_id' => $params['object_id'] !== null ? $params['object_id'] : $this->getVal('object_id'),
966                'prev_object_id' => $this->getVal('object_id'),
967                'state' =>  $params['state'],
968                'prev_state' => $this->getVal('state'),
969                'comment' => isset($params['comment']) ? $params['comment'] : $this->getVal('comment'),
970            ));
971            //
972            $timestamp_log = json_encode($timestamp_log);
973            
974    
975            // Les nouvelles valeurs après vérification des critères
976            $result = array(
977                'timestamp_log' => $timestamp_log,
978                'object_id' => $params['object_id'],
979                'state' => $params['state'],
980                'comment' => $params['comment'],
981            );
982            return $result;
983        }
984    
985        
986        /**
987       * TRIGGER - triggermodifierapres.       * TRIGGER - triggermodifierapres.
988       *       *
989       * @param string $id       * @param string $id
# Line 558  class task extends task_gen { Line 1000  class task extends task_gen {
1000          // En cas de changement de l'état de la tâche de notification, alors          // En cas de changement de l'état de la tâche de notification, alors
1001          // le suivi des dates de la notification et de l'instruction, est effectué          // le suivi des dates de la notification et de l'instruction, est effectué
1002          if (isset($val['category']) === true          if (isset($val['category']) === true
1003              && $val['category'] === 'portal'              && $val['category'] === PORTAL
1004              && isset($val['type']) === true              && isset($val['type']) === true
1005              && ($val['type'] === 'notification_recepisse'              && ($val['type'] === 'notification_recepisse'
1006                  || $val['type'] === 'notification_instruction'                  || $val['type'] === 'notification_instruction'
# Line 601  class task extends task_gen { Line 1043  class task extends task_gen {
1043                          }                          }
1044                          $valF_instruction['date_envoi_rar'] = date('d/m/Y');                          $valF_instruction['date_envoi_rar'] = date('d/m/Y');
1045                          $valF_instruction['date_retour_rar'] = date('d/m/Y', strtotime('now + 1 day'));                          $valF_instruction['date_retour_rar'] = date('d/m/Y', strtotime('now + 1 day'));
1046                          $inst_instruction->setParameter('maj', 1);                          // Action spécifique pour identifier que la modification
1047                            // est une notification de demandeur
1048                            $inst_instruction->setParameter('maj', 175);
1049                          $update_instruction = $inst_instruction->modifier($valF_instruction);                          $update_instruction = $inst_instruction->modifier($valF_instruction);
1050                          if ($update_instruction === false) {                          if ($update_instruction === false) {
1051                              $this->addToLog(__METHOD__."(): ".$inst_instruction->msg, DEBUG_MODE);                              $this->addToLog(__METHOD__."(): ".$inst_instruction->msg, DEBUG_MODE);
# Line 685  class task extends task_gen { Line 1129  class task extends task_gen {
1129          }          }
1130    
1131          //          //
1132          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array());
             'creation_date' => date('Y-m-d H:i:s'),  
         ));  
1133    
1134          //          //
1135          $category = isset($params['val']['category']) === true ? $params['val']['category'] : $this->category;          $category = isset($params['val']['category']) === true ? $params['val']['category'] : $this->category;
# Line 695  class task extends task_gen { Line 1137  class task extends task_gen {
1137          // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier          // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
1138          // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche          // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
1139          if (isset($params['val']['type'])          if (isset($params['val']['type'])
1140              && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")              && in_array($params['val']['type'], self::TASK_WITH_DOCUMENT)
1141              && isset($params['val']['stream'])              && isset($params['val']['stream'])
1142              && $params['val']['stream'] == "input" ) {              && $params['val']['stream'] == "input" ) {
1143              //              //
# Line 704  class task extends task_gen { Line 1146  class task extends task_gen {
1146                  $this->addToMessage(__("Le contenu JSON de la tâche n'est pas valide."));                  $this->addToMessage(__("Le contenu JSON de la tâche n'est pas valide."));
1147                  return $this->end_treatment(__METHOD__, false);                  return $this->end_treatment(__METHOD__, false);
1148              }              }
1149              if (isset($json_payload['document_numerise']) === true              if (isset($json_payload['document_numerise']["file_content"]) === true
1150                  && empty($json_payload['document_numerise']) === false) {                  && empty($json_payload['document_numerise']["file_content"]) === false) {
1151                  //                  //
1152                  $document_numerise = $json_payload['document_numerise'];                  $document_numerise = $json_payload['document_numerise'];
1153                  $file_content = base64_decode($document_numerise["file_content"]);                  $file_content = base64_decode($document_numerise["file_content"]);
# Line 731  class task extends task_gen { Line 1173  class task extends task_gen {
1173              }              }
1174          }          }
1175    
1176          // Mise à jour du DI          // Valeurs de la tâche
1177          $valF = array(          $valF = array(
1178              'task' => '',              'task' => '',
1179              'type' => $params['val']['type'],              'type' => $params['val']['type'],
# Line 742  class task extends task_gen { Line 1184  class task extends task_gen {
1184              'stream' => $stream,              'stream' => $stream,
1185              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
1186              'category' => $category,              'category' => $category,
1187                'creation_date' => date('Y-m-d'),
1188                'creation_time' => date('H:i:s'),
1189                'last_modification_date' => null,
1190                'last_modification_time' => null,
1191                'comment' => null,
1192          );          );
1193    
1194          // tâche sortante          // Gestion de la mise à jour des tâches sortantes
1195          $typeNonConcerne = array(          $typeNonConcerne = array(
1196              'notification_recepisse',              'notification_recepisse',
1197              'notification_instruction',              'notification_instruction',
# Line 754  class task extends task_gen { Line 1201  class task extends task_gen {
1201          );          );
1202          if ($valF["stream"] == "output"          if ($valF["stream"] == "output"
1203              && ! in_array($valF['type'], $typeNonConcerne)) {              && ! in_array($valF['type'], $typeNonConcerne)) {
1204              // TODO expliquer ce code              // Vérification de l'existance d'une tâche pour l'objet concerné
1205              $task_exists = $this->task_exists($valF['type'], $valF['object_id'], $valF['dossier']);              // La vérification diffère en fonction de certains types de tâche
1206                $search_values_common = array(
1207                    sprintf('state != \'%s\'', self::STATUS_CANCELED),
1208                    sprintf('state != \'%s\'', self::STATUS_DONE),
1209                );
1210                $search_values_others = array(
1211                    sprintf('type = \'%s\'', $valF['type']),
1212                    sprintf('(object_id = \'%s\' OR dossier = \'%s\')', $valF['object_id'], $valF['dossier']),
1213                );
1214                $search_values_specifics = array(
1215                    sprintf('object_id = \'%s\'', $valF['object_id']),
1216                );
1217    
1218                // Recherche multi-critères sur les tâches
1219                // Si l'object id/dossier à des tâches de type $valF['type'] qui lui est associé
1220                // Et que ces tâches ont des statut différents de canceled et done
1221                // Alors on récupère ces tâches
1222                // Sinon return false
1223                $task_exists = $this->task_exists_multi_search(array_merge($search_values_common, $search_values_others));
1224    
1225                // S'il n'existe pas de tâche de type 'modification DI' pour l'object id/dossier
1226              if ($valF['type'] === 'modification_DI' && $task_exists === false) {              if ($valF['type'] === 'modification_DI' && $task_exists === false) {
1227                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);                  // On se réfère à la tâche de type 'creation DI' de l'object id
1228                    $task_exists = $this->task_exists_multi_search(array_merge($search_values_common, $search_values_specifics, array("type = 'creation_DI'")));
1229              }              }
1230                // S'il n'existe pas de tâche de type 'modification DA' pour l'object id/dossier
1231              if ($valF['type'] === 'modification_DA' && $task_exists === false) {              if ($valF['type'] === 'modification_DA' && $task_exists === false) {
1232                  $task_exists = $this->task_exists('creation_DA', $valF['object_id']);                  // On se réfère à la tâche de type 'creation DA' de l'object id
1233                    $task_exists = $this->task_exists_multi_search(array_merge($search_values_common, $search_values_specifics, array("type = 'creation_DA'")));
1234              }              }
1235              if ($valF['type'] === 'ajout_piece') {              if ($valF['type'] === 'ajout_piece') {
1236                  $task_exists = $this->task_exists('ajout_piece', $valF['object_id']);                  // On se réfère à la tâche de type 'ajout piece' de l'object id
1237                    $task_exists = $this->task_exists_multi_search(array_merge($search_values_common, $search_values_specifics, array("type = 'ajout_piece'")));
1238              }              }
1239              if ($valF['type'] === 'creation_consultation') {              if ($valF['type'] === 'creation_consultation') {
1240                  $task_exists = $this->task_exists('creation_consultation', $valF['object_id']);                  // On se réfère à la tâche de type 'creation consultation' de l'object id
1241                    $task_exists = $this->task_exists_multi_search(array_merge($search_values_common, $search_values_specifics, array("type = 'creation_consultation'")));
1242              }              }
1243                // S'il existe une tâche pour l'objet concerné, pas d'ajout de nouvelle
1244                // tâche mais mise à jour de l'existante
1245              if ($task_exists !== false) {              if ($task_exists !== false) {
1246                  $inst_task = $this->f->get_inst__om_dbform(array(                  // Plusieurs tâches pourraient exister, elles sont contôler par ordre croissant
1247                      "obj" => "task",                  foreach ($task_exists as $task) {
1248                      "idx" => $task_exists,                      $inst_task = $this->f->get_inst__om_dbform(array(
1249                  ));                          "obj" => "task",
1250                  $update_state = $inst_task->getVal('state');                          "idx" => $task['task'],
1251                  if (isset($params['update_val']['state']) === true) {                      ));
1252                      $update_state = $params['update_val']['state'];                      $update_state = $inst_task->getVal('state');
1253                  }                      if (isset($params['update_val']['state']) === true) {
1254                  $update_params = array(                          $update_state = $params['update_val']['state'];
1255                      'val' => array(                      }
1256                          'state' => $update_state,                      $object_id = $inst_task->getVal('object_id');
1257                      ),                      if (!empty($valF['object_id'])) {
1258                      'object_id' => $valF['object_id'],                          $object_id = $valF['object_id'];
1259                  );                      }
1260                  return $inst_task->update_task($update_params);                      // Pour être mise à jour, la tâche existante ne doit pas être en cours de traitement
1261                        $task_pending = $inst_task->getVal('state') === self::STATUS_PENDING
1262                            && $update_state === self::STATUS_PENDING
1263                            && $inst_task->getVal('object_id') !== $object_id;
1264                        if ($task_pending === false) {
1265                            $update_params = array(
1266                                'val' => array(
1267                                    'state' => $update_state,
1268                                ),
1269                                'object_id' => $object_id,
1270                            );
1271                            return $inst_task->update_task($update_params);
1272                        }
1273                    }
1274              }              }
1275          }          }
1276          $add = $this->ajouter($valF);          $add = $this->ajouter($valF);
# Line 804  class task extends task_gen { Line 1291  class task extends task_gen {
1291       */       */
1292      public function update_task($params = array()) {      public function update_task($params = array()) {
1293          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
1294          $timestamp_log = $this->get_timestamp_log();  
         if ($timestamp_log === false) {  
             $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);  
             return $this->end_treatment(__METHOD__, false);  
         }  
         // Vérification des object_id précédent en cas de tentative d'appliquer  
         // l'état CANCELED sur la tâche  
         if (isset($params['val']['state']) === true  
             && $params['val']['state'] === self::STATUS_CANCELED) {  
             // Récupération du journal d'activité de la tâche sous forme de tableau  
             // trié par ordre décroissant  
             $log = $timestamp_log;  
             unset($log['creation_date']);  
             krsort($log);  
             // Pour chaque entrée dans le journal d'activité de la tâche :  
             // - vérification de la présence de l'object_id précédent  
             // - vérification que l'object_id précédent existe toujours dans la base de données  
             // - l'object_id est mise à jour avec la valeur de l'object_id précédent  
             // - le state n'est pas modifié  
             // - sortie du traitement dès que le premier object_id précédent existant est trouvé  
             // - si aucun object_id précédent existant n'est trouvé alors ni le state, ni l'object_id n'est modifiés  
             foreach ($log as $key => $value) {  
                 //  
                 if (isset($value['prev_object_id']) === true  
                     && $this->getVal('object_id') !== $value['prev_object_id']) {  
                     // Récupère la liste des tables potentielles pour un type de tâche  
                     $tables = $this->get_tables_by_task_type($this->getVal('type'), $this->getVal('stream'));  
                     foreach ($tables as $table) {  
                         // Vérifie s'il y a un ou aucun résultat  
                         $query = sprintf('  
                             SELECT COUNT(%2$s)  
                             FROM %1$s%2$s  
                             WHERE %2$s::CHARACTER VARYING = \'%3$s\'  
                             ',  
                             DB_PREFIXE,  
                             $table,  
                             $value['prev_object_id']  
                         );  
                         $res = $this->f->get_one_result_from_db_query($query, true);  
                         if ($res['code'] === 'KO') {  
                             return $this->end_treatment(__METHOD__, false);  
                         }  
                         // Affectation des valeurs et sortie de la boucle  
                         if ($res['result'] == '1') {  
                             $params['object_id'] = $value['prev_object_id'];  
                             $params['val']['state'] = $this->getVal('state');  
                             break;  
                         }  
                     }  
                     // Sortie de la boucle si les valeurs sont affectées  
                     if (isset($params['object_id']) === true  
                         && $params['object_id'] === $value['prev_object_id']) {  
                         //  
                         break;  
                     }  
                 }  
             }  
         }  
         // Mise à jour du journal d'activité de la tâche  
         array_push($timestamp_log, array(  
             'modification_date' => date('Y-m-d H:i:s'),  
             'state' => $params['val']['state'],  
             'prev_state' => $this->getVal('state'),  
             'object_id' => isset($params['object_id']) == true ? $params['object_id'] : $this->getVal('object_id'),  
             'prev_object_id' => $this->getVal('object_id'),  
         ));  
         $timestamp_log = json_encode($timestamp_log);  
1295          // Mise à jour de la tâche          // Mise à jour de la tâche
1296          $valF = array(          $valF = array(
1297              'task' => $this->getVal($this->clePrimaire),              'task' => $this->getVal($this->clePrimaire),
1298              'type' => $this->getVal('type'),              'type' => $this->getVal('type'),
1299              'timestamp_log' => $timestamp_log,              'timestamp_log' => '[]',
1300              'state' => $params['val']['state'],              'state' => $params['val']['state'],
1301              'object_id' => isset($params['object_id']) == true ? $params['object_id'] : $this->getVal('object_id'),              'object_id' => isset($params['object_id']) == true ? $params['object_id'] : $this->getVal('object_id'),
1302              'stream' => $this->getVal('stream'),              'stream' => $this->getVal('stream'),
1303              'dossier' => $this->getVal('dossier'),              'dossier' => $this->getVal('dossier'),
1304              'json_payload' => $this->getVal('json_payload'),              'json_payload' => $this->getVal('json_payload'),
1305              'category' => $this->getVal('category'),              'category' => $this->getVal('category'),
1306                'creation_date' => $this->getVal('creation_date'),
1307                'creation_time' => $this->getVal('creation_time'),
1308                'last_modification_date' => date('Y-m-d'),
1309                'last_modification_time' => date('H:i:s'),
1310                'comment' => isset($params['comment']) == true ? $params['comment'] : $this->getVal('comment'),
1311          );          );
1312          $update = $this->modifier($valF);          $update = $this->modifier($valF);
1313          if ($update === false) {          if ($update === false) {
# Line 930  class task extends task_gen { Line 1356  class task extends task_gen {
1356    
1357      protected function view_tab_json() {      protected function view_tab_json() {
1358          $where = '';          $where = '';
1359          if ($this->f->get_submitted_get_value('state') !== null          $category = null;
1360              && $this->f->get_submitted_get_value('state') !== '') {          // Liste des paramètres possibles pour la recherche des tâches
1361              //          $params = array(
1362              $where_or_and = 'WHERE';              'task',
1363              if ($where !== '') {              'type',
1364                  $where_or_and = 'AND';              'state',
1365              }              'object_id',
1366              $where .= sprintf(' %s state = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('state'));              'dossier',
1367          }              'stream',
1368          if ($this->f->get_submitted_get_value('category') !== null              'category',
1369              && $this->f->get_submitted_get_value('category') !== '') {              'lien_id_interne_uid_externe',
1370              //              'object',
1371              $where_or_and = 'WHERE';              'external_uid',
1372              if ($where !== '') {          );
1373                  $where_or_and = 'AND';          // Pour chaque paramètre possible, vérification de son existance et de sa
1374            // valeur pour compléter la requête de recherche
1375            foreach ($params as $param) {
1376                //
1377                if ($this->f->get_submitted_get_value($param) !== null
1378                    && $this->f->get_submitted_get_value($param) !== '') {
1379                    // Condition spécifique au champ 'category'
1380                    if ($param === 'category') {
1381                        $category = $this->f->get_submitted_get_value('category');
1382                    }
1383                    //
1384                    $where_or_and = 'WHERE';
1385                    if ($where !== '') {
1386                        $where_or_and = 'AND';
1387                    }
1388                    $table = 'task';
1389                    if ($param === 'lien_id_interne_uid_externe'
1390                        || $param === 'object'
1391                        || $param === 'external_uid') {
1392                        //
1393                        $table = 'lien_id_interne_uid_externe';
1394                    }
1395                    $where .= sprintf(' %s %s.%s = \'%s\' ', $where_or_and, $table, $param, $this->f->get_submitted_get_value($param));
1396              }              }
             $where .= sprintf(' %s category = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('category'));  
1397          }          }
1398            //
1399          $query = sprintf('          $query = sprintf('
1400              SELECT              SELECT
1401                  *                  task.*
1402              FROM %1$stask              FROM %1$stask
1403                LEFT JOIN %1$slien_id_interne_uid_externe
1404                    ON task.object_id = lien_id_interne_uid_externe.object_id
1405                    AND task.category = lien_id_interne_uid_externe.category
1406              %2$s              %2$s
1407              ORDER BY task ASC              ORDER BY task ASC
1408              ',              ',
1409              DB_PREFIXE,              DB_PREFIXE,
1410              $where              $where
1411          );          );
1412          $res = $this->f->get_all_results_from_db_query($query, true);          $res = $this->f->get_all_results_from_db_query(
1413                $query,
1414                array(
1415                    "origin" => __METHOD__,
1416                    "force_return" => true,
1417                )
1418            );
1419          if ($res['code'] === 'KO') {          if ($res['code'] === 'KO') {
1420              return false;              return false;
1421          }          }
1422          $list_tasks = array();          $list_tasks = array();
1423          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
1424              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);              unset($task['timestamp_log']);
1425              $task['dossier'] = $task['dossier'];              unset($task['json_payload']);
1426              if ($task['type'] === 'ajout_piece') {              if ($task['type'] === 'ajout_piece') {
1427                  $val_dn = $this->get_document_numerise_data($task['object_id']);                  $val_dn = $this->get_document_numerise_data($task['object_id']);
1428              }              }
1429              if ($task['stream'] === 'output') {              if ($task['stream'] === 'output') {
1430                  $task['external_uids'] = $this->get_all_external_uids($task['dossier']);                  $task['external_uids'] = array_merge(
1431                        $this->get_all_external_uids($task['dossier'], array(), $category !== null ? $category : $task['category']),
1432                        $this->get_all_external_uids($task['object_id'], array(), $category !== null ? $category : $task['category'])
1433                    );
1434              }              }
1435              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
1436          }          }
1437          printf(json_encode($list_tasks));          echo(json_encode($list_tasks));
1438      }      }
1439    
1440      protected function get_dossier_data(string $dossier) {      protected function get_dossier_data(string $dossier) {
# Line 1076  class task extends task_gen { Line 1536  class task extends task_gen {
1536              if (isset($val_dt['tax_ext_pret']) === true              if (isset($val_dt['tax_ext_pret']) === true
1537                  && $val_dt['tax_ext_pret'] === 'f') {                  && $val_dt['tax_ext_pret'] === 'f') {
1538                  //                  //
1539                  $val_dt['tax_su_princ_surf1'] = $val_dt['tax_surf_tot_cstr'];                  $val_dt['tax_su_princ_surf1'] = isset($val_dt['tax_surf_tot_cstr']) === true ? $val_dt['tax_surf_tot_cstr'] : '';
1540                  $val_dt['tax_su_princ_surf_stat1'] = $val_dt['tax_surf_loc_stat'];                  $val_dt['tax_su_princ_surf_stat1'] = isset($val_dt['tax_surf_loc_stat']) === true ? $val_dt['tax_surf_loc_stat'] : '';
1541              }              }
1542              if (isset($val_dt['tax_ext_pret']) === true              if (isset($val_dt['tax_ext_pret']) === true
1543                  && $val_dt['tax_ext_pret'] === 't') {                  && $val_dt['tax_ext_pret'] === 't') {
# Line 1086  class task extends task_gen { Line 1546  class task extends task_gen {
1546                      if (preg_match('/[pP].*[lL].*[aA].*[iI]/', $val_dt['tax_ext_desc']) === 1                      if (preg_match('/[pP].*[lL].*[aA].*[iI]/', $val_dt['tax_ext_desc']) === 1
1547                          || preg_match('/[lL].*[lL].*[tT].*[sS]/', $val_dt['tax_ext_desc']) === 1) {                          || preg_match('/[lL].*[lL].*[tT].*[sS]/', $val_dt['tax_ext_desc']) === 1) {
1548                          //                          //
1549                          $val_dt['tax_su_princ_surf2'] = $val_dt['tax_surf_tot_cstr'];                          $val_dt['tax_su_princ_surf2'] = isset($val_dt['tax_surf_tot_cstr']) === true ? $val_dt['tax_surf_tot_cstr'] : '';
1550                          $val_dt['tax_su_princ_surf_stat2'] = $val_dt['tax_surf_loc_stat'];                          $val_dt['tax_su_princ_surf_stat2'] = isset($val_dt['tax_surf_loc_stat']) === true ? $val_dt['tax_surf_loc_stat'] : '';
1551                      }                      }
1552                      // if (preg_match('/[pP].*[tT].*[zZ]/', $val_dt['tax_ext_desc']) === 1) {                      // if (preg_match('/[pP].*[tT].*[zZ]/', $val_dt['tax_ext_desc']) === 1) {
1553                      //     $val_dt['tax_su_princ_surf4'] = $val_dt['tax_surf_tot_cstr'];                      //     $val_dt['tax_su_princ_surf4'] = $val_dt['tax_surf_tot_cstr'];
# Line 1131  class task extends task_gen { Line 1591  class task extends task_gen {
1591              ',              ',
1592              DB_PREFIXE              DB_PREFIXE
1593          );          );
1594          $res = $this->f->get_all_results_from_db_query($query, true);          $res = $this->f->get_all_results_from_db_query(
1595                $query,
1596                array(
1597                    "origin" => __METHOD__,
1598                    "force_return" => true,
1599                )
1600            );
1601          if ($res['code'] === 'KO') {          if ($res['code'] === 'KO') {
1602              return array();              return array();
1603          }          }
# Line 1142  class task extends task_gen { Line 1608  class task extends task_gen {
1608          return $result;          return $result;
1609      }      }
1610    
1611      protected function get_external_uid($fk_idx, string $fk_idx_2) {      protected function get_external_uid($fk_idx, string $fk_idx_2, $fk_idx_3 = PLATAU, $order_asc_desc = 'DESC') {
1612          $inst_external_uid = $this->f->get_inst__by_other_idx(array(          $inst_external_uid = $this->f->get_inst__by_other_idx(array(
1613              "obj" => "lien_id_interne_uid_externe",              "obj" => "lien_id_interne_uid_externe",
1614              "fk_field" => 'object_id',              "fk_field" => 'object_id',
1615              "fk_idx" => $fk_idx,              "fk_idx" => $fk_idx,
1616              "fk_field_2" => 'object',              "fk_field_2" => 'object',
1617              "fk_idx_2" => $fk_idx_2,              "fk_idx_2" => $fk_idx_2,
1618                "fk_field_3" => 'category',
1619                "fk_idx_3" => $fk_idx_3,
1620                "order_field" => 'lien_id_interne_uid_externe',
1621                "order_asc_desc" => $order_asc_desc,
1622          ));          ));
1623          return $inst_external_uid->getVal('external_uid');          return $inst_external_uid->getVal('external_uid');
1624      }      }
1625    
1626      protected function get_all_external_uids($fk_idx, $link_objects = array()) {      protected function get_all_external_uids($fk_idx, $link_objects = array(), $category=PLATAU) {
1627          if (count($link_objects) == 0) {          if (count($link_objects) == 0) {
1628              $link_objects = $this->get_list_distinct_objects_external_link();              $link_objects = $this->get_list_distinct_objects_external_link();
1629          }          }
1630          $val_external_uid = array();          $val_external_uid = array();
1631          foreach ($link_objects as $link_object) {          foreach ($link_objects as $link_object) {
1632              $external_uid = $this->get_external_uid($fk_idx, $link_object);              $external_uid = $this->get_external_uid($fk_idx, $link_object, $category);
1633              if ($external_uid !== '' && $external_uid !== null) {              if ($external_uid !== '' && $external_uid !== null) {
1634                  $val_external_uid[$link_object] = $external_uid;                  $val_external_uid[$link_object] = $external_uid;
1635              }              }
# Line 1266  class task extends task_gen { Line 1736  class task extends task_gen {
1736          return $val_instruction;          return $val_instruction;
1737      }      }
1738    
1739    
1740      /**      /**
1741       * Récupère les informations       * Récupère les informations pour les notifications ayant plusieurs annexe
1742      */      */
1743      protected function get_instruction_notification_data($category, $type = '', $extra_params = array()) {      protected function get_instruction_notification_data($category, $type = '', $extra_params = array()) {
1744          $val_in = null;          $val_in = null;
# Line 1277  class task extends task_gen { Line 1748  class task extends task_gen {
1748              $idx = $extra_params['with-id'];              $idx = $extra_params['with-id'];
1749          }          }
1750    
1751            // Récupération du type de notification. Le type est nécessaire pour récupérer
1752            // le message et le titre de notification.
1753            $typeNotification = $this->getVal('type');
1754            if (isset($this->valF['type'])) {
1755                $typeNotification = $this->valF['type'];
1756            }
1757    
1758          // récupére les données à intégrer à la payload          // récupére les données à intégrer à la payload
1759          $inst_in = $this->f->get_inst__om_dbform(array(          $inst_in = $this->f->get_inst__om_dbform(array(
1760              "obj" => "instruction_notification",              "obj" => "instruction_notification",
# Line 1294  class task extends task_gen { Line 1772  class task extends task_gen {
1772                      "idx" => $inst_in->getVal('instruction'),                      "idx" => $inst_in->getVal('instruction'),
1773                  ));                  ));
1774                  $collectivite_id = $inst_instruction->get_dossier_instruction_om_collectivite($inst_instruction->getVal('dossier'));                  $collectivite_id = $inst_instruction->get_dossier_instruction_om_collectivite($inst_instruction->getVal('dossier'));
1775                  $phrase_type_notification = array();                  $phrase_type_notification = $this->f->get_notification_parametre_courriel_type($collectivite_id, $typeNotification);
                 $phrase_type_notification = $this->f->get_notification_parametre_courriel_type($collectivite_id);  
1776                  $val_in['parametre_courriel_type_titre'] = $phrase_type_notification['parametre_courriel_type_titre'];                  $val_in['parametre_courriel_type_titre'] = $phrase_type_notification['parametre_courriel_type_titre'];
1777                  $val_in['parametre_courriel_type_message'] = $phrase_type_notification['parametre_courriel_type_message'];                  $val_in['parametre_courriel_type_message'] = $phrase_type_notification['parametre_courriel_type_message'];
1778              }              }
1779    
1780              // Récupération des liens vers les documents et de l'id de l'instruction              // Récupération des liens vers les documents et des id et type des annexes
1781              // de l'annexe              $infoDocNotif = $inst_in->getInfosDocumentsNotif($inst_in->getVal($inst_in->clePrimaire), $category);
1782              $infoDocNotif = $inst_in->getInfosDocumentsNotif($inst_in->getVal($inst_in->clePrimaire));              $cle = $category == PORTAL ? 'path' : 'lien_telechargement_document';
1783              $val_in['lien_telechargement_document'] = $infoDocNotif['document']['lien'];              $val_in[$cle] = $infoDocNotif['document']['path'];
1784              $val_in['lien_telechargement_annexe'] = $infoDocNotif['annexe']['lien'];              $val_in['annexes'] = $infoDocNotif['annexes'];
             $val_in['instruction_annexe'] = $infoDocNotif['annexe']['id_instruction'];  
1785          }          }
   
1786          return $val_in;          return $val_in;
1787      }      }
1788    
1789      /**      /**
1790       * Récupère les informations pour les notifications ayant plusieurs annexe       * Récupère les informations concernant la lettre au pétitionnaire.
1791      */       *
1792      protected function get_instruction_notification_data_annexe_multiple($category, $type = '', $extra_params = array()) {       * @param string identifiant du dossier
1793          $val_in = null;       * @param string type de tâche
1794         * @param array paramètre supplémentaire permettant de récupérer les informations
1795          $idx = null;       *
1796          if ($type === 'with-id') {       * @return array information concernant la lettre au pétitionnaire
1797              $idx = $extra_params['with-id'];       */
1798        protected function get_lettre_petitionnaire_data($dossier, $type, $extra_params = array()) {
1799            // Si la date limite de notification n'a pas été dépassé le type de lettre est 1
1800            // Si la date a été dépassé et qu'il s'agit d'une demande de pièce le type est 3
1801            // Si la date a été dépassé et qu'il s'agit d'une prolongation le type est 4
1802            // Le type de document dépend du type de pièce
1803            $nomTypeLettre = '';
1804            $nomTypeDocument = '';
1805            if ($type === 'lettre_incompletude') {
1806                $nomTypeLettre = '3';
1807                $nomTypeDocument = '4';
1808            } elseif ($type === 'lettre_majoration') {
1809                $nomTypeLettre = '4';
1810                $nomTypeDocument = '6';
1811          }          }
1812    
1813          // récupére les données à intégrer à la payload          $inst_di = $this->f->get_inst__om_dbform(array(
1814          $inst_in = $this->f->get_inst__om_dbform(array(              "obj" => "dossier",
1815              "obj" => "instruction_notification",              "idx" => $dossier,
             "idx" => $idx,  
1816          ));          ));
1817          if (count($inst_in->val) > 0) {          $date_limite_notification = DateTime::createFromFormat('Y-m-d', $inst_di->getVal('date_notification_delai'));
1818              $val_in = $inst_in->get_json_data();          $aujourdhui = new DateTime();
1819            if (! $date_limite_notification instanceof DateTime) {
1820              $val_in['parametre_courriel_type_titre'] = '';              $nomTypeLettre = '';
1821              $val_in['parametre_courriel_type_message'] = '';              $nomTypeDocument = '';
1822              // Récupération du message et du titre          } elseif ($aujourdhui < $date_limite_notification) {
1823              if ($category === 'mail') {              $nomTypeLettre = '1';
1824                  $inst_instruction = $this->f->get_inst__om_dbform(array(              $nomTypeDocument = '3';
                     "obj" => "instruction",  
                     "idx" => $inst_in->getVal('instruction'),  
                 ));  
                 $collectivite_id = $inst_instruction->get_dossier_instruction_om_collectivite($inst_instruction->getVal('dossier'));  
                 $phrase_type_notification = array();  
                 $phrase_type_notification = $this->f->get_notification_parametre_courriel_type($collectivite_id);  
                 $val_in['parametre_courriel_type_titre'] = $phrase_type_notification['parametre_courriel_type_titre'];  
                 $val_in['parametre_courriel_type_message'] = $phrase_type_notification['parametre_courriel_type_message'];  
             }  
   
             // Récupération des liens vers les documents et de l'id de l'instruction  
             // de l'annexe  
             $infoDocNotif = $inst_in->getInfosDocumentsNotifAnnexeMultiple($inst_in->getVal($inst_in->clePrimaire));  
             $val_in['lien_telechargement_document'] = $infoDocNotif['document']['lien'];  
             $val_in['annexes'] = $infoDocNotif['annexes'];  
1825          }          }
1826    
1827          return $val_in;          return array(
1828                'nomEtatLettre' => '3',
1829                'nomModaliteNotifMetier' => '4',
1830                'nomTypeLettre' => $nomTypeLettre,
1831                'nomTypeDocument' => $nomTypeDocument
1832            );
1833      }      }
1834    
1835      protected function sort_instruction_data(array $values, array $res) {      protected function sort_instruction_data(array $values, array $res) {
# Line 1399  class task extends task_gen { Line 1876  class task extends task_gen {
1876          if ($instruction === null) {          if ($instruction === null) {
1877              return false;              return false;
1878          }          }
1879          $query = sprintf('          $qres = $this->f->get_one_result_from_db_query(
1880              SELECT demande_type.dossier_instruction_type              sprintf(
1881              FROM %1$sdemande                  'SELECT
1882                  INNER JOIN %1$sdemande_type ON demande.demande_type = demande_type.demande_type                      demande_type.dossier_instruction_type
1883              WHERE demande.instruction_recepisse = %2$s                  FROM
1884              ',                      %1$sdemande
1885              DB_PREFIXE,                          INNER JOIN %1$sdemande_type
1886              $instruction                              ON demande.demande_type = demande_type.demande_type
1887          );                  WHERE
1888          $res = $this->f->get_one_result_from_db_query(                      demande.instruction_recepisse = %2$s',
1889              $query,                  DB_PREFIXE,
1890              true                  intval($instruction)
1891                ),
1892                array(
1893                    "origin" => __METHOD__,
1894                    "force_return" => true,
1895                )
1896          );          );
1897          if ($res['code'] === 'KO') {          if ($qres["code"] !== "OK") {
1898              return null;              return null;
1899          }          }
1900          if ($res['result'] === '') {          if ($qres["result"] === "") {
1901              return true;              return true;
1902          }          }
1903          return false;          return false;
# Line 1460  class task extends task_gen { Line 1942  class task extends task_gen {
1942          ));          ));
1943          $ad = $inst_di->getVal('avis_decision');          $ad = $inst_di->getVal('avis_decision');
1944          $val_ad = array();          $val_ad = array();
1945          if ($ad !== null) {          if ($ad !== null && trim($ad) !== '') {
1946              $inst_ad = $this->f->get_inst__om_dbform(array(              $inst_ad = $this->f->get_inst__om_dbform(array(
1947                  "obj" => "avis_decision",                  "obj" => "avis_decision",
1948                  "idx" => $ad,                  "idx" => $ad,
# Line 1522  class task extends task_gen { Line 2004  class task extends task_gen {
2004    
2005      protected function view_form_json($in_field = false) {      protected function view_form_json($in_field = false) {
2006          //          //
2007          if ($this->f->get_submitted_post_value('valid') === null          $check_state = isset($this->valF['state']) === true ? $this->valF['state'] : $this->getVal('state');
2008              && $this->getVal('state') !== self::STATUS_CANCELED) {          if ($check_state !== self::STATUS_CANCELED) {
2009              // Liste des valeurs à afficher              // Liste des valeurs à afficher
2010              $val = array();              $val = array();
2011              //              //
# Line 1531  class task extends task_gen { Line 2013  class task extends task_gen {
2013              foreach ($val_task as $key => $value) {              foreach ($val_task as $key => $value) {
2014                  $val_task[$key] = strip_tags($value);                  $val_task[$key] = strip_tags($value);
2015              }              }
2016              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);  
2017              $val['task'] = $val_task;              // Vérifie pour les tâches dont l'affichage de la payload est calculée si l'objet
2018              //              // de référence de la tâche existe.
2019              if ($this->getVal('type') === 'creation_DA'              $objectRefExist = true;
2020                  || $this->getVal('type') === 'modification_DA') {              if ($val_task['stream'] === 'output'
2021                  //                  && (empty($val_task['json_payload']) || $val_task['json_payload'] === '{}')) {
2022                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));                  $objectRefExist = $this->does_referenced_object_exist(
2023                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');                      $val_task['object_id'],
2024                  $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);                      $val_task['type']
2025                  $val_external_uid = array();                  );
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier_autorisation']['dossier_autorisation'], 'dossier_autorisation');  
                 $val['external_uids'] = $val_external_uid;  
             }  
             //  
             if ($this->getVal('type') === 'creation_DI'  
                 || $this->getVal('type') === 'modification_DI'  
                 || $this->getVal('type') === 'depot_DI') {  
                 //  
                 $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));  
                 $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_instruction');  
                 $val['demandeur'] = $this->get_demandeurs_data($val['dossier']['dossier']);  
                 $architecte = isset($val['donnees_techniques']['architecte']) === true ? $val['donnees_techniques']['architecte'] : null;  
                 $val['architecte'] = $this->get_architecte_data($architecte);  
                 $val['dossier_parcelle'] = $this->get_parcelles_data('dossier', $val['dossier']['dossier']);  
                 $val_external_uid = array();  
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');  
                 $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');  
                 $val['external_uids'] = $val_external_uid;  
             }  
             //  
             if ($this->getVal('type') === 'qualification_DI') {  
                 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));  
                 $val_external_uid = array();  
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');  
                 $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');  
                 $val['external_uids'] = $val_external_uid;  
             }  
             //  
             if ($this->getVal('type') === 'ajout_piece') {  
                 $val['document_numerise'] = $this->get_document_numerise_data($this->getVal('object_id'));  
                 $val['dossier'] = $this->get_dossier_data($val['document_numerise']['dossier']);  
                 $val_external_uid = array();  
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');  
                 $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');  
                 $val_external_uid['document_numerise'] = $this->get_external_uid($val['document_numerise']['document_numerise'], 'document_numerise');  
                 $val['external_uids'] = $val_external_uid;  
             }  
             //  
             if ($this->getVal('type') === 'decision_DI') {  
                 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));  
                 $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));  
                 $val['instruction']['final'] = 't';  
                 if (isset($val['instruction']['signataire_arrete']) === true) {  
                     $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);  
                 }  
                 $val_external_uid = array();  
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');  
                 $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');  
                 $val['external_uids'] = $val_external_uid;  
             }  
             //  
             if ($this->getVal('type') === 'incompletude_DI') {  
                 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));  
                 $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));  
                 $val_external_uid = array();  
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');  
                 $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');  
                 $val['external_uids'] = $val_external_uid;  
             }  
             //  
             if ($this->getVal('type') === 'completude_DI') {  
                 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));  
                 $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));  
                 $val_external_uid = array();  
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');  
                 $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');  
                 $val['external_uids'] = $val_external_uid;  
             }  
             //  
             if ($this->getVal('type') === 'pec_metier_consultation') {  
                 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));  
                 $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));  
                 $val_external_uid = array();  
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');  
                 $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');  
                 $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');  
                 $val['external_uids'] = $val_external_uid;  
             }  
             //  
             if ($this->getVal('type') === 'avis_consultation') {  
                 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));  
                 $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));  
                 $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));  
                 if (isset($val['instruction']['signataire_arrete']) === true) {  
                     $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);  
                 }  
                 $val_external_uid = array();  
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');  
                 $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');  
                 $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');  
                 $val['external_uids'] = $val_external_uid;  
             }  
             // XXX WIP  
             if ($this->getVal('type') === 'creation_consultation') {  
                 //  
                 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));  
                 $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));  
                 $val['service'] = $this->get_service_data($val['consultation']['service']);  
                 $val_external_uid = array();  
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');  
                 $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');  
                 $val['external_uids'] = $val_external_uid;  
2026              }              }
2027              //  
2028              if ($this->getVal('type') === 'envoi_CL') {              // Si l'objet de référence n'existe pas log le numéro de la tâche concerné et
2029                // renvoie une payload contenant le message d'erreur.
2030                // Sinon constitue la payload du json.
2031                if (! $objectRefExist) {
2032                    $this->f->addToLog(
2033                        sprintf(
2034                            __('Impossible de récupérer la payload car l\'objet de réference n\'existe pas pour la tâche : %s'),
2035                            $val_task['task']
2036                        ),
2037                        DEBUG_MODE
2038                    );
2039                    $val = __('Impossible de recuperer la payload car l\'objet de reference n\'existe pas.');
2040                } else {
2041    
2042                    $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);
2043                    unset($val_task['timestamp_log_hidden']);
2044                    $val['task'] = $val_task;
2045                  //                  //
2046                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));                  if ($this->getVal('type') === 'creation_DA'
2047                  $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));                      || $this->getVal('type') === 'modification_DA') {
2048                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($val['dossier']['dossier_autorisation']);                      //
2049                  $val_external_uid = array();                      $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));
2050                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                      $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');
2051                  $val_external_uid['dossier'] = $this->get_external_uid($this->getVal('dossier'), 'dossier');                      $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);
2052                  $val_external_uid['decision'] = $this->get_external_uid($this->getVal('object_id'), 'instruction');                      $val_external_uid = array();
2053                  if ($val_external_uid['decision'] === null) {                      $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier_autorisation']['dossier_autorisation'], 'dossier_autorisation');
2054                      $inst_instruction = $this->f->get_inst__om_dbform(array(                      $val['external_uids'] = $val_external_uid;
                         "obj" => "instruction",  
                         "idx" => $this->getVal('object_id'),  
                     ));  
                     $val_external_uid['decision'] = $this->get_external_uid($inst_instruction->get_related_instructions_next('retour_signature'), 'instruction');  
2055                  }                  }
2056                  $val['external_uids'] = $val_external_uid;                  //
2057              }                  if ($this->getVal('type') === 'creation_DI'
2058              //                      || $this->getVal('type') === 'modification_DI'
2059              if ($this->getVal('type') === 'notification_instruction'                      || $this->getVal('type') === 'depot_DI') {
2060                  || $this->getVal('type') === 'notification_recepisse'                      //
2061                  || $this->getVal('type') === 'notification_decision') {                      $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
2062                  //                      $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_instruction');
2063                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));                      $val['demandeur'] = $this->get_demandeurs_data($val['dossier']['dossier']);
2064                  $dossier_id = isset($val['dossier']['dossier']) === true ? $val['dossier']['dossier'] : null;                      $architecte = isset($val['donnees_techniques']['architecte']) === true ? $val['donnees_techniques']['architecte'] : null;
2065                  $val['demandeur'] = $this->get_demandeurs_data($dossier_id);                      $val['architecte'] = $this->get_architecte_data($architecte);
2066                  $val['instruction_notification'] = $this->get_instruction_notification_data($this->getVal('category'), 'with-id', array('with-id' => $this->getVal('object_id')));                      $val['dossier_parcelle'] = $this->get_parcelles_data('dossier', $val['dossier']['dossier']);
2067                  $instruction_id = isset($val['instruction_notification']['instruction']) === true ? $val['instruction_notification']['instruction'] : null;                      $val_external_uid = array();
2068                  $instruction_annexe = isset($val['instruction_notification']['instruction_annexe']) === true ? $val['instruction_notification']['instruction_annexe'] : null;                      $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2069                  $val['instruction'] = $this->get_instruction_data($dossier_id, 'with-id', array('with-id' => $instruction_id));                      $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2070                  // Précise qu'il s'agit d'une instruction final si l'instruction est liée à une                      $val['external_uids'] = $val_external_uid;
2071                  // demande dont le type ne génère pas de dossier                  }
2072                  if ($this->is_demande_instruction_recepisse_without_dossier($instruction_id) === true) {                  //
2073                      $val['instruction']['final'] = 't';                  if ($this->getVal('type') === 'qualification_DI') {
2074                        $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2075                        $val_external_uid = array();
2076                        $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2077                        $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2078                        $val['external_uids'] = $val_external_uid;
2079                  }                  }
2080                  //                  //
2081                  if ($instruction_annexe != '') {                  if ($this->getVal('type') === 'ajout_piece') {
2082                      $val['instruction_annexe'] = $this->get_instruction_data($dossier_id, 'with-id', array('with-id' => $instruction_annexe));                      $val['document_numerise'] = $this->get_document_numerise_data($this->getVal('object_id'));
2083                        $val['dossier'] = $this->get_dossier_data($val['document_numerise']['dossier']);
2084                        $val_external_uid = array();
2085                        $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2086                        $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2087                        $val_external_uid['piece'] = $this->get_external_uid($val['document_numerise']['document_numerise'], 'piece');
2088                        $val['external_uids'] = $val_external_uid;
2089                  }                  }
2090                  $val_external_uid = array();                  //
2091                  // Affiche l'identifiant externe lié à l'instruction si cette combinaison existe, sinon celui lié au dossier                  if ($this->getVal('type') === 'decision_DI') {
2092                  $val_external_uid['demande'] = $this->get_external_uid($instruction_id, 'demande') !== '' ? $this->get_external_uid($instruction_id, 'demande') : $this->get_external_uid($dossier_id, 'demande');                      $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2093                  $val['external_uids'] = $val_external_uid;                      $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
             }  
             if ($this->getVal('type') === 'notification_service_consulte'  
                 || $this->getVal('type') === 'notification_tiers_consulte') {  
                 //  
                 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));  
                 $dossier_id = isset($val['dossier']['dossier']) === true ? $val['dossier']['dossier'] : null;  
                 $val['demandeur'] = $this->get_demandeurs_data($dossier_id);  
                 $val['instruction_notification'] = $this->get_instruction_notification_data_annexe_multiple($this->getVal('category'), 'with-id', array('with-id' => $this->getVal('object_id')));  
                 $instruction_id = isset($val['instruction_notification']['instruction']) === true ? $val['instruction_notification']['instruction'] : null;  
                 $instruction_annexes = isset($val['instruction_notification']['annexes']) === true ? $val['instruction_notification']['annexes'] : null;  
                 $val['instruction'] = $this->get_instruction_data($dossier_id, 'with-id', array('with-id' => $instruction_id));  
                 // Précise qu'il s'agit d'une instruction final si l'instruction est liée à une  
                 // demande dont le type ne génère pas de dossier  
                 if ($this->is_demande_instruction_recepisse_without_dossier($instruction_id) === true) {  
2094                      $val['instruction']['final'] = 't';                      $val['instruction']['final'] = 't';
2095                        if (isset($val['instruction']['signataire_arrete']) === true) {
2096                            $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
2097                        }
2098                        $val_external_uid = array();
2099                        $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2100                        $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2101                        $val['external_uids'] = $val_external_uid;
2102                  }                  }
2103                  //                  //
2104                  if (is_array($instruction_annexes) && $instruction_annexes != array()) {                  if ($this->getVal('type') === 'incompletude_DI') {
2105                      $val['instruction_annexe'] = array();                      $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2106                      $numAnnexe = 0;                      $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
2107                      foreach ($instruction_annexes as $annexe) {                      $val_external_uid = array();
2108                          if ($annexe['document_type'] === 'instruction') {                      $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2109                              $val['instruction_annexe']['annexe_'.$numAnnexe++] = $this->get_instruction_data($dossier_id, 'with-id', array('with-id' => $annexe['document_id']));                      $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2110                          } elseif ($annexe['document_type'] === 'consultation') {                      $val['external_uids'] = $val_external_uid;
2111                              $val['instruction_annexe']['annexe_'.$numAnnexe++] = $this->get_consultation_data($annexe['document_id']);                  }
2112                          }                  //
2113                    if ($this->getVal('type') === 'completude_DI') {
2114                        $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2115                        $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
2116                        $val_external_uid = array();
2117                        $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2118                        $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2119                        $val['external_uids'] = $val_external_uid;
2120                    }
2121                    //
2122                    if ($this->getVal('type') === 'lettre_incompletude'
2123                        || $this->getVal('type') === 'lettre_majoration') {
2124                        $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2125                        $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
2126                        $val['lettre_petitionnaire'] = $this->get_lettre_petitionnaire_data($val['dossier']['dossier'], $this->getVal('type'));
2127                        $val_external_uid = array();
2128                        $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2129                        $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2130                        $val['external_uids'] = $val_external_uid;
2131                    }
2132                    //
2133                    if ($this->getVal('type') === 'pec_metier_consultation') {
2134                        $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2135                        $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
2136                        $val_external_uid = array();
2137                        $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2138                        $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2139                        $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
2140                        $val['external_uids'] = $val_external_uid;
2141                    }
2142                    //
2143                    if ($this->getVal('type') === 'avis_consultation') {
2144                        $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2145                        $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
2146                        $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
2147                        if (isset($val['instruction']['signataire_arrete']) === true) {
2148                            $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
2149                      }                      }
2150                        $val_external_uid = array();
2151                        $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2152                        $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2153                        $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
2154                        $val_external_uid['avis_dossier_consultation'] = $this->get_external_uid($this->getVal('object_id'), 'avis_dossier_consultation');
2155                        $val['external_uids'] = $val_external_uid;
2156                    }
2157                    // XXX WIP
2158                    if ($this->getVal('type') === 'creation_consultation') {
2159                        //
2160                        $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2161                        $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
2162                        $val['service'] = $this->get_service_data($val['consultation']['service']);
2163                        $val_external_uid = array();
2164                        $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2165                        $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2166                        $val['external_uids'] = $val_external_uid;
2167                    }
2168                    //
2169                    if ($this->getVal('type') === 'envoi_CL') {
2170                        //
2171                        $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2172                        $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
2173                        $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($val['dossier']['dossier_autorisation']);
2174                        $val_external_uid = array();
2175                        $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2176                        $val_external_uid['dossier'] = $this->get_external_uid($this->getVal('dossier'), 'dossier');
2177                        $val_external_uid['decision'] = $this->get_external_uid($this->getVal('object_id'), 'instruction');
2178                        if ($val_external_uid['decision'] === '') {
2179                            $inst_instruction = $this->f->get_inst__om_dbform(array(
2180                                "obj" => "instruction",
2181                                "idx" => $this->getVal('object_id'),
2182                            ));
2183                            $val_external_uid['decision'] = $this->get_external_uid($inst_instruction->get_related_instructions_next('retour_signature'), 'instruction');
2184                        }
2185                        $val['external_uids'] = $val_external_uid;
2186                    }
2187                    if ($this->getVal('type') === 'notification_instruction'
2188                        || $this->getVal('type') === 'notification_recepisse'
2189                        || $this->getVal('type') === 'notification_decision'
2190                        || $this->getVal('type') === 'notification_service_consulte'
2191                        || $this->getVal('type') === 'notification_tiers_consulte') {
2192                        //
2193                        $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2194                        $dossier_id = isset($val['dossier']['dossier']) === true ? $val['dossier']['dossier'] : null;
2195                        $val['demandeur'] = $this->get_demandeurs_data($dossier_id);
2196                        $val['instruction_notification'] = $this->get_instruction_notification_data($this->getVal('category'), 'with-id', array('with-id' => $this->getVal('object_id')));
2197                        $instruction_id = isset($val['instruction_notification']['instruction']) === true ? $val['instruction_notification']['instruction'] : null;
2198                        $instruction_annexes = isset($val['instruction_notification']['annexes']) === true ? $val['instruction_notification']['annexes'] : null;
2199                        $val['instruction'] = $this->get_instruction_data($dossier_id, 'with-id', array('with-id' => $instruction_id));
2200                        // Précise qu'il s'agit d'une instruction final si l'instruction est liée à une
2201                        // demande dont le type ne génère pas de dossier
2202                        if ($this->is_demande_instruction_recepisse_without_dossier($instruction_id) === true) {
2203                            $val['instruction']['final'] = 't';
2204                        }
2205                        $val_external_uid = array();
2206                        // Affiche l'identifiant externe lié à l'instruction si cette combinaison existe, sinon celui lié au dossier
2207                        $val_external_uid['demande'] = $this->get_external_uid($instruction_id, 'demande') !== '' ? $this->get_external_uid($instruction_id, 'demande') : $this->get_external_uid($dossier_id, 'demande');
2208                        $val_external_uid['demande (instruction)'] = $this->get_external_uid($instruction_id, 'demande', PORTAL, 'ASC');
2209                        $val_external_uid['instruction_notification'] = $this->get_external_uid($this->getVal('object_id'), 'instruction_notification', PORTAL);
2210                        $val['external_uids'] = $val_external_uid;
2211                    }
2212                    //
2213                    if ($this->getVal('type') === 'prescription') {
2214                        $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
2215                        $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
2216                        $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
2217                        if (isset($val['instruction']['signataire_arrete']) === true) {
2218                            $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
2219                        }
2220                        $val_external_uid = array();
2221                        $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
2222                        $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
2223                        $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
2224                        $val_external_uid['prescription'] = $this->get_external_uid($this->getVal('object_id'), 'prescription');
2225                        $val['external_uids'] = $val_external_uid;
2226                  }                  }
                 $val_external_uid = array();  
                 // Affiche l'identifiant externe lié à l'instruction si cette combinaison existe, sinon celui lié au dossier  
                 $val_external_uid['demande'] = $this->get_external_uid($instruction_id, 'demande') !== '' ? $this->get_external_uid($instruction_id, 'demande') : $this->get_external_uid($dossier_id, 'demande');  
                 $val['external_uids'] = $val_external_uid;  
             }  
             //  
             if ($this->getVal('type') === 'prescription') {  
                 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));  
                 $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));  
                 $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));  
                 if (isset($val['instruction']['signataire_arrete']) === true) {  
                     $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);  
                 }  
                 $val_external_uid = array();  
                 $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');  
                 $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');  
                 $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');  
                 $val['external_uids'] = $val_external_uid;  
2227              }              }
2228    
2229              if ($in_field === true) {              if ($in_field === true) {
# Line 1755  class task extends task_gen { Line 2245  class task extends task_gen {
2245                      'state' => $this->f->get_submitted_post_value('state')                      'state' => $this->f->get_submitted_post_value('state')
2246                  ),                  ),
2247              );              );
2248                if ($this->f->get_submitted_post_value('comment') !== null) {
2249                    $params['comment'] = $this->f->get_submitted_post_value('comment');
2250                }
2251              $update = $this->update_task($params);              $update = $this->update_task($params);
2252              $message_class = "valid";              $message_class = "valid";
2253              $message = $this->msg;              $message = $this->msg;
# Line 1780  class task extends task_gen { Line 2273  class task extends task_gen {
2273                      "idx" => ']',                      "idx" => ']',
2274                  ));                  ));
2275                  $object_id = $this->getVal('object_id');                  $object_id = $this->getVal('object_id');
2276                    $is_exists = $inst_lien->is_exists($object, $object_id, $this->f->get_submitted_post_value('external_uid'), $this->getVal('dossier'));
2277                  // Dans le cas spécifique de la mise à jour d'une notification                  // Dans le cas spécifique de la mise à jour d'une notification
2278                  // et de la création d'une liaison d'identifiant pour l'objet demande,                  // et de la création d'une liaison d'identifiant pour l'objet demande,
2279                  // l'identifiant de l'objet n'est plus celui de la notification                  // l'identifiant de l'objet n'est plus celui de la notification
# Line 1792  class task extends task_gen { Line 2286  class task extends task_gen {
2286                          || $this->getVal('type') === 'notification_tiers_consulte')) {                          || $this->getVal('type') === 'notification_tiers_consulte')) {
2287                      //                      //
2288                      $object_id = $this->getVal('dossier');                      $object_id = $this->getVal('dossier');
2289                        // Il ne doit y avoir qu'une liaison entre le numéro du dossier interne et un uid externe de "demande"
2290                        $is_exists = $inst_lien->is_exists($object, $object_id, null, $this->getVal('dossier'));
2291                  }                  }
2292                  if ($inst_lien->is_exists($object, $object_id, $this->f->get_submitted_post_value('external_uid'), $this->getVal('dossier')) === false) {                  if ($is_exists === false) {
2293                      $valF = array(                      $valF = array(
2294                          'lien_id_interne_uid_externe' => '',                          'lien_id_interne_uid_externe' => '',
2295                          'object' => $object,                          'object' => $object,
# Line 1825  class task extends task_gen { Line 2321  class task extends task_gen {
2321          $result = $this->add_task(array(          $result = $this->add_task(array(
2322              'val' => array(              'val' => array(
2323                  'stream' => 'input',                  'stream' => 'input',
2324                  'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload')),                  'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload'), ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401),
2325                  'type' => $this->f->get_submitted_post_value('type'),                  'type' => $this->f->get_submitted_post_value('type'),
2326                  'category' => $this->f->get_submitted_post_value('category'),                  'category' => $this->f->get_submitted_post_value('category'),
2327              )              )
# Line 1849  class task extends task_gen { Line 2345  class task extends task_gen {
2345      }      }
2346    
2347      function setLayout(&$form, $maj) {      function setLayout(&$form, $maj) {
2348            //
2349          // Récupération du mode de l'action          $form->setBloc('json_payload', 'D', '', 'col_6');
2350          $crud = $this->get_action_crud($maj);          $fieldset_title_payload = __("json_payload (calculée)");
2351            if ($this->getVal('json_payload') !== "{}") {
2352          // MODE different de CREER              $fieldset_title_payload = __("json_payload");
2353          if ($maj != 0 || $crud != 'create') {          }
2354              $form->setBloc('json_payload', 'D', '', 'col_6');          $form->setFieldset('json_payload', 'DF', $fieldset_title_payload, "collapsible, startClosed");
2355                  $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");          $form->setBloc('json_payload', 'F');
2356              $form->setBloc('json_payload', 'F');          $form->setBloc('timestamp_log', 'DF', __("historique"), 'col_9 timestamp_log_jsontotab');
         }  
         $form->setBloc('timestamp_log', 'DF', '', 'col_9');  
2357      }      }
2358    
2359      /**      /**
# Line 1886  class task extends task_gen { Line 2380  class task extends task_gen {
2380              && $stream === 'input') {              && $stream === 'input') {
2381              $objects = array('dossier', 'dossier_autorisation', 'demande', );              $objects = array('dossier', 'dossier_autorisation', 'demande', );
2382          }          }
2383          if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {          if (in_array($type, array(
2384                'decision_DI',
2385                'incompletude_DI',
2386                'completude_DI',
2387                'lettre_incompletude',
2388                'lettre_majoration'
2389                )) === true) {
2390              $objects = array('instruction', );              $objects = array('instruction', );
2391          }          }
2392          if (in_array($type, array('envoi_CL', )) === true) {          if (in_array($type, array('envoi_CL', )) === true) {
# Line 1963  class task extends task_gen { Line 2463  class task extends task_gen {
2463              && $stream === 'input') {              && $stream === 'input') {
2464              $tables = array('dossier', 'dossier_autorisation', 'demande', );              $tables = array('dossier', 'dossier_autorisation', 'demande', );
2465          }          }
2466          if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {          if (in_array($type, array(
2467                'decision_DI',
2468                'incompletude_DI',
2469                'completude_DI',
2470                'lettre_incompletude',
2471                'lettre_majoration'
2472            )) === true) {
2473              $tables = array('instruction', );              $tables = array('instruction', );
2474          }          }
2475            if (in_array($type, array('envoi_CL', )) === true) {
2476                $objects = array('instruction', );
2477            }
2478          if (in_array($type, array('pec_metier_consultation', )) === true          if (in_array($type, array('pec_metier_consultation', )) === true
2479              && $stream === 'output') {              && $stream === 'output') {
2480              $tables = array('instruction', );              $tables = array('instruction', );
# Line 2011  class task extends task_gen { Line 2520  class task extends task_gen {
2520          return $tables;          return $tables;
2521      }      }
2522    
2523        /**
2524         * Vérifie si l'objet référencé par la tâche existe en base de données.
2525         *
2526         * Récupère la liste des tables de référence associé à la tâche à partir
2527         * du type de tâche et de son flux (input ou output).
2528         * Pour chaque table potentiellement référencé par la tâche on essaye d'instancier
2529         * l'objet correspondant à partir de l'identifiant de l'objet de référence de la tâche.
2530         * Si l'élément instancié existe renvoie true sinon renvoie false.
2531         *
2532         * @param string|integer $taskObjectId : identifiant de l'objet de référence de la tâche
2533         * @param string $taskType : type de la tâche
2534         * @param string $taskStream : flux entrant (output - valeur par défaut) ou sortant (input)
2535         * @return boolean
2536         */
2537        protected function does_referenced_object_exist($taskObjectId, string $taskType, string $taskStream = 'output') {
2538            $refTables = $this->get_tables_by_task_type($taskType, $taskStream);
2539            if (empty($refTables) === true) {
2540                $this->f->addToLog(
2541                    sprintf(
2542                        __("Impossible de vérifier si l'objet de référence existe, car le type de task '%s' n'a pas de correspondance avec une table dans la méthode %s."),
2543                        $taskType,
2544                        "get_tables_by_task_type()"
2545                    ),
2546                    DEBUG_MODE
2547                );
2548                return true;
2549            }
2550            foreach ($refTables as $table) {
2551                $inst = $this->f->get_inst__om_dbform(array(
2552                    'obj' => $table,
2553                    'idx' => $taskObjectId
2554                ));
2555                if ($inst->exists() === true) {
2556                    return true;
2557                }
2558            }
2559            return false;
2560        }
2561    
2562  }  }

Legend:
Removed from v.11585  
changed lines
  Added in v.14542

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26