/[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 9785 by mbideau, Tue Dec 22 09:08:49 2020 UTC trunk/obj/task.class.php revision 10808 by softime, Wed Nov 24 17:48:35 2021 UTC
# Line 6  require_once "../gen/obj/task.class.php" Line 6  require_once "../gen/obj/task.class.php"
6    
7  class task extends task_gen {  class task extends task_gen {
8    
9        const STATUS_DRAFT = 'draft';
10        const STATUS_NEW = 'new';
11        const STATUS_PENDING = 'pending';
12        const STATUS_DONE = 'done';
13        const STATUS_ERROR = 'error';
14        const STATUS_DEBUG = 'debug';
15        const STATUS_ARCHIVED = 'archived';
16        const STATUS_CANCELED = 'canceled';
17    
18        /**
19         * Liste des types de tâche concernant les services instructeurs
20         */
21        const TASK_TYPE_SI = array(
22            'creation_DA',
23            'creation_DI',
24            'depot_DI',
25            'modification_DI',
26            'qualification_DI',
27            'decision_DI',
28            'incompletude_DI',
29            'completude_DI',
30            'ajout_piece',
31            'add_piece',
32            'creation_consultation',
33            'modification_DA',
34            'create_DI',
35            'notification_recepisse',
36            'notification_instruction',
37            'notification_decision',
38        );
39    
40        /**
41         * Liste des types de tâche concernant les services consultés
42         */
43        const TASK_TYPE_SC = array(
44            'create_DI_for_consultation',
45            'avis_consultation',
46            'pec_metier_consultation',
47            'create_message',
48            'notification_recepisse',
49            'notification_instruction',
50            'notification_decision',
51        );
52    
53        /**
54         * Catégorie de la tâche
55         */
56        var $category = 'platau';
57    
58      /**      /**
59       * Définition des actions disponibles sur la classe.       * Définition des actions disponibles sur la classe.
60       *       *
# Line 32  class task extends task_gen { Line 81  class task extends task_gen {
81      }      }
82    
83      public function setvalF($val = array()) {      public function setvalF($val = array()) {
84    
85            // // les guillets doubles sont remplacés automatiquement par des simples
86            // // dans core/om_formulaire.clasS.php::recupererPostvar()
87            // // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
88            // // ceci est un hack sale temporaire en attendant résolution du ticket
89            // foreach(array('json_payload', 'timestamp_log') as $key) {
90            //     if (isset($val[$key]) && ! empty($val[$key]) &&
91            //             isset($_POST[$key]) && ! empty($_POST[$key])) {
92            //         $submited_payload = $_POST[$key];
93            //         if (! empty($submited_payload)) {
94            //             $new_payload = str_replace("'", '"', $val[$key]);
95            //             if ($new_payload == $submited_payload ||
96            //                     strpos($submited_payload, '"') === false) {
97            //                 $val[$key] = $new_payload;
98            //             }
99            //             else {
100            //                 $error_msg = sprintf(
101            //                     __("La convertion des guillemets de la payload JSON '%s' ".
102            //                         "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
103            //                     $key, var_export($val[$key], true), var_export($submited_payload, true),
104            //                     var_export($new_payload, true));
105            //                 $this->correct = false;
106            //                 $this->addToMessage($error_msg);
107            //                 $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
108            //                 return false;
109            //             }
110            //         }
111            //     }
112            // }
113    
114          parent::setvalF($val);          parent::setvalF($val);
115          //  
116            // XXX Ancien code : permet de ne pas avoir d'erreru lors de la modification d'une task
117          if (array_key_exists('timestamp_log', $val) === true) {          if (array_key_exists('timestamp_log', $val) === true) {
118              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
119          }          }
120    
121            // récupération de l'ID de l'objet existant
122            $id = property_exists($this, 'id') ? $this->id : null;
123            if(isset($val[$this->clePrimaire])) {
124                $id = $val[$this->clePrimaire];
125            } elseif(isset($this->valF[$this->clePrimaire])) {
126                $id = $this->valF[$this->clePrimaire];
127            }
128    
129            // MODE MODIFIER
130            if (! empty($id)) {
131    
132                // si aucune payload n'est fourni (devrait toujours être le cas)
133                if (! isset($val['json_payload']) || empty($val['json_payload'])) {
134    
135                    // récupère l'objet existant
136                    $existing = $this->f->findObjectById('task', $id);
137                    if (! empty($existing)) {
138    
139                        // récupère la payload de l'objet
140                        $val['json_payload'] = $existing->getVal('json_payload');
141                        $this->valF['json_payload'] = $existing->getVal('json_payload');
142                        $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
143                            "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
144                    }
145                }
146            }
147    
148            if (array_key_exists('category', $val) === false
149                || $this->valF['category'] === ''
150                || $this->valF['category'] === null) {
151                //
152                $this->valF['category'] = $this->category;
153            }
154      }      }
155    
156      /**      /**
# Line 53  class task extends task_gen { Line 167  class task extends task_gen {
167              "stream",              "stream",
168              "json_payload",              "json_payload",
169              "timestamp_log",              "timestamp_log",
170                "category",
171          );          );
172      }      }
173    
174      function setType(&$form, $maj) {      function setType(&$form, $maj) {
175          parent::setType($form, $maj);          parent::setType($form, $maj);
176    
177          // Récupération du mode de l'action          // Récupération du mode de l'action
178          $crud = $this->get_action_crud($maj);          $crud = $this->get_action_crud($maj);
179    
180          if ($maj < 2) {          // ALL
181            $form->setType("category", "hidden");
182    
183            // MODE CREER
184            if ($maj == 0 || $crud == 'create') {
185                $form->setType("state", "select");
186                $form->setType("stream", "select");
187                $form->setType("json_payload", "textarea");
188            }
189            // MDOE MODIFIER
190            if ($maj == 1 || $crud == 'update') {
191              $form->setType("state", "select");              $form->setType("state", "select");
192              $form->setType("stream", "select");              $form->setType("stream", "select");
193              $form->setType("json_payload", "jsonprettyprint");              $form->setType("json_payload", "jsonprettyprint");
194          }          }
195          if ($maj == 3){          // MODE CONSULTER
196            if ($maj == 3 || $crud == 'read') {
197              $form->setType('dossier', 'link');              $form->setType('dossier', 'link');
198              $form->setType('json_payload', 'jsonprettyprint');              $form->setType('json_payload', 'jsonprettyprint');
199          }          }
# Line 78  class task extends task_gen { Line 205  class task extends task_gen {
205       */       */
206      function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {      function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
207          if($maj < 2) {          if($maj < 2) {
             $contenu=array();  
208    
209              $contenu[0][0]="draft";              $contenu = array();
210              $contenu[1][0]=_('draft');              foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG', 'ARCHIVED', 'CANCELED') as $key) {
211              $contenu[0][1]="new";                  $const_name = 'STATUS_'.$key;
212              $contenu[1][1]=_('new');                  $const_value = constant("self::$const_name");
213              $contenu[0][2]="pending";                  $contenu[0][] = $const_value;
214              $contenu[1][2]=_('pending');                  $contenu[1][] = __($const_value);
215              $contenu[0][3]="done";              }
             $contenu[1][3]=_('done');  
             $contenu[0][4]="archived";  
             $contenu[1][4]=_('archived');  
             $contenu[0][5]="error";  
             $contenu[1][5]=_('error');  
             $contenu[0][6]="debug";  
             $contenu[1][6]=_('debug');  
216    
217              $form->setSelect("state", $contenu);              $form->setSelect("state", $contenu);
218    
# Line 113  class task extends task_gen { Line 232  class task extends task_gen {
232                      "idx" => $form->val['dossier'],                      "idx" => $form->val['dossier'],
233                  ));                  ));
234    
235                  if($form->val['type'] == "creation_DA"){                  if($form->val['type'] == "creation_DA"
236                        || $form->val['type'] == "modification_DA"){
237                        //
238                      $obj_link = 'dossier_autorisation';                      $obj_link = 'dossier_autorisation';
239                  } else {                  } else {
240                      $obj_link = 'dossier_instruction';                      $obj_link = 'dossier_instruction';
# Line 140  class task extends task_gen { Line 261  class task extends task_gen {
261          if ($this->getVal('stream') == "output") {          if ($this->getVal('stream') == "output") {
262              $form->setVal('json_payload', $this->view_form_json(true));              $form->setVal('json_payload', $this->view_form_json(true));
263          } else {          } else {
264              if ($this->getVal('type') == 'ajout_piece'){              $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));
                 // On modifie la valeur du champ "file_content" afin de tronquer le base64  
                 $json_payload = json_decode($this->getVal("json_payload"), true);  
                 $json_payload["document_numerise"]["file_content"] = substr($json_payload["document_numerise"]["file_content"], 0, 64)."[...]";  
                 $json_payload_result = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES );  
                 $form->setVal('json_payload', htmlentities($json_payload_result));  
             } else {  
                 //  
                 $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));  
             }  
