/[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 branches/5.0.0-develop/obj/task.class.php revision 10356 by softime, Thu Sep 2 12:27:22 2021 UTC
# Line 15  class task extends task_gen { Line 15  class task extends task_gen {
15      const STATUS_ARCHIVED = 'archived';      const STATUS_ARCHIVED = 'archived';
16    
17      /**      /**
18         * Liste des types de tâche concernant les services instructeurs
19         */
20        const TASK_TYPE_SI = array(
21            'creation_DA',
22            'creation_DI',
23            'depot_DI',
24            'modification_DI',
25            'qualification_DI',
26            'decision_DI',
27            'incompletude_DI',
28            'completude_DI',
29            'ajout_piece',
30            'add_piece',
31            'creation_consultation',
32            'modification_DA',
33            'create_DI',
34        );
35    
36        /**
37         * Liste des types de tâche concernant les services consultés
38         */
39        const TASK_TYPE_SC = array(
40            'create_DI_for_consultation',
41            'avis_consultation',
42            'pec_metier_consultation',
43        );
44    
45        /**
46       * Définition des actions disponibles sur la classe.       * Définition des actions disponibles sur la classe.
47       *       *
48       * @return void       * @return void
# Line 40  class task extends task_gen { Line 68  class task extends task_gen {
68      }      }
69    
70      public function setvalF($val = array()) {      public function setvalF($val = array()) {
71    
72            // // les guillets doubles sont remplacés automatiquement par des simples
73            // // dans core/om_formulaire.clasS.php::recupererPostvar()
74            // // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
75            // // ceci est un hack sale temporaire en attendant résolution du ticket
76            // foreach(array('json_payload', 'timestamp_log') as $key) {
77            //     if (isset($val[$key]) && ! empty($val[$key]) &&
78            //             isset($_POST[$key]) && ! empty($_POST[$key])) {
79            //         $submited_payload = $_POST[$key];
80            //         if (! empty($submited_payload)) {
81            //             $new_payload = str_replace("'", '"', $val[$key]);
82            //             if ($new_payload == $submited_payload ||
83            //                     strpos($submited_payload, '"') === false) {
84            //                 $val[$key] = $new_payload;
85            //             }
86            //             else {
87            //                 $error_msg = sprintf(
88            //                     __("La convertion des guillemets de la payload JSON '%s' ".
89            //                         "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
90            //                     $key, var_export($val[$key], true), var_export($submited_payload, true),
91            //                     var_export($new_payload, true));
92            //                 $this->correct = false;
93            //                 $this->addToMessage($error_msg);
94            //                 $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
95            //                 return false;
96            //             }
97            //         }
98            //     }
99            // }
100    
101          parent::setvalF($val);          parent::setvalF($val);
102          //  
103            // XXX Ancien code : permet de ne pas avoir d'erreru lors de la modification d'une task
104          if (array_key_exists('timestamp_log', $val) === true) {          if (array_key_exists('timestamp_log', $val) === true) {
105              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
106          }          }
107    
108            // récupération de l'ID de l'objet existant
109            $id = property_exists($this, 'id') ? $this->id : null;
110            if(isset($val[$this->clePrimaire])) {
111                $id = $val[$this->clePrimaire];
112            } elseif(isset($this->valF[$this->clePrimaire])) {
113                $id = $this->valF[$this->clePrimaire];
114            }
115    
116            // MODE MODIFIER
117            if (! empty($id)) {
118    
119                // si aucune payload n'est fourni (devrait toujours être le cas)
120                if (! isset($val['json_payload']) || empty($val['json_payload'])) {
121    
122                    // récupère l'objet existant
123                    $existing = $this->f->findObjectById(get_class($this), $id);
124                    if (! empty($existing)) {
125    
126                        // récupère la payload de l'objet
127                        $val['json_payload'] = $existing->getVal('json_payload');
128                        $this->valF['json_payload'] = $existing->getVal('json_payload');
129                        $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
130                            "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
131                    }
132                }
133            }
134      }      }
135    
136      /**      /**
# Line 66  class task extends task_gen { Line 152  class task extends task_gen {
152    
153      function setType(&$form, $maj) {      function setType(&$form, $maj) {
154          parent::setType($form, $maj);          parent::setType($form, $maj);
155    
156          // Récupération du mode de l'action          // Récupération du mode de l'action
157          $crud = $this->get_action_crud($maj);          $crud = $this->get_action_crud($maj);
158    
159          if ($maj < 2) {          // MODE CREER
160            if ($maj == 0 || $crud == 'create') {
161                $form->setType("state", "select");
162                $form->setType("stream", "select");
163                $form->setType("json_payload", "textarea");
164            }
165            // MDOE MODIFIER
166            if ($maj == 1 || $crud == 'update') {
167              $form->setType("state", "select");              $form->setType("state", "select");
168              $form->setType("stream", "select");              $form->setType("stream", "select");
169              $form->setType("json_payload", "jsonprettyprint");              $form->setType("json_payload", "jsonprettyprint");
170          }          }
171          if ($maj == 3){          // MODE CONSULTER
172            if ($maj == 3 || $crud == 'read') {
173              $form->setType('dossier', 'link');              $form->setType('dossier', 'link');
174              $form->setType('json_payload', 'jsonprettyprint');              $form->setType('json_payload', 'jsonprettyprint');
175          }          }
# Line 113  class task extends task_gen { Line 208  class task extends task_gen {
208                      "idx" => $form->val['dossier'],                      "idx" => $form->val['dossier'],
209                  ));                  ));
210    
211                  if($form->val['type'] == "creation_DA"){                  if($form->val['type'] == "creation_DA"
212                        || $form->val['type'] == "modification_DA"){
213                        //
214                      $obj_link = 'dossier_autorisation';                      $obj_link = 'dossier_autorisation';
215                  } else {                  } else {
216                      $obj_link = 'dossier_instruction';                      $obj_link = 'dossier_instruction';
# Line 146  class task extends task_gen { Line 243  class task extends task_gen {
243    
244      function setLib(&$form, $maj) {      function setLib(&$form, $maj) {
245          parent::setLib($form, $maj);          parent::setLib($form, $maj);
246          $form->setLib('json_payload', '');  
247            // Récupération du mode de l'action
248            $crud = $this->get_action_crud($maj);
249    
250            // MODE different de CREER
251            if ($maj != 0 || $crud != 'create') {
252                $form->setLib('json_payload', '');
253            }
254      }      }
255    
256      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
257          $ret = parent::verifier($val, $dnu1, $dnu2);          $ret = parent::verifier($val, $dnu1, $dnu2);
258    
         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'))  
             ));  
         }  
   
259          // 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
260          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
261              if (isset($this->valF['type']) === false) {              if (isset($this->valF['type']) === false) {
# Line 182  class task extends task_gen { Line 276  class task extends task_gen {
276              }              }
277          }          }
278    
279          // le JSON doit être décodable          // les JSONs doivent être décodables
280          if (isset($this->valF['json_payload']) && ! empty($this->valF['json_payload']) && (          foreach(array('json_payload', 'timestamp_log') as $key) {
281                  is_array(json_decode($this->valF['json_payload'], true)) === false              if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
282                  || json_last_error() !== JSON_ERROR_NONE)) {                      is_array(json_decode($this->valF[$key], true)) === false
283              $this->correct = false;                      || json_last_error() !== JSON_ERROR_NONE)) {
284              $this->addToMessage(sprintf(                  $this->correct = false;
285                  __("Le champ %s doit être dans un format JSON valide (erreur: %s)."),                  $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
286                  sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'),                  $this->addToMessage(sprintf(
287                  json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'))                      __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
288              ));                      "<p>%s valF:</br><pre>%s</pre></p>".
289              $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);                      "<p>%s val:</br><pre>%s</pre></p>".
290                        "<p>%s POST:</br><pre>%s</pre></p>".
291                        "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
292                        $champ_text,
293                        json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
294                        $champ_text,
295                        $this->valF[$key],
296                        $champ_text,
297                        $val[$key],
298                        $champ_text,
299                        isset($_POST[$key]) ? $_POST[$key] : '',
300                        $champ_text,
301                        $this->f->get_submitted_post_value($key)
302                    ));
303                    $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
304                }
305          }          }
306    
307          // 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
308          elseif (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {          if ($this->correct && (isset($this->valF['stream']) === false ||
309                                   $this->valF['stream'] == 'input')) {
310    
311              // décode la payload JSON              // décode la payload JSON
312              $json_payload = json_decode($this->valF['json_payload'], true);              $json_payload = json_decode($this->valF['json_payload'], true);
# Line 222  class task extends task_gen { Line 332  class task extends task_gen {
332                  }                  }
333    
334                  // présence d'un moyen d'identifier la collectivité/le service                  // présence d'un moyen d'identifier la collectivité/le service
335                  if (! isset($json_payload['dossier']['acteur']) &&                  if (! isset($json_payload['external_uids']['acteur']) &&
336                          ! isset($json_payload['dossier']['om_collectivite'])) {                          ! isset($json_payload['dossier']['om_collectivite'])) {
337                      $this->correct = false;                      $this->correct = false;
338                      $this->addToMessage(sprintf(                      $this->addToMessage(sprintf(
339                          __("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."),
340                          sprintf('<span class="bold">%s</span>', 'dossier/acteur'),                          sprintf('<span class="bold">%s</span>', 'external_uids/acteur'),
341                          sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),                          sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
342                          sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))                          sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
343                      ));                      ));
# Line 270  class task extends task_gen { Line 380  class task extends task_gen {
380          return $ret && $this->correct;          return $ret && $this->correct;
381      }      }
382    
383      protected function task_exists(string $type, string $object_id) {      /**
384         * [task_exists description]
385         * @param  string $type      [description]
386         * @param  string $object_id [description]
387         * @return [type]            [description]
388         */
389        public function task_exists(string $type, string $object_id) {
390          $query = sprintf('          $query = sprintf('
391              SELECT task              SELECT task
392              FROM %1$stask              FROM %1$stask
# Line 314  class task extends task_gen { Line 430  class task extends task_gen {
430                      ! empty($json_payload['dossier']['dossier'])) {                      ! empty($json_payload['dossier']['dossier'])) {
431                  $this->valF["dossier"] = $json_payload['dossier']['dossier'];                  $this->valF["dossier"] = $json_payload['dossier']['dossier'];
432              }              }
   
             // sinon si la tâche possède une clé external_uids/dossier  
             elseif(isset($json_payload['external_uids']['dossier']) &&  
                     ! empty($json_payload['external_uids']['dossier'])) {  
   
                 // instancie l'objet lien_id_interne_uid_externe  
                 $inst_lien = $this->f->get_inst__om_dbform(array(  
                     "obj" => "lien_id_interne_uid_externe",  
                     "idx" => ']',  
                 ));  
                 if(! $dossier = $inst_lien->get_id_dossier_from_external_uid(  
                         $json_payload['external_uids']['dossier'])){  
                     $error_msg = sprintf(  
                         __("Aucune correspondance de dossier pour l'external_uid.dossier '%s'."),  
                         $json_payload['external_uids']['dossier']);  
                     $this->addToLog(__METHOD__."() : erreur : $error_msg", DEBUG_MODE);  
                     $this->addToMessage($error_msg);  
                     $this->correct = false;  
                     return false;  
                 }  
                 $this->valF["dossier"] = $dossier;  
             }  
433          }          }
434      }      }
435    
# Line 348  class task extends task_gen { Line 442  class task extends task_gen {
442       */       */
443      public function add_task($params = array()) {      public function add_task($params = array()) {
444          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
445    
446            // Vérifie si la task doit être ajoutée en fonction du mode de l'application,
447            // seulement pour les tasks output
448            $task_types_si = self::TASK_TYPE_SI;
449            $task_types_sc = self::TASK_TYPE_SC;
450            $stream = isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output';
451            if ($stream === 'output'
452                && isset($params['val']['type']) === true
453                && $this->f->is_option_mode_service_consulte_enabled() === true
454                && in_array($params['val']['type'], $task_types_sc) === false) {
455                //
456                return $this->end_treatment(__METHOD__, true);
457            }
458            if ($stream === 'output'
459                && isset($params['val']['type']) === true
460                && $this->f->is_option_mode_service_consulte_enabled() === false
461                && in_array($params['val']['type'], $task_types_si) === false) {
462                //
463                return $this->end_treatment(__METHOD__, true);
464            }
465    
466          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array(
467              'creation_date' => date('Y-m-d H:i:s'),              'creation_date' => date('Y-m-d H:i:s'),
468          ));          ));
# Line 355  class task extends task_gen { Line 470  class task extends task_gen {
470          // 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
471          // 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
472          if (isset($params['val']['type'])          if (isset($params['val']['type'])
473              && $params['val']['type'] == "add_piece"              && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")
474              && isset($params['val']['stream'])              && isset($params['val']['stream'])
475              && $params['val']['stream'] == "input" ) {              && $params['val']['stream'] == "input" ) {
476              //              //
477              $json_payload = json_decode($params['val']['json_payload'], true);              $json_payload = json_decode($params['val']['json_payload'], true);
478              $document_numerise = $json_payload['document_numerise'];              if (json_last_error() !== JSON_ERROR_NONE) {
479              $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."));  
480                  return $this->end_treatment(__METHOD__, false);                  return $this->end_treatment(__METHOD__, false);
481              }              }
482              $metadata = array(              if (isset($json_payload['document_numerise']) === true
483                  "filename" => $document_numerise['nom_fichier'],                  && empty($json_payload['document_numerise']) === false) {
484                  "size" => strlen($file_content),                  //
485                  "mimetype" => $document_numerise['file_content_type'],                  $document_numerise = $json_payload['document_numerise'];
486                  "date_creation" => $document_numerise['date_creation'],                  $file_content = base64_decode($document_numerise["file_content"]);
487              );                  if ($file_content === false){
488              $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."));
489              if ($uid_fichier === OP_FAILURE) {                      return $this->end_treatment(__METHOD__, false);
490                  $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));                  }
491                  return $this->end_treatment(__METHOD__, false);                  $metadata = array(
492                        "filename" => $document_numerise['nom_fichier'],
493                        "size" => strlen($file_content),
494                        "mimetype" => $document_numerise['file_content_type'],
495                        "date_creation" => isset($document_numerise['date_creation']) === true ? $document_numerise['date_creation'] : date("Y-m-d"),
496                    );
497                    $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content", "task.uid_fichier");
498                    if ($uid_fichier === OP_FAILURE) {
499                        $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
500                        return $this->end_treatment(__METHOD__, false);
501                    }
502                    $json_payload["document_numerise"]["uid"] = $uid_fichier;
503                    // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
504                    unset($json_payload["document_numerise"]["file_content"]);
505                    $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
506              }              }
             $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);  
