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

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

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

branches/4.14.0-develop_demat/obj/task.class.php revision 9799 by mbideau, Tue Dec 22 15:54:14 2020 UTC trunk/obj/task.class.php revision 10968 by softime, Wed Dec 15 00:06:28 2021 UTC
# Line 13  class task extends task_gen { Line 13  class task extends task_gen {
13      const STATUS_ERROR = 'error';      const STATUS_ERROR = 'error';
14      const STATUS_DEBUG = 'debug';      const STATUS_DEBUG = 'debug';
15      const STATUS_ARCHIVED = 'archived';      const STATUS_ARCHIVED = 'archived';
16        const STATUS_CANCELED = 'canceled';
17    
18        /**
19         * Liste des types de tâche concernant les services instructeurs
20         */
21        const TASK_TYPE_SI = array(
22            'creation_DA',
23            'creation_DI',
24            'depot_DI',
25            'modification_DI',
26            'qualification_DI',
27            'decision_DI',
28            'incompletude_DI',
29            'completude_DI',
30            'ajout_piece',
31            'add_piece',
32            'creation_consultation',
33            'modification_DA',
34            'create_DI',
35            'notification_recepisse',
36            'notification_instruction',
37            'notification_decision',
38        );
39    
40        /**
41         * Liste des types de tâche concernant les services consultés
42         */
43        const TASK_TYPE_SC = array(
44            'create_DI_for_consultation',
45            'avis_consultation',
46            'pec_metier_consultation',
47            'create_message',
48            'notification_recepisse',
49            'notification_instruction',
50            'notification_decision',
51            'prescription',
52        );
53    
54        /**
55         * Catégorie de la tâche
56         */
57        var $category = 'platau';
58    
59      /**      /**
60       * Définition des actions disponibles sur la classe.       * Définition des actions disponibles sur la classe.
# Line 40  class task extends task_gen { Line 82  class task extends task_gen {
82      }      }
83    
84      public function setvalF($val = array()) {      public function setvalF($val = array()) {
85    
86            // // les guillets doubles sont remplacés automatiquement par des simples
87            // // dans core/om_formulaire.clasS.php::recupererPostvar()
88            // // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
89            // // ceci est un hack sale temporaire en attendant résolution du ticket
90            // foreach(array('json_payload', 'timestamp_log') as $key) {
91            //     if (isset($val[$key]) && ! empty($val[$key]) &&
92            //             isset($_POST[$key]) && ! empty($_POST[$key])) {
93            //         $submited_payload = $_POST[$key];
94            //         if (! empty($submited_payload)) {
95            //             $new_payload = str_replace("'", '"', $val[$key]);
96            //             if ($new_payload == $submited_payload ||
97            //                     strpos($submited_payload, '"') === false) {
98            //                 $val[$key] = $new_payload;
99            //             }
100            //             else {
101            //                 $error_msg = sprintf(
102            //                     __("La convertion des guillemets de la payload JSON '%s' ".
103            //                         "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
104            //                     $key, var_export($val[$key], true), var_export($submited_payload, true),
105            //                     var_export($new_payload, true));
106            //                 $this->correct = false;
107            //                 $this->addToMessage($error_msg);
108            //                 $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
109            //                 return false;
110            //             }
111            //         }
112            //     }
113            // }
114    
115          parent::setvalF($val);          parent::setvalF($val);
116          //  
117            // XXX Ancien code : permet de ne pas avoir d'erreru lors de la modification d'une task
118          if (array_key_exists('timestamp_log', $val) === true) {          if (array_key_exists('timestamp_log', $val) === true) {
119              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
120          }          }
121    
122            // récupération de l'ID de l'objet existant
123            $id = property_exists($this, 'id') ? $this->id : null;
124            if(isset($val[$this->clePrimaire])) {
125                $id = $val[$this->clePrimaire];
126            } elseif(isset($this->valF[$this->clePrimaire])) {
127                $id = $this->valF[$this->clePrimaire];
128            }
129    
130            // MODE MODIFIER
131            if (! empty($id)) {
132    
133                // si aucune payload n'est fourni (devrait toujours être le cas)
134                if (! isset($val['json_payload']) || empty($val['json_payload'])) {
135    
136                    // récupère l'objet existant
137                    $existing = $this->f->findObjectById('task', $id);
138                    if (! empty($existing)) {
139    
140                        // récupère la payload de l'objet
141                        $val['json_payload'] = $existing->getVal('json_payload');
142                        $this->valF['json_payload'] = $existing->getVal('json_payload');
143                        $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
144                            "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
145                    }
146                }
147            }
148    
149            if (array_key_exists('category', $val) === false
150                || $this->valF['category'] === ''
151                || $this->valF['category'] === null) {
152                //
153                $this->valF['category'] = $this->category;
154            }
155      }      }
156    
157      /**      /**
# Line 61  class task extends task_gen { Line 168  class task extends task_gen {
168              "stream",              "stream",
169              "json_payload",              "json_payload",
170              "timestamp_log",              "timestamp_log",
171                "category",
172          );          );
173      }      }
174    
175      function setType(&$form, $maj) {      function setType(&$form, $maj) {
176          parent::setType($form, $maj);          parent::setType($form, $maj);
177    
178          // Récupération du mode de l'action          // Récupération du mode de l'action
179          $crud = $this->get_action_crud($maj);          $crud = $this->get_action_crud($maj);
180    
181          if ($maj < 2) {          // ALL
182            $form->setType("category", "hidden");
183    
184            // MODE CREER
185            if ($maj == 0 || $crud == 'create') {
186                $form->setType("state", "select");
187                $form->setType("stream", "select");
188                $form->setType("json_payload", "textarea");
189            }
190            // MDOE MODIFIER
191            if ($maj == 1 || $crud == 'update') {
192              $form->setType("state", "select");              $form->setType("state", "select");
193              $form->setType("stream", "select");              $form->setType("stream", "select");
194              $form->setType("json_payload", "jsonprettyprint");              $form->setType("json_payload", "jsonprettyprint");
195          }          }
196          if ($maj == 3){          // MODE CONSULTER
197            if ($maj == 3 || $crud == 'read') {
198              $form->setType('dossier', 'link');              $form->setType('dossier', 'link');
199              $form->setType('json_payload', 'jsonprettyprint');              $form->setType('json_payload', 'jsonprettyprint');
200          }          }
# Line 88  class task extends task_gen { Line 208  class task extends task_gen {
208          if($maj < 2) {          if($maj < 2) {
209    
210              $contenu = array();              $contenu = array();
211              foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG') as $key) {              foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG', 'ARCHIVED', 'CANCELED') as $key) {
212                  $const_name = 'STATUS_'.$key;                  $const_name = 'STATUS_'.$key;
213                  $const_value = constant("self::$const_name");                  $const_value = constant("self::$const_name");
214                  $contenu[0][] = $const_value;                  $contenu[0][] = $const_value;
# Line 113  class task extends task_gen { Line 233  class task extends task_gen {
233                      "idx" => $form->val['dossier'],                      "idx" => $form->val['dossier'],
234                  ));                  ));
235    
236                  if($form->val['type'] == "creation_DA"){                  if($form->val['type'] == "creation_DA"
237                        || $form->val['type'] == "modification_DA"){
238                        //
239                      $obj_link = 'dossier_autorisation';                      $obj_link = 'dossier_autorisation';
240                  } else {                  } else {
241                      $obj_link = 'dossier_instruction';                      $obj_link = 'dossier_instruction';
# Line 146  class task extends task_gen { Line 268  class task extends task_gen {
268    
269      function setLib(&$form, $maj) {      function setLib(&$form, $maj) {
270          parent::setLib($form, $maj);          parent::setLib($form, $maj);
271          $form->setLib('json_payload', '');  
272            // Récupération du mode de l'action
273            $crud = $this->get_action_crud($maj);
274    
275            // MODE different de CREER
276            if ($maj != 0 || $crud != 'create') {
277                $form->setLib('json_payload', '');
278            }
279      }      }
280    
281      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
282          $ret = parent::verifier($val, $dnu1, $dnu2);          $ret = parent::verifier($val, $dnu1, $dnu2);
283    
         if (array_key_exists('timestamp_log', $this->valF) === true  
             && is_array(json_decode($this->valF['timestamp_log'], true)) === false) {  
             //  
             $this->correct = false;  
             $this->addToMessage(sprintf(  
                 __("Le champ %s doit être dans un format JSON valide."),  
                 sprintf('<span class="bold">%s</span>', $this->getLibFromField('timestamp_log'))  
             ));  
         }  
   
284          // une tâche entrante doit avoir un type et une payload non-vide          // une tâche entrante doit avoir un type et une payload non-vide
285          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
286              if (isset($this->valF['type']) === false) {              if (isset($this->valF['type']) === false) {
# Line 182  class task extends task_gen { Line 301  class task extends task_gen {
301              }              }
302          }          }
303    
304          // le JSON doit être décodable          // les JSONs doivent être décodables
305          if (isset($this->valF['json_payload']) && ! empty($this->valF['json_payload']) && (          foreach(array('json_payload', 'timestamp_log') as $key) {
306                  is_array(json_decode($this->valF['json_payload'], true)) === false              if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
307                  || json_last_error() !== JSON_ERROR_NONE)) {                      is_array(json_decode($this->valF[$key], true)) === false
308              $this->correct = false;                      || json_last_error() !== JSON_ERROR_NONE)) {
309              $this->addToMessage(sprintf(                  $this->correct = false;
310                  __("Le champ %s doit être dans un format JSON valide (erreur: %s)."),                  $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
311                  sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'),                  $this->addToMessage(sprintf(
312                  json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'))                      __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
313              ));                      "<p>%s valF:</br><pre>%s</pre></p>".
314              $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);                      "<p>%s val:</br><pre>%s</pre></p>".
315                        "<p>%s POST:</br><pre>%s</pre></p>".
316                        "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
317                        $champ_text,
318                        json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
319                        $champ_text,
320                        $this->valF[$key],
321                        $champ_text,
322                        $val[$key],
323                        $champ_text,
324                        isset($_POST[$key]) ? $_POST[$key] : '',
325                        $champ_text,
326                        $this->f->get_submitted_post_value($key)
327                    ));
328                    $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
329                }
330          }          }
331    
332          // une tâche entrante doit avoir une payload avec les clés requises          // une tâche entrante doit avoir une payload avec les clés requises
333          elseif (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {          if ($this->correct && (isset($this->valF['stream']) === false ||
334                                   $this->valF['stream'] == 'input')) {
335    
336              // décode la payload JSON              // décode la payload JSON
337              $json_payload = json_decode($this->valF['json_payload'], true);              $json_payload = json_decode($this->valF['json_payload'], true);
338    
339              // défini une liste de chemin de clés requises              // défini une liste de chemin de clés requises
340              $paths = array(              $paths = array();
341                  'external_uids/dossier'              if ($this->valF['category'] === 'platau') {
342              );                  $paths = array(
343                        'external_uids/dossier'
344                    );
345                }
346    
347              // tâche de type création de DI/DA              // tâche de type création de DI/DA
348              if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {              if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {
# Line 222  class task extends task_gen { Line 360  class task extends task_gen {
360                  }                  }
361    
362                  // présence d'un moyen d'identifier la collectivité/le service                  // présence d'un moyen d'identifier la collectivité/le service
363                  if (! isset($json_payload['dossier']['acteur']) &&                  if (! isset($json_payload['external_uids']['acteur']) &&
364                          ! isset($json_payload['dossier']['om_collectivite'])) {                          ! isset($json_payload['dossier']['om_collectivite'])) {
365                      $this->correct = false;                      $this->correct = false;
366                      $this->addToMessage(sprintf(                      $this->addToMessage(sprintf(
367                          __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),                          __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
368                          sprintf('<span class="bold">%s</span>', 'dossier/acteur'),                          sprintf('<span class="bold">%s</span>', 'external_uids/acteur'),
369                          sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),                          sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
370                          sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))                          sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
371                      ));                      ));
# Line 270  class task extends task_gen { Line 408  class task extends task_gen {
408          return $ret && $this->correct;          return $ret && $this->correct;
409      }      }
410    
411      protected function task_exists(string $type, string $object_id) {      /**
412         * [task_exists description]
413         * @param  string $type      [description]
414         * @param  string $object_id [description]
415         * @param  bool   $is_not_done   [description]
416         * @return [type]            [description]
417         */
418        public function task_exists(string $type, string $object_id, string $dossier = null, bool $is_not_done = true) {
419          $query = sprintf('          $query = sprintf('
420              SELECT task              SELECT task
421              FROM %1$stask              FROM %1$stask
422              WHERE state != \'%2$s\'              WHERE %2$s
423              AND type = \'%3$s\'              type = \'%3$s\'
424              AND object_id = \'%4$s\'              AND (object_id = \'%4$s\'
425                %5$s)
426                AND state != \'%6$s\'
427              ',              ',
428              DB_PREFIXE,              DB_PREFIXE,
429              self::STATUS_DONE,              $is_not_done == true ? 'state != \''.self::STATUS_DONE.'\' AND' : '',
430              $type,              $type,
431              $object_id              $object_id,
432                $dossier !== null ? sprintf('OR dossier = \'%s\'', $dossier) : '',
433                self::STATUS_CANCELED
434          );          );
435          $res = $this->f->get_one_result_from_db_query($query);          $res = $this->f->get_one_result_from_db_query($query);
436          if ($res['result'] !== null && $res['result'] !== '') {          if ($res['result'] !== null && $res['result'] !== '') {
# Line 291  class task extends task_gen { Line 440  class task extends task_gen {
440      }      }
441    
442      /**      /**
443         * Permet la recherche multi-critères des tasks.
444         *
445         * @param  array  $search_values Chaque entrée du tableau est une ligne dans le WHERE
446         * @return mixed                 Retourne le résultat de la requête ou false
447         */
448        public function task_exists_multi_search(array $search_values) {
449            $query = sprintf('
450                SELECT task
451                FROM %1$stask
452                %2$s
453                %3$s
454                ',
455                DB_PREFIXE,
456                empty($search_values) === false ? ' WHERE ' : '',
457                implode(' AND ', $search_values)
458            );
459            $res = $this->f->get_all_results_from_db_query($query);
460            if (count($res['result']) > 0) {
461                return $res['result'];
462            }
463            return false;
464        }
465    
466        /**
467       * TRIGGER - triggerajouter.       * TRIGGER - triggerajouter.
468       *       *
469       * @param string $id       * @param string $id
# Line 314  class task extends task_gen { Line 487  class task extends task_gen {
487                      ! empty($json_payload['dossier']['dossier'])) {                      ! empty($json_payload['dossier']['dossier'])) {
488                  $this->valF["dossier"] = $json_payload['dossier']['dossier'];                  $this->valF["dossier"] = $json_payload['dossier']['dossier'];
489              }              }
490            }
491    
492              // sinon si la tâche possède une clé external_uids/dossier          // gestion d'une tache de type notification et de category mail
493              elseif(isset($json_payload['external_uids']['dossier']) &&          if (isset($val['type'])
494                      ! empty($json_payload['external_uids']['dossier'])) {              && (//$val['type'] === 'notification_recepisse'
495                    $val['type'] === 'notification_instruction'
496                    || $val['type'] === 'notification_decision')
497                && isset($val['category'])
498                && $val['category'] === 'mail') {
499                // Récupère la payload de la tache
500                $data = array();
501                $data['instruction_notification'] = $this->get_instruction_notification_data(
502                    $this->valF['category'],
503                    'with-id',
504                    array('with-id' => $this->valF['object_id'])
505                );
506                $data['dossier'] = $this->get_dossier_data($this->valF['dossier']);
507    
508                  // instancie l'objet lien_id_interne_uid_externe              // Récupère l'instance de la notification
509                  $inst_lien = $this->f->get_inst__om_dbform(array(              $inst_notif = $this->f->get_inst__om_dbform(array(
510                      "obj" => "lien_id_interne_uid_externe",                  "obj" => "instruction_notification",
511                      "idx" => ']',                  "idx" => $val['object_id'],
512                ));
513                // Envoi le mail et met à jour le suivi
514                $envoiMail = $inst_notif->send_mail_notification_demandeur($data);
515                // Passage de la tache à done si elle a réussi et à error
516                // si l'envoi a échoué
517                $this->valF['state'] = 'done';
518                if ($envoiMail === false) {
519                    $this->valF['state'] = 'error';
520                }
521            }
522        }
523    
524        /**
525         * TRIGGER - triggermodifierapres.
526         *
527         * @param string $id
528         * @param null &$dnu1 @deprecated  Ne pas utiliser.
529         * @param array $val Tableau des valeurs brutes.
530         * @param null $dnu2 @deprecated  Ne pas utiliser.
531         *
532         * @return boolean
533         */
534        public function triggermodifierapres($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
535            parent::triggermodifierapres($id, $dnu1, $val, $dnu2);
536    
537            // Suivi des notificiations
538            if (isset($val['category']) === true
539                && $val['category'] === 'portal'
540                && isset($val['type']) === true
541                && ($val['type'] === 'notification_recepisse'
542                    || $val['type'] === 'notification_instruction'
543                    || $val['type'] === 'notification_decision')) {
544                //
545                if (isset($this->valF['state']) === true
546                    && $this->valF['state'] !== $this->getVal('state')) {
547                    //
548                    $inst_in = $this->f->get_inst__om_dbform(array(
549                        "obj" => "instruction_notification",
550                        "idx" => $val['object_id'],
551                  ));                  ));
552                  if(! $dossier = $inst_lien->get_id_dossier_from_external_uid(                  $valF_in = array();
553                          $json_payload['external_uids']['dossier'])){                  foreach ($inst_in->champs as $champ) {
554                      $error_msg = sprintf(                      $valF_in[$champ] = $inst_in->getVal($champ);
555                          __("Aucune correspondance de dossier pour l'external_uid.dossier '%s'."),                  }
556                          $json_payload['external_uids']['dossier']);                  $valF_in['date_envoi'] = null;
557                      $this->addToLog(__METHOD__."() : erreur : $error_msg", DEBUG_MODE);                  $valF_in['date_premier_acces'] = null;
558                      $this->addToMessage($error_msg);                  //
559                      $this->correct = false;                  if ($this->valF['state'] === self::STATUS_DONE) {
560                        //
561                        $valF_in['statut'] = __("envoyé");
562                        $valF_in['commentaire'] = __("Notification traitée");
563                        $valF_in['date_envoi'] = date('d/m/Y H:i:s');
564                        //
565                        $inst_instruction = $this->f->get_inst__om_dbform(array(
566                            "obj" => "instruction",
567                            "idx" => $inst_in->getVal('instruction'),
568                        ));
569                        if ($inst_instruction->has_an_edition() === true) {
570                            $valF_instruction = array();
571                            foreach ($inst_instruction->champs as $champ) {
572                                $valF_instruction[$champ] = $inst_instruction->getVal($champ);
573                            }
574                            $valF_instruction['date_envoi_rar'] = date('d/m/Y');
575                            $valF_instruction['date_retour_rar'] = date('d/m/Y', strtotime('now + 1 day'));
576                            $inst_instruction->setParameter('maj', 1);
577                            $update_instruction = $inst_instruction->modifier($valF_instruction);
578                            if ($update_instruction === false) {
579                                $this->addToLog(__METHOD__."(): ".$inst_instruction->msg, DEBUG_MODE);
580                                return false;
581                            }
582                        }
583                    }
584                    if ($this->valF['state'] === self::STATUS_ERROR) {
585                        $valF_in['statut'] = __("échec");
586                        $valF_in['commentaire'] = __("Le traitement de la notification a échoué");
587                    }
588                    $inst_in->setParameter('maj', 1);
589                    $update_in = $inst_in->modifier($valF_in);
590                    if ($update_in === false) {
591                        $this->addToLog(__METHOD__."(): ".$inst_in->msg, DEBUG_MODE);
592                      return false;                      return false;
593                  }                  }
                 $this->valF["dossier"] = $dossier;  
594              }              }
595          }          }
596    
597            //
598            return true;
599      }      }
600    
601      /**      /**
# Line 348  class task extends task_gen { Line 607  class task extends task_gen {
607       */       */
608      public function add_task($params = array()) {      public function add_task($params = array()) {
609          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
610    
611            // Vérifie si la task doit être ajoutée en fonction du mode de l'application,
612            // seulement pour les tasks output
613            $task_types_si = self::TASK_TYPE_SI;
614            $task_types_sc = self::TASK_TYPE_SC;
615            $stream = isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output';
616            if ($stream === 'output'
617                && isset($params['val']['type']) === true
618                && $this->f->is_option_mode_service_consulte_enabled() === true
619                && in_array($params['val']['type'], $task_types_sc) === false) {
620                //
621                return $this->end_treatment(__METHOD__, true);
622            }
623            if ($stream === 'output'
624                && isset($params['val']['type']) === true
625                && $this->f->is_option_mode_service_consulte_enabled() === false
626                && in_array($params['val']['type'], $task_types_si) === false) {
627                //
628                return $this->end_treatment(__METHOD__, true);
629            }
630    
631            //
632          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array(
633              'creation_date' => date('Y-m-d H:i:s'),              'creation_date' => date('Y-m-d H:i:s'),
634          ));          ));
635    
636            //
637            $category = isset($params['val']['category']) === true ? $params['val']['category'] : $this->category;
638    
639          // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier          // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
640          // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche          // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
641          if (isset($params['val']['type'])          if (isset($params['val']['type'])
642              && $params['val']['type'] == "add_piece"              && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")
643              && isset($params['val']['stream'])              && isset($params['val']['stream'])
644              && $params['val']['stream'] == "input" ) {              && $params['val']['stream'] == "input" ) {
645              //              //
646              $json_payload = json_decode($params['val']['json_payload'], true);              $json_payload = json_decode($params['val']['json_payload'], true);
647              $document_numerise = $json_payload['document_numerise'];              if (json_last_error() !== JSON_ERROR_NONE) {
648              $file_content = base64_decode($document_numerise["file_content"]);                  $this->addToMessage(__("Le contenu JSON de la tâche n'est pas valide."));
             if ($file_content === false){  
                 $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));  
649                  return $this->end_treatment(__METHOD__, false);                  return $this->end_treatment(__METHOD__, false);
650              }              }
651              $metadata = array(              if (isset($json_payload['document_numerise']) === true
652                  "filename" => $document_numerise['nom_fichier'],                  && empty($json_payload['document_numerise']) === false) {
653                  "size" => strlen($file_content),                  //
654                  "mimetype" => $document_numerise['file_content_type'],                  $document_numerise = $json_payload['document_numerise'];
655                  "date_creation" => $document_numerise['date_creation'],                  $file_content = base64_decode($document_numerise["file_content"]);
656              );                  if ($file_content === false){
657              $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content");                      $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));
658              if ($uid_fichier === OP_FAILURE) {                      return $this->end_treatment(__METHOD__, false);
659                  $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));                  }
660                  return $this->end_treatment(__METHOD__, false);                  $metadata = array(
661                        "filename" => $document_numerise['nom_fichier'],
662                        "size" => strlen($file_content),
663                        "mimetype" => $document_numerise['file_content_type'],
664                        "date_creation" => isset($document_numerise['date_creation']) === true ? $document_numerise['date_creation'] : date("Y-m-d"),
665                    );
666                    $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content", "task.uid_fichier");
667                    if ($uid_fichier === OP_FAILURE) {
668                        $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
669                        return $this->end_treatment(__METHOD__, false);
670                    }
671                    $json_payload["document_numerise"]["uid"] = $uid_fichier;
672                    // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
673                    unset($json_payload["document_numerise"]["file_content"]);
674                    $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
675              }              }
             $json_payload["document_numerise"]["uid"] = $uid_fichier;  
             // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload  
             unset($json_payload["document_numerise"]["file_content"]);  
             $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);  