265          }          }
266      }      }
267    
268      function setLib(&$form, $maj) {      function setLib(&$form, $maj) {
269          parent::setLib($form, $maj);          parent::setLib($form, $maj);
270          $form->setLib('json_payload', '');  
271            // Récupération du mode de l'action
272            $crud = $this->get_action_crud($maj);
273    
274            // MODE different de CREER
275            if ($maj != 0 || $crud != 'create') {
276                $form->setLib('json_payload', '');
277            }
278      }      }
279    
280      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
281          $ret = parent::verifier($val, $dnu1, $dnu2);          $ret = parent::verifier($val, $dnu1, $dnu2);
282    
         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'))  
             ));  
         }  
   
283          // 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
284          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
285              if (isset($this->valF['type']) === false) {              if (isset($this->valF['type']) === false) {
# Line 191  class task extends task_gen { Line 300  class task extends task_gen {
300              }              }
301          }          }
302    
303          // le JSON doit être décodable          // les JSONs doivent être décodables
304          if (isset($this->valF['json_payload']) && ! empty($this->valF['json_payload']) && (          foreach(array('json_payload', 'timestamp_log') as $key) {
305                  is_array(json_decode($this->valF['json_payload'], true)) === false              if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
306                  || json_last_error() !== JSON_ERROR_NONE)) {                      is_array(json_decode($this->valF[$key], true)) === false
307              $this->correct = false;                      || json_last_error() !== JSON_ERROR_NONE)) {
308              $this->addToMessage(sprintf(                  $this->correct = false;
309                  __("Le champ %s doit être dans un format JSON valide (erreur: %s)."),                  $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
310                  sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'),                  $this->addToMessage(sprintf(
311                  json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'))                      __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
312              ));                      "<p>%s valF:</br><pre>%s</pre></p>".
313              $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);                      "<p>%s val:</br><pre>%s</pre></p>".
314                        "<p>%s POST:</br><pre>%s</pre></p>".
315                        "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
316                        $champ_text,
317                        json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
318                        $champ_text,
319                        $this->valF[$key],
320                        $champ_text,
321                        $val[$key],
322                        $champ_text,
323                        isset($_POST[$key]) ? $_POST[$key] : '',
324                        $champ_text,
325                        $this->f->get_submitted_post_value($key)
326                    ));
327                    $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
328                }
329          }          }
330    
331          // une tâche entrante doit avoir une payload avec les clés requises          // une tâche entrante doit avoir une payload avec les clés requises
332          elseif (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {          if ($this->correct && (isset($this->valF['stream']) === false ||
333                                   $this->valF['stream'] == 'input')) {
334    
335              // décode la payload JSON              // décode la payload JSON
336              $json_payload = json_decode($this->valF['json_payload'], true);              $json_payload = json_decode($this->valF['json_payload'], true);
337    
338              // défini une liste de chemin de clés requises              // défini une liste de chemin de clés requises
339              $paths = array(              $paths = array();
340                  'dossier/dossier'              if ($this->valF['category'] === 'platau') {
341              );                  $paths = array(
342                        'external_uids/dossier'
343                    );
344                }
345    
346              // tâche de type création de DI/DA              // tâche de type création de DI/DA
347              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') {
348    
349                  $paths = array_merge($paths, array(                  $paths = array_merge($paths, array(
350                        'dossier/dossier',
351                      'dossier/dossier_autorisation_type_detaille_code',                      'dossier/dossier_autorisation_type_detaille_code',
352                      'dossier/date_demande',                      'dossier/date_demande',
353                      'dossier/depot_electronique',                      'dossier/depot_electronique',
# Line 230  class task extends task_gen { Line 359  class task extends task_gen {
359                  }                  }
360    
361                  // présence d'un moyen d'identifier la collectivité/le service                  // présence d'un moyen d'identifier la collectivité/le service
362                  if (! isset($json_payload['dossier']['acteur']) &&                  if (! isset($json_payload['external_uids']['acteur']) &&
363                          ! isset($json_payload['dossier']['om_collectivite'])) {                          ! isset($json_payload['dossier']['om_collectivite'])) {
364                      $this->correct = false;                      $this->correct = false;
365                      $this->addToMessage(sprintf(                      $this->addToMessage(sprintf(
366                          __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),                          __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
367                          sprintf('<span class="bold">%s</span>', 'dossier/acteur'),                          sprintf('<span class="bold">%s</span>', 'external_uids/acteur'),
368                          sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),                          sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
369                          sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))                          sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
370                      ));                      ));
# Line 278  class task extends task_gen { Line 407  class task extends task_gen {
407          return $ret && $this->correct;          return $ret && $this->correct;
408      }      }
409    
410      protected function task_exists(string $type, string $object_id) {      /**
411         * [task_exists description]
412         * @param  string $type      [description]
413         * @param  string $object_id [description]
414         * @param  bool   $is_not_done   [description]
415         * @return [type]            [description]
416         */
417        public function task_exists(string $type, string $object_id, string $dossier = null, bool $is_not_done = true) {
418          $query = sprintf('          $query = sprintf('
419              SELECT task              SELECT task
420              FROM %1$stask              FROM %1$stask
421              WHERE state != \'%2$s\'              WHERE %2$s
422              AND type = \'%3$s\'              type = \'%3$s\'
423              AND object_id = \'%4$s\'              AND (object_id = \'%4$s\'
424                %5$s)
425              ',              ',
426              DB_PREFIXE,              DB_PREFIXE,
427              'done',              $is_not_done == true ? 'state != \''.self::STATUS_DONE.'\' AND' : '',
428              $type,              $type,
429              $object_id              $object_id,
430                $dossier !== null ? sprintf('OR dossier = \'%s\'', $dossier) : ''
431          );          );
432          $res = $this->f->get_one_result_from_db_query($query);          $res = $this->f->get_one_result_from_db_query($query);
433          if ($res['result'] !== null && $res['result'] !== '') {          if ($res['result'] !== null && $res['result'] !== '') {
# Line 316  class task extends task_gen { Line 454  class task extends task_gen {
454              // décode la paylod JSON pour extraire les données métiers à ajouter              // décode la paylod JSON pour extraire les données métiers à ajouter
455              // en tant que métadonnées de la tâche              // en tant que métadonnées de la tâche
456              $json_payload = json_decode($this->valF['json_payload'], true);              $json_payload = json_decode($this->valF['json_payload'], true);
457              $this->valF["dossier"] = $json_payload['dossier']['dossier'];  
458                // si la tâche possède déjà une clé dossier
459                if (isset($json_payload['dossier']['dossier']) &&
460                        ! empty($json_payload['dossier']['dossier'])) {
461                    $this->valF["dossier"] = $json_payload['dossier']['dossier'];
462                }
463            }
464    
465            // gestion d'une tache de type notification et de category mail
466            if (isset($val['type']) && $val['type'] === 'notification_instruction'
467                && isset($val['category']) && $val['category'] === 'mail') {
468                // Récupère l'instance de la notification
469                $inst_notif = $this->f->get_inst__om_dbform(array(
470                    "obj" => "instruction_notification",
471                    "idx" => $val['object_id'],
472                ));
473                // Envoi le mail et met à jour le suivi
474                $envoiMail = $inst_notif->send_mail_notification_demandeur();
475                // Passage de la tache à done si elle a réussi et à error
476                // si l'envoi a échoué
477                $this->valF['state'] = 'done';
478                if ($envoiMail === false) {
479                    $this->valF['state'] = 'error';
480                }
481          }          }
482      }      }
483    
# Line 329  class task extends task_gen { Line 490  class task extends task_gen {
490       */       */
491      public function add_task($params = array()) {      public function add_task($params = array()) {
492          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
493    
494            // Vérifie si la task doit être ajoutée en fonction du mode de l'application,
495            // seulement pour les tasks output
496            $task_types_si = self::TASK_TYPE_SI;
497            $task_types_sc = self::TASK_TYPE_SC;
498            $stream = isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output';
499            if ($stream === 'output'
500                && isset($params['val']['type']) === true
501                && $this->f->is_option_mode_service_consulte_enabled() === true
502                && in_array($params['val']['type'], $task_types_sc) === false) {
503                //
504                return $this->end_treatment(__METHOD__, true);
505            }
506            if ($stream === 'output'
507                && isset($params['val']['type']) === true
508                && $this->f->is_option_mode_service_consulte_enabled() === false
509                && in_array($params['val']['type'], $task_types_si) === false) {
510                //
511                return $this->end_treatment(__METHOD__, true);
512            }
513    
514            //
515          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array(
516              'creation_date' => date('Y-m-d H:i:s'),              'creation_date' => date('Y-m-d H:i:s'),
517          ));          ));
518    
519            //
520            $category = isset($params['val']['category']) === true ? $params['val']['category'] : $this->category;
521    
522          // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier          // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
523          // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche          // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
524          if (isset($params['val']['type'])          if (isset($params['val']['type'])
525              && $params['val']['type'] == "ajout_piece"              && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")
526              && isset($params['val']['stream'])              && isset($params['val']['stream'])
527              && $params['val']['stream'] == "input" ) {              && $params['val']['stream'] == "input" ) {
528              //              //
529              $json_payload = json_decode($params['val']['json_payload'], true);              $json_payload = json_decode($params['val']['json_payload'], true);
530              $document_numerise = $json_payload['document_numerise'];              if (json_last_error() !== JSON_ERROR_NONE) {
531              $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."));  
532                  return $this->end_treatment(__METHOD__, false);                  return $this->end_treatment(__METHOD__, false);
533              }              }
534              $metadata = array(              if (isset($json_payload['document_numerise']) === true
535                  "filename" => $document_numerise['nom_fichier'],                  && empty($json_payload['document_numerise']) === false) {
536                  "size" => strlen($file_content),                  //
537                  "mimetype" => $document_numerise['file_content_type'],                  $document_numerise = $json_payload['document_numerise'];
538                  "date_creation" => $document_numerise['date_creation'],                  $file_content = base64_decode($document_numerise["file_content"]);
539              );                  if ($file_content === false){
540              $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."));
541              if ($uid_fichier === OP_FAILURE) {                      return $this->end_treatment(__METHOD__, false);
542                  $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));                  }
543                  return $this->end_treatment(__METHOD__, false);                  $metadata = array(
544                        "filename" => $document_numerise['nom_fichier'],
545                        "size" => strlen($file_content),
546                        "mimetype" => $document_numerise['file_content_type'],
547                        "date_creation" => isset($document_numerise['date_creation']) === true ? $document_numerise['date_creation'] : date("Y-m-d"),
548                    );
549                    $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content", "task.uid_fichier");
550                    if ($uid_fichier === OP_FAILURE) {
551                        $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
552                        return $this->end_treatment(__METHOD__, false);
553                    }
554                    $json_payload["document_numerise"]["uid"] = $uid_fichier;
555                    // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
556                    unset($json_payload["document_numerise"]["file_content"]);
557                    $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
558              }              }
             $json_payload["document_numerise"]["uid"] = $uid_fichier;  
             $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);  