507          }          }
508    
509          // Mise à jour du DI          // Mise à jour du DI
# Line 391  class task extends task_gen { Line 514  class task extends task_gen {
514              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
515              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
516              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
517              'stream' => isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output',              'stream' => $stream,
518              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
519          );          );
520    
# Line 403  class task extends task_gen { Line 526  class task extends task_gen {
526              if ($valF['type'] === 'modification_DI' && $task_exists === false) {              if ($valF['type'] === 'modification_DI' && $task_exists === false) {
527                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
528              }              }
529                if ($valF['type'] === 'modification_DA' && $task_exists === false) {
530                    $task_exists = $this->task_exists('creation_DA', $valF['object_id']);
531                }
532              if ($task_exists !== false) {              if ($task_exists !== false) {
533                  $inst_task = $this->f->get_inst__om_dbform(array(                  $inst_task = $this->f->get_inst__om_dbform(array(
534                      "obj" => "task",                      "obj" => "task",
# Line 441  class task extends task_gen { Line 567  class task extends task_gen {
567          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
568          $timestamp_log = $this->get_timestamp_log();          $timestamp_log = $this->get_timestamp_log();
569          if ($timestamp_log === false) {          if ($timestamp_log === false) {
570              $this->addToLog(__('XXX'), DEBUG_MODE);              $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
571              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
572          }          }
573          array_push($timestamp_log, array(          array_push($timestamp_log, array(
# Line 529  class task extends task_gen { Line 655  class task extends task_gen {
655          $list_tasks = array();          $list_tasks = array();
656          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
657              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
658              $task['dossier'] = $task['object_id'];              $task['dossier'] = $task['dossier'];
659              if ($this->get_lien_objet_by_type($task['type']) === 'document_numerise') {              if ($task['type'] === 'ajout_piece') {
660                  $val_dn = $this->get_document_numerise_data($task['object_id']);                  $val_dn = $this->get_document_numerise_data($task['object_id']);
661                  $task['dossier'] = $val_dn['dossier'];              }
662                if ($task['stream'] === 'output') {
663                    $task['external_uids'] = $this->get_all_external_uids($task['dossier']);
664              }              }
665              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
666          }          }
# Line 675  class task extends task_gen { Line 803  class task extends task_gen {
803          return $val_dt;          return $val_dt;
804      }      }
805    
806        /**
807         * Récupère la liste des objets distincts existants dans la table des liens
808         * entre identifiants internes et identifiants externes.
809         *
810         * @return array
811         */
812        protected function get_list_distinct_objects_external_link() {
813            $query = sprintf('
814                SELECT
815                    DISTINCT(object)
816                FROM %1$slien_id_interne_uid_externe
817                ORDER BY object ASC
818                ',
819                DB_PREFIXE
820            );
821            $res = $this->f->get_all_results_from_db_query($query, true);
822            if ($res['code'] === 'KO') {
823                return array();
824            }
825            $result = array();
826            foreach ($res['result'] as $object) {
827                $result[] = $object['object'];
828            }
829            return $result;
830        }
831    
832      protected function get_external_uid($fk_idx, string $fk_idx_2) {      protected function get_external_uid($fk_idx, string $fk_idx_2) {
833          $inst_external_uid = $this->f->get_inst__by_other_idx(array(          $inst_external_uid = $this->f->get_inst__by_other_idx(array(
834              "obj" => "lien_id_interne_uid_externe",              "obj" => "lien_id_interne_uid_externe",
# Line 686  class task extends task_gen { Line 840  class task extends task_gen {
840          return $inst_external_uid->getVal('external_uid');          return $inst_external_uid->getVal('external_uid');
841      }      }
842    
843        protected function get_all_external_uids($fk_idx, $link_objects = array()) {
844            if (count($link_objects) == 0) {
845                $link_objects = $this->get_list_distinct_objects_external_link();
846            }
847            $val_external_uid = array();
848            foreach ($link_objects as $link_object) {
849                $external_uid = $this->get_external_uid($fk_idx, $link_object);
850                if ($external_uid !== '' && $external_uid !== null) {
851                    $val_external_uid[$link_object] = $external_uid;
852                }
853            }
854            return $val_external_uid;
855        }
856    
857      protected function get_demandeurs_data(string $dossier) {      protected function get_demandeurs_data(string $dossier) {
858          $val_demandeur = array();          $val_demandeur = array();
859          $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 886  class task extends task_gen {
886          return $val_architecte;          return $val_architecte;
887      }      }
888    
889      protected function get_instruction_data(string $dossier, $type = 'decision') {      protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
890          $val_instruction = null;          $val_instruction = null;
891          $instruction_with_doc = null;          $instruction_with_doc = null;
892          $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 900  class task extends task_gen {
900          if ($type === 'incompletude') {          if ($type === 'incompletude') {
901              $idx = $inst_di->get_last_instruction_incompletude();              $idx = $inst_di->get_last_instruction_incompletude();
902          }          }
903            // XXX Permet de récupérer l'instruction par son identifiant
904            if ($type === 'with-id') {
905                $idx = $extra_params['with-id'];
906            }
907          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
908              "obj" => "instruction",              "obj" => "instruction",
909              "idx" => $idx,              "idx" => $idx,
# Line 777  class task extends task_gen { Line 949  class task extends task_gen {
949    
950      protected function sort_instruction_data(array $values, array $res) {      protected function sort_instruction_data(array $values, array $res) {
951          $fields = array(          $fields = array(
952                "date_evenement",
953              "date_envoi_signature",              "date_envoi_signature",
954              "date_retour_signature",              "date_retour_signature",
955              "date_envoi_rar",              "date_envoi_rar",
# Line 837  class task extends task_gen { Line 1010  class task extends task_gen {
1010          return $val_dp;          return $val_dp;
1011      }      }
1012    
1013        protected function get_avis_decision_data(string $dossier) {
1014            $inst_di = $this->f->get_inst__om_dbform(array(
1015                "obj" => "dossier",
1016                "idx" => $dossier,
1017            ));
1018            $ad = $inst_di->getVal('avis_decision');
1019            $val_ad = array();
1020            if ($ad !== null) {
1021                $inst_ad = $this->f->get_inst__om_dbform(array(
1022                    "obj" => "avis_decision",
1023                    "idx" => $ad,
1024                ));
1025                $val_ad = $inst_ad->get_json_data();
1026                $val_ad['txAvis'] = "Voir document joint";
1027                if (isset($val_ad['tacite']) ===  true
1028                    && $val_ad['tacite'] === 't') {
1029                    //
1030                    $val_ad['txAvis'] = "Sans objet";
1031                }
1032            }
1033            return $val_ad;
1034        }
1035    
1036        protected function get_signataire_arrete_data(string $sa) {
1037            $inst_sa = $this->f->get_inst__om_dbform(array(
1038                "obj" => "signataire_arrete",
1039                "idx" => $sa,
1040            ));
1041            $val_sa = array_combine($inst_sa->champs, $inst_sa->val);
1042            foreach ($val_sa as $key => $value) {
1043                $val_sa[$key] = strip_tags($value);
1044            }
1045            return $val_sa;
1046        }
1047    
1048        // XXX WIP
1049        protected function get_consultation_data(string $consultation) {
1050            $val_consultation = array();
1051            $inst_consultation = $this->f->get_inst__om_dbform(array(
1052                "obj" => "consultation",
1053                "idx" => $consultation,
1054            ));
1055            $val_consultation = $inst_consultation->get_json_data();
1056            if (isset($val_consultation['fichier']) === true
1057                && $val_consultation['fichier'] !== '') {
1058                //
1059                $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'));
1060            }
1061            if (isset($val_consultation['om_fichier_consultation']) === true
1062                && $val_consultation['om_fichier_consultation'] !== '') {
1063                //
1064                $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'));
1065            }
1066            return $val_consultation;
1067        }
1068    
1069        // XXX WIP
1070        protected function get_service_data(string $service) {
1071            $val_service = array();
1072            $inst_service = $this->f->get_inst__om_dbform(array(
1073                "obj" => "service",
1074                "idx" => $service,
1075            ));
1076            $val_service = $inst_service->get_json_data();
1077            return $val_service;
1078        }
1079    
1080      protected function view_form_json($in_field = false) {      protected function view_form_json($in_field = false) {
1081          //          //
1082          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null
1083                && $this->getVal('state') !== self::STATUS_DRAFT) {
1084              // Liste des valeurs à afficher              // Liste des valeurs à afficher
1085              $val = array();              $val = array();
1086              //              //
# Line 850  class task extends task_gen { Line 1091  class task extends task_gen {
1091              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);              $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);
1092              $val['task'] = $val_task;              $val['task'] = $val_task;
1093              //              //
1094              if ($this->getVal('type') === 'creation_DA') {              if ($this->getVal('type') === 'creation_DA'
1095                    || $this->getVal('type') === 'modification_DA') {
1096                    //
1097                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));                  $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));
1098                  $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');
1099                  $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 1119  class task extends task_gen {
1119              }              }
1120              //              //
1121              if ($this->getVal('type') === 'qualification_DI') {              if ($this->getVal('type') === 'qualification_DI') {
1122                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1123                  $val_external_uid = array();                  $val_external_uid = array();
1124                  $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');
1125                  $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 1137  class task extends task_gen {
1137              }              }
1138              //              //
1139              if ($this->getVal('type') === 'decision_DI') {              if ($this->getVal('type') === 'decision_DI') {
1140                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1141                  $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')));
1142                  $val_external_uid = array();                  $val_external_uid = array();
1143                  $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');
1144                  $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 1146  class task extends task_gen {
1146              }              }
1147              //              //
1148              if ($this->getVal('type') === 'incompletude_DI') {              if ($this->getVal('type') === 'incompletude_DI') {
1149                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1150                  $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')));
1151                  $val_external_uid = array();                  $val_external_uid = array();
1152                  $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');
1153                  $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 1155  class task extends task_gen {
1155              }              }
1156              //              //
1157              if ($this->getVal('type') === 'completude_DI') {              if ($this->getVal('type') === 'completude_DI') {
1158                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1159                  $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')));
1160                    $val_external_uid = array();
1161                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1162                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1163                    $val['external_uids'] = $val_external_uid;
1164                }
1165                //
1166                if ($this->getVal('type') === 'pec_metier_consultation') {
1167                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1168                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1169                    $val_external_uid = array();
1170                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1171                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1172                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1173                    $val['external_uids'] = $val_external_uid;
1174                }
1175                //
1176                if ($this->getVal('type') === 'avis_consultation') {
1177                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1178                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1179                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1180                    if (isset($val['instruction']['signataire_arrete']) === true) {
1181                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1182                    }
1183                    $val_external_uid = array();
1184                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1185                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1186                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1187                    $val['external_uids'] = $val_external_uid;
1188                }
1189                // XXX WIP
1190                if ($this->getVal('type') === 'creation_consultation') {
1191                    //
1192                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1193                    $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
1194                    $val['service'] = $this->get_service_data($val['consultation']['service']);
1195                  $val_external_uid = array();                  $val_external_uid = array();
1196                  $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');
1197                  $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 931  class task extends task_gen { Line 1209  class task extends task_gen {
1209    
1210      function post_update_task() {      function post_update_task() {
1211          // Mise à jour des valeurs          // Mise à jour des valeurs
1212          //  
1213          $params = array(          // Modification de l'état de la tâche
1214              'val' => array(          if ($this->f->get_submitted_post_value('state') !== null) {
1215                  'state' => $this->f->get_submitted_post_value('state')              $params = array(
1216              ),                  'val' => array(
1217          );                      'state' => $this->f->get_submitted_post_value('state')
1218          $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.')  
1219              );              );
1220                $update = $this->update_task($params);
1221                $message_class = "valid";
1222                $message = $this->msg;
1223                if ($update === false) {
1224                    $this->addToLog($this->msg, DEBUG_MODE);
1225                    $message_class = "error";
1226                    $message = sprintf(
1227                        '%s %s',
1228                        __('Impossible de mettre à jour la tâche.'),
1229                        __('Veuillez contacter votre administrateur.')
1230                    );
1231                }
1232                $this->f->displayMessage($message_class, $message);
1233          }          }
1234          $this->f->displayMessage($message_class, $message);  
1235          //          // Sauvegarde de l'uid externe retourné
1236          $inst_lien = $this->f->get_inst__om_dbform(array(          if ($this->f->get_submitted_post_value('external_uid') !== null) {
1237              "obj" => "lien_id_interne_uid_externe",              //
1238              "idx" => ']',              $objects = $this->get_objects_by_task_type($this->getVal('type'), $this->getVal('stream'));
1239          ));              foreach ($objects as $object) {
1240          $valF = array(                  $inst_lien = $this->f->get_inst__om_dbform(array(
1241              'lien_id_interne_uid_externe' => '',                      "obj" => "lien_id_interne_uid_externe",
1242              'object' => $this->get_lien_objet_by_type($this->getVal('type')),                      "idx" => ']',
1243              'object_id' => $this->getVal('object_id'),                  ));
1244              '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) {
1245          );                      $valF = array(
1246          $add = $inst_lien->ajouter($valF);                          'lien_id_interne_uid_externe' => '',
1247          $message_class = "valid";                          'object' => $object,
1248          $message = $inst_lien->msg;                          'object_id' => $this->getVal('object_id'),
1249          if ($add === false) {                          'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1250              $this->addToLog($inst_lien->msg, DEBUG_MODE);                          'dossier' => $this->getVal('dossier'),
1251              $message_class = "error";                      );
1252              $message = sprintf(                      $add = $inst_lien->ajouter($valF);
1253                  '%s %s',                      $message_class = "valid";
1254                  __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),                      $message = $inst_lien->msg;
1255                  __('Veuillez contacter votre administrateur.')                      if ($add === false) {
1256              );                          $this->addToLog($inst_lien->msg, DEBUG_MODE);
1257                            $message_class = "error";
1258                            $message = sprintf(
1259                                '%s %s',
1260                                __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1261                                __('Veuillez contacter votre administrateur.')
1262                            );
1263                        }
1264                        $this->f->displayMessage($message_class, $message);
1265                    }
1266                }
1267          }          }
         $this->f->displayMessage($message_class, $message);  
1268      }      }
1269    
1270      function post_add_task() {      function post_add_task() {
# Line 985  class task extends task_gen { Line 1276  class task extends task_gen {
1276                  'type' => $this->f->get_submitted_post_value('type'),                  'type' => $this->f->get_submitted_post_value('type'),
1277              )              )
1278          ));          ));
1279          $message = $this->msg;          $message = sprintf(
1280                __("Tâche %s ajoutée avec succès"),
1281                $this->getVal($this->clePrimaire)).
1282                '<br/><br/>'.
1283                $this->msg;
1284          $message_class = "valid";          $message_class = "valid";
1285          if ($result === false){          if ($result === false){
1286              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog($this->msg, DEBUG_MODE);
# Line 999  class task extends task_gen { Line 1294  class task extends task_gen {
1294          $this->f->displayMessage($message_class, $message);          $this->f->displayMessage($message_class, $message);
1295      }      }
1296    
1297      function get_lien_objet_by_type($type) {      function setLayout(&$form, $maj) {
1298          //  
1299          $objet = '';          // Récupération du mode de l'action
1300          if ($type === 'creation_DA') {          $crud = $this->get_action_crud($maj);
1301              $objet = 'dossier_autorisation';  
1302          }          // MODE different de CREER
1303          if ($type === 'creation_DI'          if ($maj != 0 || $crud != 'create') {
1304              || $type === 'create_DI_for_consultation'              $form->setBloc('json_payload', 'D', '', 'col_6');
1305              || $type === 'depot_DI'                  $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1306              || $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';  
1307          }          }
1308          return $objet;          $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1309      }      }
1310    
1311      function setLayout(&$form, $maj) {      /**
1312          $form->setBloc('json_payload', 'D', '', 'col_6');       * [get_objects_by_task_type description]
1313              $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");       * @param  [type] $type [description]
1314          $form->setBloc('json_payload', 'F');       * @return [type]       [description]
1315          $form->setBloc('timestamp_log', 'DF', '', 'col_9');       */
1316        function get_objects_by_task_type($type, $stream = 'all') {
1317            $objects = array();
1318            if (in_array($type, array('creation_DA', 'modification_DA', )) === true) {
1319                $objects = array('dossier_autorisation', );
1320            }
1321            if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1322                $objects = array('dossier', );
1323            }
1324            if (in_array($type, array('create_DI_for_consultation', )) === true) {
1325                $objects = array('dossier', 'dossier_consultation', );
1326            }
1327            if (in_array($type, array('create_DI', )) === true
1328                && $stream === 'input') {
1329                $objects = array('dossier', 'dossier_autorisation', );
1330            }
1331            if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1332                $objects = array('instruction', );
1333            }
1334            if (in_array($type, array('pec_metier_consultation', )) === true
1335                && $stream === 'output') {
1336                $objects = array('pec_dossier_consultation', );
1337            }
1338            if (in_array($type, array('avis_consultation', )) === true
1339                && $stream === 'output') {
1340                $objects = array('avis_dossier_consultation', );
1341            }
1342            if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1343                $objects = array('piece', );
1344            }
1345            if (in_array($type, array('creation_consultation', )) === true) {
1346                $objects = array('consultation', );
1347            }
1348            if (in_array($type, array('pec_metier_consultation', )) === true
1349                && $stream === 'input') {
1350                $objects = array('pec_metier_consultation', );
1351            }
1352            if (in_array($type, array('avis_consultation', )) === true
1353                && $stream === 'input') {
1354                $objects = array('avis_consultation', );
1355            }
1356            return $objects;
1357      }      }
1358    
1359  }  }

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26