676          }          }
677    
678          // Mise à jour du DI          // Mise à jour du DI
# Line 391  class task extends task_gen { Line 683  class task extends task_gen {
683              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
684              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
685              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
686              'stream' => isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output',              'stream' => $stream,
687              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
688                'category' => $category,
689          );          );
690    
691          // tâche sortante          // tâche sortante
692          if($valF["stream"] == "output"){          if ($valF["stream"] == "output"
693                && $valF['type'] !== 'notification_recepisse'
694                && $valF['type'] !== 'notification_instruction'
695                && $valF['type'] !== 'notification_decision') {
696    
697              // TODO expliquer ce code              // TODO expliquer ce code
698              $task_exists = $this->task_exists($valF['type'], $valF['object_id']);              $task_exists = $this->task_exists($valF['type'], $valF['object_id'], $valF['dossier']);
699              if ($valF['type'] === 'modification_DI' && $task_exists === false) {              if ($valF['type'] === 'modification_DI' && $task_exists === false) {
700                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
701              }              }
702                if ($valF['type'] === 'modification_DA' && $task_exists === false) {
703                    $task_exists = $this->task_exists('creation_DA', $valF['object_id']);
704                }
705                if ($valF['type'] === 'ajout_piece') {
706                    $task_exists = $this->task_exists('ajout_piece', $valF['object_id']);
707                }
708                if ($valF['type'] === 'creation_consultation') {
709                    $task_exists = $this->task_exists('creation_consultation', $valF['object_id']);
710                }
711              if ($task_exists !== false) {              if ($task_exists !== false) {
712                  $inst_task = $this->f->get_inst__om_dbform(array(                  $inst_task = $this->f->get_inst__om_dbform(array(
713                      "obj" => "task",                      "obj" => "task",
# Line 420  class task extends task_gen { Line 725  class task extends task_gen {
725                  return $inst_task->update_task($update_params);                  return $inst_task->update_task($update_params);
726              }              }
727          }          }
   
728          $add = $this->ajouter($valF);          $add = $this->ajouter($valF);
729          $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);          $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
730          if ($add === false) {          if ($add === false) {
# Line 441  class task extends task_gen { Line 745  class task extends task_gen {
745          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
746          $timestamp_log = $this->get_timestamp_log();          $timestamp_log = $this->get_timestamp_log();
747          if ($timestamp_log === false) {          if ($timestamp_log === false) {
748              $this->addToLog(__('XXX'), DEBUG_MODE);              $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
749              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
750          }          }
751          array_push($timestamp_log, array(          array_push($timestamp_log, array(
# Line 455  class task extends task_gen { Line 759  class task extends task_gen {
759              'type' => $this->getVal('type'),              'type' => $this->getVal('type'),
760              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
761              'state' => $params['val']['state'],              'state' => $params['val']['state'],
762              'object_id' => $this->getVal('object_id'),              'object_id' => isset($params['object_id']) == true && $this->getVal('type') == 'create_DI' ? $params['object_id'] : $this->getVal('object_id'),
763              'stream' => $this->getVal('stream'),              'stream' => $this->getVal('stream'),
764              'dossier' => $this->getVal('dossier'),              'dossier' => $this->getVal('dossier'),
765              'json_payload' => $this->getVal('json_payload'),              'json_payload' => $this->getVal('json_payload'),
766                'category' => $this->getVal('category'),
767          );          );
768          $update = $this->modifier($valF);          $update = $this->modifier($valF);
769          if ($update === false) {          if ($update === false) {
# Line 510  class task extends task_gen { Line 815  class task extends task_gen {
815          if ($this->f->get_submitted_get_value('state') !== null          if ($this->f->get_submitted_get_value('state') !== null
816              && $this->f->get_submitted_get_value('state') !== '') {              && $this->f->get_submitted_get_value('state') !== '') {
817              //              //
818              $where = sprintf(' WHERE state = \'%s\' ', $this->f->get_submitted_get_value('state'));              $where_or_and = 'WHERE';
819                if ($where !== '') {
820                    $where_or_and = 'AND';
821                }
822                $where .= sprintf(' %s state = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('state'));
823            }
824            if ($this->f->get_submitted_get_value('category') !== null
825                && $this->f->get_submitted_get_value('category') !== '') {
826                //
827                $where_or_and = 'WHERE';
828                if ($where !== '') {
829                    $where_or_and = 'AND';
830                }
831                $where .= sprintf(' %s category = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('category'));
832          }          }
833          $query = sprintf('          $query = sprintf('
834              SELECT              SELECT
# Line 529  class task extends task_gen { Line 847  class task extends task_gen {
847          $list_tasks = array();          $list_tasks = array();
848          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
849              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
850              $task['dossier'] = $task['object_id'];              $task['dossier'] = $task['dossier'];
851              if ($this->get_lien_objet_by_type($task['type']) === 'document_numerise') {              if ($task['type'] === 'ajout_piece') {
852                  $val_dn = $this->get_document_numerise_data($task['object_id']);                  $val_dn = $this->get_document_numerise_data($task['object_id']);
853                  $task['dossier'] = $val_dn['dossier'];              }
854                if ($task['stream'] === 'output') {
855                    $task['external_uids'] = $this->get_all_external_uids($task['dossier']);
856              }              }
857              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
858          }          }
# Line 675  class task extends task_gen { Line 995  class task extends task_gen {
995          return $val_dt;          return $val_dt;
996      }      }
997    
998        /**
999         * Récupère la liste des objets distincts existants dans la table des liens
1000         * entre identifiants internes et identifiants externes.
1001         *
1002         * @return array
1003         */
1004        protected function get_list_distinct_objects_external_link() {
1005            $query = sprintf('
1006                SELECT
1007                    DISTINCT(object)
1008                FROM %1$slien_id_interne_uid_externe
1009                ORDER BY object ASC
1010                ',
1011                DB_PREFIXE
1012            );
1013            $res = $this->f->get_all_results_from_db_query($query, true);
1014            if ($res['code'] === 'KO') {
1015                return array();
1016            }
1017            $result = array();
1018            foreach ($res['result'] as $object) {
1019                $result[] = $object['object'];
1020            }
1021            return $result;
1022        }
1023    
1024      protected function get_external_uid($fk_idx, string $fk_idx_2) {      protected function get_external_uid($fk_idx, string $fk_idx_2) {
1025          $inst_external_uid = $this->f->get_inst__by_other_idx(array(          $inst_external_uid = $this->f->get_inst__by_other_idx(array(
1026              "obj" => "lien_id_interne_uid_externe",              "obj" => "lien_id_interne_uid_externe",
# Line 686  class task extends task_gen { Line 1032  class task extends task_gen {
1032          return $inst_external_uid->getVal('external_uid');          return $inst_external_uid->getVal('external_uid');
1033      }      }
1034    
1035        protected function get_all_external_uids($fk_idx, $link_objects = array()) {
1036            if (count($link_objects) == 0) {
1037                $link_objects = $this->get_list_distinct_objects_external_link();
1038            }
1039            $val_external_uid = array();
1040            foreach ($link_objects as $link_object) {
1041                $external_uid = $this->get_external_uid($fk_idx, $link_object);
1042                if ($external_uid !== '' && $external_uid !== null) {
1043                    $val_external_uid[$link_object] = $external_uid;
1044                }
1045            }
1046            return $val_external_uid;
1047        }
1048    
1049      protected function get_demandeurs_data(string $dossier) {      protected function get_demandeurs_data(string $dossier) {
1050          $val_demandeur = array();          $val_demandeur = array();
1051          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 718  class task extends task_gen { Line 1078  class task extends task_gen {
1078          return $val_architecte;          return $val_architecte;
1079      }      }
1080    
1081      protected function get_instruction_data(string $dossier, $type = 'decision') {      protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
1082          $val_instruction = null;          $val_instruction = null;
1083          $instruction_with_doc = null;          $instruction_with_doc = null;
1084          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 732  class task extends task_gen { Line 1092  class task extends task_gen {
1092          if ($type === 'incompletude') {          if ($type === 'incompletude') {
1093              $idx = $inst_di->get_last_instruction_incompletude();              $idx = $inst_di->get_last_instruction_incompletude();
1094          }          }
1095            // XXX Permet de récupérer l'instruction par son identifiant
1096            if ($type === 'with-id') {
1097                $idx = $extra_params['with-id'];
1098            }
1099          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
1100              "obj" => "instruction",              "obj" => "instruction",
1101              "idx" => $idx,              "idx" => $idx,
# Line 775  class task extends task_gen { Line 1139  class task extends task_gen {
1139          return $val_instruction;          return $val_instruction;
1140      }      }
1141    
1142        /**
1143         * Récupère les informations
1144        */
1145        protected function get_instruction_notification_data($category, $type = '', $extra_params = array()) {
1146            $val_in = array();
1147    
1148            $idx = null;
1149            if ($type === 'with-id') {
1150                $idx = $extra_params['with-id'];
1151            }
1152    
1153            // récupére les données à intégrer à la payload
1154            $inst_in = $this->f->get_inst__om_dbform(array(
1155                "obj" => "instruction_notification",
1156                "idx" => $idx,
1157            ));
1158            $val_in = $inst_in->get_json_data();
1159    
1160            // Récupération du message et du titre
1161            $inst_instruction = $this->f->get_inst__om_dbform(array(
1162                "obj" => "instruction",
1163                "idx" => $inst_in->getVal('instruction'),
1164            ));
1165            $collectivite_id = $inst_instruction->get_dossier_instruction_om_collectivite($inst_instruction->getVal('dossier'));
1166            $phrase_type_notification = array();
1167            $phrase_type_notification = $this->f->get_notification_parametre_courriel_type($collectivite_id);
1168            //
1169            $val_in['parametre_courriel_type_titre'] = $phrase_type_notification['parametre_courriel_type_titre'];
1170            $val_in['parametre_courriel_type_message'] = $phrase_type_notification['parametre_courriel_type_message'];
1171    
1172            // Récupération des liens vers les documents et de l'id de l'instruction
1173            // de l'annexe
1174            $infoDocNotif = $inst_in->getInfosDocumentsNotif($inst_in->getVal($inst_in->clePrimaire));
1175            $val_in['lien_telechargement_document'] = $infoDocNotif['document']['lien'];
1176            $val_in['lien_telechargement_annexe'] = $infoDocNotif['annexe']['lien'];
1177            $val_in['instruction_annexe'] = $infoDocNotif['annexe']['id_instruction'];
1178    
1179            return $val_in;
1180        }
1181    
1182      protected function sort_instruction_data(array $values, array $res) {      protected function sort_instruction_data(array $values, array $res) {
1183          $fields = array(          $fields = array(
1184                "date_evenement",
1185              "date_envoi_signature",              "date_envoi_signature",
1186              "date_retour_signature",              "date_retour_signature",
1187              "date_envoi_rar",              "date_envoi_rar",
# Line 787  class task extends task_gen { Line 1192  class task extends task_gen {
1192              "om_fichier_instruction",              "om_fichier_instruction",
1193              "tacite",              "tacite",
1194              "lettretype",              "lettretype",
1195                "commentaire",
1196                "complement_om_html",
1197          );          );
1198          foreach ($values as $key => $value) {          foreach ($values as $key => $value) {
1199              if (in_array($key, $fields) === true) {              if (in_array($key, $fields) === true) {
# Line 805  class task extends task_gen { Line 1212  class task extends task_gen {
1212          return $res;          return $res;
1213      }      }
1214    
1215        /**
1216         * Permet de définir si l'instruction passée en paramètre est une instruction
1217         * récépissé d'une demande et si la demande en question a générée un dossier d'instruction.
1218         *
1219         * @param  integer  $instruction Identifiant de l'instruction
1220         * @return boolean
1221         */
1222        protected function is_demande_instruction_recepisse_without_dossier($instruction) {
1223            $query = sprintf('
1224                SELECT demande_type.dossier_instruction_type
1225                FROM %1$sdemande
1226                    INNER JOIN %1$sdemande_type ON demande.demande_type = demande_type.demande_type
1227                WHERE demande.instruction_recepisse = %2$s
1228                ',
1229                DB_PREFIXE,
1230                $instruction
1231            );
1232            $res = $this->f->get_one_result_from_db_query(
1233                $query,
1234                true
1235            );
1236            if ($res['code'] === 'KO') {
1237                return null;
1238            }
1239            if ($res['result'] === '') {
1240                return true;
1241            }
1242            return false;
1243        }
1244    
1245      protected function get_document_numerise_data(string $dn) {      protected function get_document_numerise_data(string $dn) {
1246          $val_dn = array();          $val_dn = array();
1247          $inst_dn = $this->f->get_inst__om_dbform(array(          $inst_dn = $this->f->get_inst__om_dbform(array(
# Line 837  class task extends task_gen { Line 1274  class task extends task_gen {
1274          return $val_dp;          return $val_dp;
1275      }      }
1276    
1277        protected function get_avis_decision_data(string $dossier) {
1278            $inst_di = $this->f->get_inst__om_dbform(array(
1279                "obj" => "dossier",
1280                "idx" => $dossier,
1281            ));
1282            $ad = $inst_di->getVal('avis_decision');
1283            $val_ad = array();
1284            if ($ad !== null) {
1285                $inst_ad = $this->f->get_inst__om_dbform(array(
1286                    "obj" => "avis_decision",
1287                    "idx" => $ad,
1288                ));
1289                $val_ad = $inst_ad->get_json_data();
1290                $val_ad['txAvis'] = "Voir document joint";
1291                if (isset($val_ad['tacite']) ===  true
1292                    && $val_ad['tacite'] === 't') {
1293                    //
1294                    $val_ad['txAvis'] = "Sans objet";
1295                }
1296            }
1297            return $val_ad;
1298        }
1299    
1300        protected function get_signataire_arrete_data(string $sa) {
1301            $inst_sa = $this->f->get_inst__om_dbform(array(
1302                "obj" => "signataire_arrete",
1303                "idx" => $sa,
1304            ));
1305            $val_sa = array_combine($inst_sa->champs, $inst_sa->val);
1306            foreach ($val_sa as $key => $value) {
1307                $val_sa[$key] = strip_tags($value);
1308            }
1309            return $val_sa;
1310        }
1311    
1312        // XXX WIP
1313        protected function get_consultation_data(string $consultation) {
1314            $val_consultation = array();
1315            $inst_consultation = $this->f->get_inst__om_dbform(array(
1316                "obj" => "consultation",
1317                "idx" => $consultation,
1318            ));
1319            $val_consultation = $inst_consultation->get_json_data();
1320            if (isset($val_consultation['fichier']) === true
1321                && $val_consultation['fichier'] !== '') {
1322                //
1323                $val_consultation['path_fichier'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'consultation', 'fichier', $this->getVal('object_id'));
1324            }
1325            if (isset($val_consultation['om_fichier_consultation']) === true
1326                && $val_consultation['om_fichier_consultation'] !== '') {
1327                //
1328                $val_consultation['path_om_fichier_consultation'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'consultation', 'om_fichier_consultation', $this->getVal('object_id'));
1329            }
1330            return $val_consultation;
1331        }
1332    
1333        // XXX WIP
1334        protected function get_service_data(string $service) {
1335            $val_service = array();
1336            $inst_service = $this->f->get_inst__om_dbform(array(
1337                "obj" => "service",
1338                "idx" => $service,
1339            ));
1340            $val_service = $inst_service->get_json_data();
1341            return $val_service;
1342        }
1343    
1344      protected function view_form_json($in_field = false) {      protected function view_form_json($in_field = false) {
1345          //          //
1346          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null
1347                && $this->getVal('state') !== self::STATUS_CANCELED) {
1348              // Liste des valeurs à afficher              // Liste des valeurs à afficher
1349              $val = array();              $val = array();
1350              //              //
# Line 850  class task extends task_gen { Line 1355  class task extends task_gen {
1355              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);
1356              $val['task'] = $val_task;              $val['task'] = $val_task;
1357              //              //
1358              if ($this->getVal('type') === 'creation_DA') {              if ($this->getVal('type') === 'creation_DA'
1359                    || $this->getVal('type') === 'modification_DA') {
1360                    //
1361                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));
1362                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');
1363                  $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);                  $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);
# Line 876  class task extends task_gen { Line 1383  class task extends task_gen {
1383              }              }
1384              //              //
1385              if ($this->getVal('type') === 'qualification_DI') {              if ($this->getVal('type') === 'qualification_DI') {
1386                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1387                  $val_external_uid = array();                  $val_external_uid = array();
1388                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1389                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
# Line 894  class task extends task_gen { Line 1401  class task extends task_gen {
1401              }              }
1402              //              //
1403              if ($this->getVal('type') === 'decision_DI') {              if ($this->getVal('type') === 'decision_DI') {
1404                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1405                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier']);                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1406                    $val['instruction']['final'] = 't';
1407                    if (isset($val['instruction']['signataire_arrete']) === true) {
1408                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1409                    }
1410                  $val_external_uid = array();                  $val_external_uid = array();
1411                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1412                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
# Line 903  class task extends task_gen { Line 1414  class task extends task_gen {
1414              }              }
1415              //              //
1416              if ($this->getVal('type') === 'incompletude_DI') {              if ($this->getVal('type') === 'incompletude_DI') {
1417                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1418                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'incompletude');                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1419                  $val_external_uid = array();                  $val_external_uid = array();
1420                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1421                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
# Line 912  class task extends task_gen { Line 1423  class task extends task_gen {
1423              }              }
1424              //              //
1425              if ($this->getVal('type') === 'completude_DI') {              if ($this->getVal('type') === 'completude_DI') {
1426                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1427                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'completude');                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1428                    $val_external_uid = array();
1429                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1430                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1431                    $val['external_uids'] = $val_external_uid;
1432                }
1433                //
1434                if ($this->getVal('type') === 'pec_metier_consultation') {
1435                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1436                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1437                    $val_external_uid = array();
1438                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1439                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1440                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1441                    $val['external_uids'] = $val_external_uid;
1442                }
1443                //
1444                if ($this->getVal('type') === 'avis_consultation') {
1445                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1446                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1447                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1448                    if (isset($val['instruction']['signataire_arrete']) === true) {
1449                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1450                    }
1451                    $val_external_uid = array();
1452                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1453                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1454                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1455                    $val['external_uids'] = $val_external_uid;
1456                }
1457                // XXX WIP
1458                if ($this->getVal('type') === 'creation_consultation') {
1459                    //
1460                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1461                    $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
1462                    $val['service'] = $this->get_service_data($val['consultation']['service']);
1463                    $val_external_uid = array();
1464                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1465                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1466                    $val['external_uids'] = $val_external_uid;
1467                }
1468                //
1469                if ($this->getVal('type') === 'notification_instruction'
1470                    || $this->getVal('type') === 'notification_recepisse'
1471                    || $this->getVal('type') === 'notification_decision') {
1472                    //
1473                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1474                    $val['demandeur'] = $this->get_demandeurs_data($this->getVal('dossier'));
1475                    $val['instruction_notification'] = $this->get_instruction_notification_data($this->getVal('category'), 'with-id', array('with-id' => $this->getVal('object_id')));
1476                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $val['instruction_notification']['instruction']));
1477                    // Précise qu'il s'agit d'une instruction final si l'instruction est liée à une
1478                    // demande dont le type ne génère pas de dossier
1479                    if ($this->is_demande_instruction_recepisse_without_dossier($val['instruction_notification']['instruction']) === true) {
1480                        $val['instruction']['final'] = 't';
1481                    }
1482                    //
1483                    if ($val['instruction_notification']['instruction_annexe'] != '') {
1484                        $val['instruction_annexe'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $val['instruction_notification']['instruction_annexe']));
1485                    }
1486                    $val_external_uid = array();
1487                    // Affiche l'identifiant externe lié à l'instruction si cette combinaison existe, sinon celui lié au dossier
1488                    $val_external_uid['demande'] = $this->get_external_uid($val['instruction_notification']['instruction'], 'demande') !== '' ? $this->get_external_uid($val['instruction_notification']['instruction'], 'demande') : $this->get_external_uid($val['dossier']['dossier'], 'demande');
1489                    $val['external_uids'] = $val_external_uid;
1490                }
1491                //
1492                if ($this->getVal('type') === 'prescription') {
1493                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1494                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1495                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1496                    if (isset($val['instruction']['signataire_arrete']) === true) {
1497                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1498                    }
1499                  $val_external_uid = array();                  $val_external_uid = array();
1500                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1501                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1502                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1503                  $val['external_uids'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1504              }              }
1505    
# Line 931  class task extends task_gen { Line 1514  class task extends task_gen {
1514    
1515      function post_update_task() {      function post_update_task() {
1516          // Mise à jour des valeurs          // Mise à jour des valeurs
1517          //  
1518          $params = array(          // Modification de l'état de la tâche
1519              'val' => array(          if ($this->f->get_submitted_post_value('state') !== null) {
1520                  'state' => $this->f->get_submitted_post_value('state')              $params = array(
1521              ),                  'val' => array(
1522          );                      'state' => $this->f->get_submitted_post_value('state')
1523          $update = $this->update_task($params);                  ),
         $message_class = "valid";  
         $message = $this->msg;  
         if ($update === false) {  
             $this->addToLog($this->msg, DEBUG_MODE);  
             $message_class = "error";  
             $message = sprintf(  
                 '%s %s',  
                 __('Impossible de mettre à jour la tâche.'),  
                 __('Veuillez contacter votre administrateur.')  
1524              );              );
1525                $update = $this->update_task($params);
1526                $message_class = "valid";
1527                $message = $this->msg;
1528                if ($update === false) {
1529                    $this->addToLog($this->msg, DEBUG_MODE);
1530                    $message_class = "error";
1531                    $message = sprintf(
1532                        '%s %s',
1533                        __('Impossible de mettre à jour la tâche.'),
1534                        __('Veuillez contacter votre administrateur.')
1535                    );
1536                }
1537                $this->f->displayMessage($message_class, $message);
1538          }          }
1539          $this->f->displayMessage($message_class, $message);  
1540          //          // Sauvegarde de l'uid externe retourné
1541          $inst_lien = $this->f->get_inst__om_dbform(array(          if ($this->f->get_submitted_post_value('external_uid') !== null) {
1542              "obj" => "lien_id_interne_uid_externe",              //
1543              "idx" => ']',              $objects = $this->get_objects_by_task_type($this->getVal('type'), $this->getVal('stream'));
1544          ));              foreach ($objects as $object) {
1545          $valF = array(                  $inst_lien = $this->f->get_inst__om_dbform(array(
1546              'lien_id_interne_uid_externe' => '',                      "obj" => "lien_id_interne_uid_externe",
1547              'object' => $this->get_lien_objet_by_type($this->getVal('type')),                      "idx" => ']',
1548              'object_id' => $this->getVal('object_id'),                  ));
1549              'external_uid' => $this->f->get_submitted_post_value('external_uid'),                  if ($inst_lien->is_exists($object, $this->getVal('object_id'), $this->f->get_submitted_post_value('external_uid'), $this->getVal('dossier')) === false) {
1550          );                      $valF = array(
1551          $add = $inst_lien->ajouter($valF);                          'lien_id_interne_uid_externe' => '',
1552          $message_class = "valid";                          'object' => $object,
1553          $message = $inst_lien->msg;                          'object_id' => $this->getVal('object_id'),
1554          if ($add === false) {                          'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1555              $this->addToLog($inst_lien->msg, DEBUG_MODE);                          'dossier' => $this->getVal('dossier'),
1556              $message_class = "error";                          'category' => $this->getVal('category'),
1557              $message = sprintf(                      );
1558                  '%s %s',                      $add = $inst_lien->ajouter($valF);
1559                  __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),                      $message_class = "valid";
1560                  __('Veuillez contacter votre administrateur.')                      $message = $inst_lien->msg;
1561              );                      if ($add === false) {
1562                            $this->addToLog($inst_lien->msg, DEBUG_MODE);
1563                            $message_class = "error";
1564                            $message = sprintf(
1565                                '%s %s',
1566                                __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1567                                __('Veuillez contacter votre administrateur.')
1568                            );
1569                        }
1570                        $this->f->displayMessage($message_class, $message);
1571                    }
1572                }
1573          }          }
         $this->f->displayMessage($message_class, $message);  
1574      }      }
1575    
1576      function post_add_task() {      function post_add_task() {
# Line 983  class task extends task_gen { Line 1580  class task extends task_gen {
1580                  'stream' => 'input',                  'stream' => 'input',
1581                  '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')),
1582                  'type' => $this->f->get_submitted_post_value('type'),                  'type' => $this->f->get_submitted_post_value('type'),
1583                    'category' => $this->f->get_submitted_post_value('category'),
1584              )              )
1585          ));          ));
1586          $message = $this->msg;          $message = sprintf(
1587                __("Tâche %s ajoutée avec succès"),
1588                $this->getVal($this->clePrimaire)).
1589                '<br/><br/>'.
1590                $this->msg;
1591          $message_class = "valid";          $message_class = "valid";
1592          if ($result === false){          if ($result === false){
1593              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog($this->msg, DEBUG_MODE);
# Line 999  class task extends task_gen { Line 1601  class task extends task_gen {
1601          $this->f->displayMessage($message_class, $message);          $this->f->displayMessage($message_class, $message);
1602      }      }
1603    
1604      function get_lien_objet_by_type($type) {      function setLayout(&$form, $maj) {
1605          //  
1606          $objet = '';          // Récupération du mode de l'action
1607          if ($type === 'creation_DA') {          $crud = $this->get_action_crud($maj);
1608              $objet = 'dossier_autorisation';  
1609          }          // MODE different de CREER
1610          if ($type === 'creation_DI'          if ($maj != 0 || $crud != 'create') {
1611              || $type === 'create_DI_for_consultation'              $form->setBloc('json_payload', 'D', '', 'col_6');
1612              || $type === 'depot_DI'                  $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1613              || $type === 'modification_DI'              $form->setBloc('json_payload', 'F');
             || $type === 'qualification_DI'  
             || $type === 'decision_DI'  
             || $type === 'incompletude_DI'  
             || $type === 'completude_DI') {  
             //  
             $objet = 'dossier';  
         }  
         if ($type === 'ajout_piece') {  
             $objet = 'document_numerise';  
         }  
         // La tâche entrante se nomme add_piece  
         if ($type === 'add_piece') {  
             $objet = 'piece';  
1614          }          }
1615          return $objet;          $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1616      }      }
1617    
1618      function setLayout(&$form, $maj) {      /**
1619          $form->setBloc('json_payload', 'D', '', 'col_6');       * [get_objects_by_task_type description]
1620              $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");       * @param  [type] $type [description]
1621          $form->setBloc('json_payload', 'F');       * @return [type]       [description]
1622          $form->setBloc('timestamp_log', 'DF', '', 'col_9');       */
1623        function get_objects_by_task_type($type, $stream = 'all') {
1624            $objects = array();
1625            if (in_array($type, array('creation_DA', 'modification_DA', )) === true) {
1626                $objects = array('dossier_autorisation', );
1627            }
1628            if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1629                $objects = array('dossier', );
1630            }
1631            if (in_array($type, array('create_DI_for_consultation', )) === true) {
1632                $objects = array('dossier', 'dossier_consultation', );
1633            }
1634            if (in_array($type, array('create_DI', )) === true
1635                && $stream === 'input') {
1636                $objects = array('dossier', 'dossier_autorisation', 'demande', );
1637            }
1638            if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1639                $objects = array('instruction', );
1640            }
1641            if (in_array($type, array('pec_metier_consultation', )) === true
1642                && $stream === 'output') {
1643                $objects = array('pec_dossier_consultation', );
1644            }
1645            if (in_array($type, array('avis_consultation', )) === true
1646                && $stream === 'output') {
1647                $objects = array('avis_dossier_consultation', );
1648            }
1649            if (in_array($type, array('prescription', )) === true
1650                && $stream === 'output') {
1651                $objects = array('prescription', );
1652            }
1653            if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1654                $objects = array('piece', );
1655            }
1656            if (in_array($type, array('creation_consultation', )) === true) {
1657                $objects = array('consultation', );
1658            }
1659            if (in_array($type, array('pec_metier_consultation', )) === true
1660                && $stream === 'input') {
1661                $objects = array('pec_metier_consultation', );
1662            }
1663            if (in_array($type, array('avis_consultation', )) === true
1664                && $stream === 'input') {
1665                $objects = array('avis_consultation', );
1666            }
1667            if (in_array($type, array('create_message', )) === true
1668                && $stream === 'input') {
1669                $objects = array('dossier_message', );
1670            }
1671            if (in_array($type, array('notification_recepisse', 'notification_instruction', 'notification_decision' )) === true) {
1672                $objects = array('instruction_notification', );
1673            }
1674            return $objects;
1675      }      }
1676    
1677  }  }

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26