559          }          }
560    
561          // Mise à jour du DI          // Mise à jour du DI
# Line 367  class task extends task_gen { Line 563  class task extends task_gen {
563              'task' => '',              'task' => '',
564              'type' => $params['val']['type'],              'type' => $params['val']['type'],
565              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
566              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : 'new',              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
567              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
568              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
569              'stream' => isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output',              'stream' => $stream,
570              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
571                'category' => $category,
572          );          );
573    
574          // tâche sortante          // tâche sortante
575          if($valF["stream"] == "output"){          if ($valF["stream"] == "output"
576                && $valF['type'] !== 'notification_recepisse'
577                && $valF['type'] !== 'notification_instruction'
578                && $valF['type'] !== 'notification_decision') {
579    
580              // TODO expliquer ce code              // TODO expliquer ce code
581              $task_exists = $this->task_exists($valF['type'], $valF['object_id']);              $task_exists = $this->task_exists($valF['type'], $valF['object_id'], $valF['dossier']);
582              if ($valF['type'] === 'modification_DI' && $task_exists === false) {              if ($valF['type'] === 'modification_DI' && $task_exists === false) {
583                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
584              }              }
585                if ($valF['type'] === 'modification_DA' && $task_exists === false) {
586                    $task_exists = $this->task_exists('creation_DA', $valF['object_id']);
587                }
588                if ($valF['type'] === 'ajout_piece') {
589                    $task_exists = $this->task_exists('ajout_piece', $valF['object_id']);
590                }
591                if ($valF['type'] === 'creation_consultation') {
592                    $task_exists = $this->task_exists('creation_consultation', $valF['object_id']);
593                }
594              if ($task_exists !== false) {              if ($task_exists !== false) {
595                  $inst_task = $this->f->get_inst__om_dbform(array(                  $inst_task = $this->f->get_inst__om_dbform(array(
596                      "obj" => "task",                      "obj" => "task",
# Line 399  class task extends task_gen { Line 608  class task extends task_gen {
608                  return $inst_task->update_task($update_params);                  return $inst_task->update_task($update_params);
609              }              }
610          }          }
   
611          $add = $this->ajouter($valF);          $add = $this->ajouter($valF);
612          $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);          $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
613          if ($add === false) {          if ($add === false) {
# Line 420  class task extends task_gen { Line 628  class task extends task_gen {
628          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
629          $timestamp_log = $this->get_timestamp_log();          $timestamp_log = $this->get_timestamp_log();
630          if ($timestamp_log === false) {          if ($timestamp_log === false) {
631              $this->addToLog(__('XXX'), DEBUG_MODE);              $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
632              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
633          }          }
634          array_push($timestamp_log, array(          array_push($timestamp_log, array(
# Line 434  class task extends task_gen { Line 642  class task extends task_gen {
642              'type' => $this->getVal('type'),              'type' => $this->getVal('type'),
643              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
644              'state' => $params['val']['state'],              'state' => $params['val']['state'],
645              'object_id' => $this->getVal('object_id'),              'object_id' => isset($params['object_id']) == true && $this->getVal('type') == 'create_DI' ? $params['object_id'] : $this->getVal('object_id'),
646              'stream' => $this->getVal('stream'),              'stream' => $this->getVal('stream'),
647              'dossier' => $this->getVal('dossier'),              'dossier' => $this->getVal('dossier'),
648              'json_payload' => $this->getVal('json_payload'),              'json_payload' => $this->getVal('json_payload'),
649                'category' => $this->getVal('category'),
650          );          );
651          $update = $this->modifier($valF);          $update = $this->modifier($valF);
652          if ($update === false) {          if ($update === false) {
# Line 489  class task extends task_gen { Line 698  class task extends task_gen {
698          if ($this->f->get_submitted_get_value('state') !== null          if ($this->f->get_submitted_get_value('state') !== null
699              && $this->f->get_submitted_get_value('state') !== '') {              && $this->f->get_submitted_get_value('state') !== '') {
700              //              //
701              $where = sprintf(' WHERE state = \'%s\' ', $this->f->get_submitted_get_value('state'));              $where_or_and = 'WHERE';
702                if ($where !== '') {
703                    $where_or_and = 'AND';
704                }
705                $where .= sprintf(' %s state = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('state'));
706            }
707            if ($this->f->get_submitted_get_value('category') !== null
708                && $this->f->get_submitted_get_value('category') !== '') {
709                //
710                $where_or_and = 'WHERE';
711                if ($where !== '') {
712                    $where_or_and = 'AND';
713                }
714                $where .= sprintf(' %s category = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('category'));
715          }          }
716          $query = sprintf('          $query = sprintf('
717              SELECT              SELECT
# Line 508  class task extends task_gen { Line 730  class task extends task_gen {
730          $list_tasks = array();          $list_tasks = array();
731          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
732              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
733              $task['dossier'] = $task['object_id'];              $task['dossier'] = $task['dossier'];
734              if ($this->get_lien_objet_by_type($task['type']) === 'document_numerise') {              if ($task['type'] === 'ajout_piece') {
735                  $val_dn = $this->get_document_numerise_data($task['object_id']);                  $val_dn = $this->get_document_numerise_data($task['object_id']);
736                  $task['dossier'] = $val_dn['dossier'];              }
737                if ($task['stream'] === 'output') {
738                    $task['external_uids'] = $this->get_all_external_uids($task['dossier']);
739              }              }
740              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
741          }          }
# Line 654  class task extends task_gen { Line 878  class task extends task_gen {
878          return $val_dt;          return $val_dt;
879      }      }
880    
881        /**
882         * Récupère la liste des objets distincts existants dans la table des liens
883         * entre identifiants internes et identifiants externes.
884         *
885         * @return array
886         */
887        protected function get_list_distinct_objects_external_link() {
888            $query = sprintf('
889                SELECT
890                    DISTINCT(object)
891                FROM %1$slien_id_interne_uid_externe
892                ORDER BY object ASC
893                ',
894                DB_PREFIXE
895            );
896            $res = $this->f->get_all_results_from_db_query($query, true);
897            if ($res['code'] === 'KO') {
898                return array();
899            }
900            $result = array();
901            foreach ($res['result'] as $object) {
902                $result[] = $object['object'];
903            }
904            return $result;
905        }
906    
907      protected function get_external_uid($fk_idx, string $fk_idx_2) {      protected function get_external_uid($fk_idx, string $fk_idx_2) {
908          $inst_external_uid = $this->f->get_inst__by_other_idx(array(          $inst_external_uid = $this->f->get_inst__by_other_idx(array(
909              "obj" => "lien_id_interne_uid_externe",              "obj" => "lien_id_interne_uid_externe",
# Line 665  class task extends task_gen { Line 915  class task extends task_gen {
915          return $inst_external_uid->getVal('external_uid');          return $inst_external_uid->getVal('external_uid');
916      }      }
917    
918        protected function get_all_external_uids($fk_idx, $link_objects = array()) {
919            if (count($link_objects) == 0) {
920                $link_objects = $this->get_list_distinct_objects_external_link();
921            }
922            $val_external_uid = array();
923            foreach ($link_objects as $link_object) {
924                $external_uid = $this->get_external_uid($fk_idx, $link_object);
925                if ($external_uid !== '' && $external_uid !== null) {
926                    $val_external_uid[$link_object] = $external_uid;
927                }
928            }
929            return $val_external_uid;
930        }
931    
932      protected function get_demandeurs_data(string $dossier) {      protected function get_demandeurs_data(string $dossier) {
933          $val_demandeur = array();          $val_demandeur = array();
934          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 697  class task extends task_gen { Line 961  class task extends task_gen {
961          return $val_architecte;          return $val_architecte;
962      }      }
963    
964      protected function get_instruction_data(string $dossier, $type = 'decision') {      protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
965          $val_instruction = null;          $val_instruction = null;
966          $instruction_with_doc = null;          $instruction_with_doc = null;
967          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
# Line 711  class task extends task_gen { Line 975  class task extends task_gen {
975          if ($type === 'incompletude') {          if ($type === 'incompletude') {
976              $idx = $inst_di->get_last_instruction_incompletude();              $idx = $inst_di->get_last_instruction_incompletude();
977          }          }
978            // XXX Permet de récupérer l'instruction par son identifiant
979            if ($type === 'with-id') {
980                $idx = $extra_params['with-id'];
981            }
982          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
983              "obj" => "instruction",              "obj" => "instruction",
984              "idx" => $idx,              "idx" => $idx,
# Line 754  class task extends task_gen { Line 1022  class task extends task_gen {
1022          return $val_instruction;          return $val_instruction;
1023      }      }
1024    
1025        /**
1026         * Récupère les informations
1027        */
1028        protected function get_instruction_notification_data($category, $type = '', $extra_params = array()) {
1029            $val_in = array();
1030    
1031            $idx = null;
1032            if ($type === 'with-id') {
1033                $idx = $extra_params['with-id'];
1034            }
1035    
1036            // récupére les données à intégrer à la payload
1037            $inst_in = $this->f->get_inst__om_dbform(array(
1038                "obj" => "instruction_notification",
1039                "idx" => $idx,
1040            ));
1041            $val_in = $inst_in->get_json_data();
1042    
1043            // Récupération du message et du titre
1044            $inst_instruction = $this->f->get_inst__om_dbform(array(
1045                "obj" => "instruction",
1046                "idx" => $inst_in->getVal('instruction'),
1047            ));
1048            $collectivite_id = $inst_instruction->get_dossier_instruction_om_collectivite($inst_instruction->getVal('dossier'));
1049            $phrase_type_notification = array();
1050            $phrase_type_notification = $this->f->get_notification_parametre_courriel_type($collectivite_id);
1051            //
1052            $val_in['parametre_courriel_type_titre'] = $phrase_type_notification['parametre_courriel_type_titre'];
1053            $val_in['parametre_courriel_type_message'] = $phrase_type_notification['parametre_courriel_type_message'];
1054    
1055            return $val_in;
1056        }
1057    
1058      protected function sort_instruction_data(array $values, array $res) {      protected function sort_instruction_data(array $values, array $res) {
1059          $fields = array(          $fields = array(
1060                "date_evenement",
1061              "date_envoi_signature",              "date_envoi_signature",
1062              "date_retour_signature",              "date_retour_signature",
1063              "date_envoi_rar",              "date_envoi_rar",
# Line 766  class task extends task_gen { Line 1068  class task extends task_gen {
1068              "om_fichier_instruction",              "om_fichier_instruction",
1069              "tacite",              "tacite",
1070              "lettretype",              "lettretype",
1071                "commentaire"
1072          );          );
1073          foreach ($values as $key => $value) {          foreach ($values as $key => $value) {
1074              if (in_array($key, $fields) === true) {              if (in_array($key, $fields) === true) {
# Line 816  class task extends task_gen { Line 1119  class task extends task_gen {
1119          return $val_dp;          return $val_dp;
1120      }      }
1121    
1122        protected function get_avis_decision_data(string $dossier) {
1123            $inst_di = $this->f->get_inst__om_dbform(array(
1124                "obj" => "dossier",
1125                "idx" => $dossier,
1126            ));
1127            $ad = $inst_di->getVal('avis_decision');
1128            $val_ad = array();
1129            if ($ad !== null) {
1130                $inst_ad = $this->f->get_inst__om_dbform(array(
1131                    "obj" => "avis_decision",
1132                    "idx" => $ad,
1133                ));
1134                $val_ad = $inst_ad->get_json_data();
1135                $val_ad['txAvis'] = "Voir document joint";
1136                if (isset($val_ad['tacite']) ===  true
1137                    && $val_ad['tacite'] === 't') {
1138                    //
1139                    $val_ad['txAvis'] = "Sans objet";
1140                }
1141            }
1142            return $val_ad;
1143        }
1144    
1145        protected function get_signataire_arrete_data(string $sa) {
1146            $inst_sa = $this->f->get_inst__om_dbform(array(
1147                "obj" => "signataire_arrete",
1148                "idx" => $sa,
1149            ));
1150            $val_sa = array_combine($inst_sa->champs, $inst_sa->val);
1151            foreach ($val_sa as $key => $value) {
1152                $val_sa[$key] = strip_tags($value);
1153            }
1154            return $val_sa;
1155        }
1156    
1157        // XXX WIP
1158        protected function get_consultation_data(string $consultation) {
1159            $val_consultation = array();
1160            $inst_consultation = $this->f->get_inst__om_dbform(array(
1161                "obj" => "consultation",
1162                "idx" => $consultation,
1163            ));
1164            $val_consultation = $inst_consultation->get_json_data();
1165            if (isset($val_consultation['fichier']) === true
1166                && $val_consultation['fichier'] !== '') {
1167                //
1168                $val_consultation['path_fichier'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'consultation', 'fichier', $this->getVal('object_id'));
1169            }
1170            if (isset($val_consultation['om_fichier_consultation']) === true
1171                && $val_consultation['om_fichier_consultation'] !== '') {
1172                //
1173                $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'));
1174            }
1175            return $val_consultation;
1176        }
1177    
1178        // XXX WIP
1179        protected function get_service_data(string $service) {
1180            $val_service = array();
1181            $inst_service = $this->f->get_inst__om_dbform(array(
1182                "obj" => "service",
1183                "idx" => $service,
1184            ));
1185            $val_service = $inst_service->get_json_data();
1186            return $val_service;
1187        }
1188    
1189      protected function view_form_json($in_field = false) {      protected function view_form_json($in_field = false) {
1190          //          //
1191          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null
1192                && $this->getVal('state') !== self::STATUS_CANCELED) {
1193              // Liste des valeurs à afficher              // Liste des valeurs à afficher
1194              $val = array();              $val = array();
1195              //              //
# Line 829  class task extends task_gen { Line 1200  class task extends task_gen {
1200              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);
1201              $val['task'] = $val_task;              $val['task'] = $val_task;
1202              //              //
1203              if ($this->getVal('type') === 'creation_DA') {              if ($this->getVal('type') === 'creation_DA'
1204                    || $this->getVal('type') === 'modification_DA') {
1205                    //
1206                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));
1207                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');
1208                  $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);                  $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);
# Line 855  class task extends task_gen { Line 1228  class task extends task_gen {
1228              }              }
1229              //              //
1230              if ($this->getVal('type') === 'qualification_DI') {              if ($this->getVal('type') === 'qualification_DI') {
1231                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1232                  $val_external_uid = array();                  $val_external_uid = array();
1233                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1234                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
# Line 873  class task extends task_gen { Line 1246  class task extends task_gen {
1246              }              }
1247              //              //
1248              if ($this->getVal('type') === 'decision_DI') {              if ($this->getVal('type') === 'decision_DI') {
1249                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1250                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier']);                  $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1251                  $val_external_uid = array();                  $val_external_uid = array();
1252                  $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');
1253                  $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 882  class task extends task_gen { Line 1255  class task extends task_gen {
1255              }              }
1256              //              //
1257              if ($this->getVal('type') === 'incompletude_DI') {              if ($this->getVal('type') === 'incompletude_DI') {
1258                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1259                  $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')));
1260                  $val_external_uid = array();                  $val_external_uid = array();
1261                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1262                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
# Line 891  class task extends task_gen { Line 1264  class task extends task_gen {
1264              }              }
1265              //              //
1266              if ($this->getVal('type') === 'completude_DI') {              if ($this->getVal('type') === 'completude_DI') {
1267                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1268                  $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')));
1269                    $val_external_uid = array();
1270                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1271                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1272                    $val['external_uids'] = $val_external_uid;
1273                }
1274                //
1275                if ($this->getVal('type') === 'pec_metier_consultation') {
1276                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1277                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1278                    $val_external_uid = array();
1279                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1280                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1281                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1282                    $val['external_uids'] = $val_external_uid;
1283                }
1284                //
1285                if ($this->getVal('type') === 'avis_consultation') {
1286                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1287                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1288                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1289                    if (isset($val['instruction']['signataire_arrete']) === true) {
1290                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1291                    }
1292                  $val_external_uid = array();                  $val_external_uid = array();
1293                  $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');
1294                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1295                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1296                    $val['external_uids'] = $val_external_uid;
1297                }
1298                // XXX WIP
1299                if ($this->getVal('type') === 'creation_consultation') {
1300                    //
1301                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1302                    $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
1303                    $val['service'] = $this->get_service_data($val['consultation']['service']);
1304                    $val_external_uid = array();
1305                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1306                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1307                    $val['external_uids'] = $val_external_uid;
1308                }
1309                //
1310                if ($this->getVal('type') === 'notification_instruction'
1311                    || $this->getVal('type') === 'notification_recepisse'
1312                    || $this->getVal('type') === 'notification_decision') {
1313                    //
1314                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1315                    $val['demandeur'] = $this->get_demandeurs_data($this->getVal('dossier'));
1316                    $val['instruction_notification'] = $this->get_instruction_notification_data($this->getVal('category'), 'with-id', array('with-id' => $this->getVal('object_id')));
1317                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $val['instruction_notification']['instruction']));
1318                    $val_external_uid = array();
1319                    $val_external_uid['demande'] = $this->get_external_uid($val['dossier']['dossier'], 'demande');
1320                  $val['external_uids'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1321              }              }
1322    
# Line 910  class task extends task_gen { Line 1331  class task extends task_gen {
1331    
1332      function post_update_task() {      function post_update_task() {
1333          // Mise à jour des valeurs          // Mise à jour des valeurs
1334          //  
1335          $params = array(          // Modification de l'état de la tâche
1336              'val' => array(          if ($this->f->get_submitted_post_value('state') !== null) {
1337                  'state' => $this->f->get_submitted_post_value('state')              $params = array(
1338              ),                  'val' => array(
1339          );                      'state' => $this->f->get_submitted_post_value('state')
1340          $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.')  
1341              );              );
1342                $update = $this->update_task($params);
1343                $message_class = "valid";
1344                $message = $this->msg;
1345                if ($update === false) {
1346                    $this->addToLog($this->msg, DEBUG_MODE);
1347                    $message_class = "error";
1348                    $message = sprintf(
1349                        '%s %s',
1350                        __('Impossible de mettre à jour la tâche.'),
1351                        __('Veuillez contacter votre administrateur.')
1352                    );
1353                }
1354                $this->f->displayMessage($message_class, $message);
1355          }          }
1356          $this->f->displayMessage($message_class, $message);  
1357          //          // Sauvegarde de l'uid externe retourné
1358          $inst_lien = $this->f->get_inst__om_dbform(array(          if ($this->f->get_submitted_post_value('external_uid') !== null) {
1359              "obj" => "lien_id_interne_uid_externe",              //
1360              "idx" => ']',              $objects = $this->get_objects_by_task_type($this->getVal('type'), $this->getVal('stream'));
1361          ));              foreach ($objects as $object) {
1362          $valF = array(                  $inst_lien = $this->f->get_inst__om_dbform(array(
1363              'lien_id_interne_uid_externe' => '',                      "obj" => "lien_id_interne_uid_externe",
1364              'object' => $this->get_lien_objet_by_type($this->getVal('type')),                      "idx" => ']',
1365              'object_id' => $this->getVal('object_id'),                  ));
1366              '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) {
1367          );                      $valF = array(
1368          $add = $inst_lien->ajouter($valF);                          'lien_id_interne_uid_externe' => '',
1369          $message_class = "valid";                          'object' => $object,
1370          $message = $inst_lien->msg;                          'object_id' => $this->getVal('object_id'),
1371          if ($add === false) {                          'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1372              $this->addToLog($inst_lien->msg, DEBUG_MODE);                          'dossier' => $this->getVal('dossier'),
1373              $message_class = "error";                          'category' => $this->getVal('category'),
1374              $message = sprintf(                      );
1375                  '%s %s',                      $add = $inst_lien->ajouter($valF);
1376                  __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),                      $message_class = "valid";
1377                  __('Veuillez contacter votre administrateur.')                      $message = $inst_lien->msg;
1378              );                      if ($add === false) {
1379                            $this->addToLog($inst_lien->msg, DEBUG_MODE);
1380                            $message_class = "error";
1381                            $message = sprintf(
1382                                '%s %s',
1383                                __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1384                                __('Veuillez contacter votre administrateur.')
1385                            );
1386                        }
1387                        $this->f->displayMessage($message_class, $message);
1388                    }
1389                }
1390          }          }
         $this->f->displayMessage($message_class, $message);  
1391      }      }
1392    
1393      function post_add_task() {      function post_add_task() {
# Line 962  class task extends task_gen { Line 1397  class task extends task_gen {
1397                  'stream' => 'input',                  'stream' => 'input',
1398                  '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')),
1399                  'type' => $this->f->get_submitted_post_value('type'),                  'type' => $this->f->get_submitted_post_value('type'),
1400                    'category' => $this->f->get_submitted_post_value('category'),
1401              )              )
1402          ));          ));
1403          $message = $this->msg;          $message = sprintf(
1404                __("Tâche %s ajoutée avec succès"),
1405                $this->getVal($this->clePrimaire)).
1406                '<br/><br/>'.
1407                $this->msg;
1408          $message_class = "valid";          $message_class = "valid";
1409          if ($result === false){          if ($result === false){
1410              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog($this->msg, DEBUG_MODE);
# Line 978  class task extends task_gen { Line 1418  class task extends task_gen {
1418          $this->f->displayMessage($message_class, $message);          $this->f->displayMessage($message_class, $message);
1419      }      }
1420    
1421      function get_lien_objet_by_type($type) {      function setLayout(&$form, $maj) {
1422          //  
1423          $objet = '';          // Récupération du mode de l'action
1424          if ($type === 'creation_DA') {          $crud = $this->get_action_crud($maj);
1425              $objet = 'dossier_autorisation';  
1426          }          // MODE different de CREER
1427          if ($type === 'creation_DI'          if ($maj != 0 || $crud != 'create') {
1428              || $type === 'create_DI_for_consultation'              $form->setBloc('json_payload', 'D', '', 'col_6');
1429              || $type === 'depot_DI'                  $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1430              || $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';  
1431          }          }
1432          return $objet;          $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1433      }      }
1434    
1435      function setLayout(&$form, $maj) {      /**
1436          $form->setBloc('json_payload', 'D', '', 'col_6');       * [get_objects_by_task_type description]
1437              $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");       * @param  [type] $type [description]
1438          $form->setBloc('json_payload', 'F');       * @return [type]       [description]
1439          $form->setBloc('timestamp_log', 'DF', '', 'col_9');       */
1440        function get_objects_by_task_type($type, $stream = 'all') {
1441            $objects = array();
1442            if (in_array($type, array('creation_DA', 'modification_DA', )) === true) {
1443                $objects = array('dossier_autorisation', );
1444            }
1445            if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1446                $objects = array('dossier', );
1447            }
1448            if (in_array($type, array('create_DI_for_consultation', )) === true) {
1449                $objects = array('dossier', 'dossier_consultation', );
1450            }
1451            if (in_array($type, array('create_DI', )) === true
1452                && $stream === 'input') {
1453                $objects = array('dossier', 'dossier_autorisation', 'demande', );
1454            }
1455            if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1456                $objects = array('instruction', );
1457            }
1458            if (in_array($type, array('pec_metier_consultation', )) === true
1459                && $stream === 'output') {
1460                $objects = array('pec_dossier_consultation', );
1461            }
1462            if (in_array($type, array('avis_consultation', )) === true
1463                && $stream === 'output') {
1464                $objects = array('avis_dossier_consultation', );
1465            }
1466            if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1467                $objects = array('piece', );
1468            }
1469            if (in_array($type, array('creation_consultation', )) === true) {
1470                $objects = array('consultation', );
1471            }
1472            if (in_array($type, array('pec_metier_consultation', )) === true
1473                && $stream === 'input') {
1474                $objects = array('pec_metier_consultation', );
1475            }
1476            if (in_array($type, array('avis_consultation', )) === true
1477                && $stream === 'input') {
1478                $objects = array('avis_consultation', );
1479            }
1480            if (in_array($type, array('create_message', )) === true
1481                && $stream === 'input') {
1482                $objects = array('dossier_message', );
1483            }
1484            if (in_array($type, array('notification_recepisse', 'notification_instruction', 'notification_decision' )) === true) {
1485                $objects = array('instruction_notification', );
1486            }
1487            return $objects;
1488      }      }
1489    
1490  }  }

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26