/[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 10211 by softime, Tue Jun 29 14:54:02 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        );
33    
34        /**
35         * Liste des types de tâche concernant les services consultés
36         */
37        const TASK_TYPE_SC = array(
38            'create_DI_for_consultation',
39            'avis_consultation',
40            'pec_metier_consultation',
41        );
42    
43        /**
44       * Définition des actions disponibles sur la classe.       * Définition des actions disponibles sur la classe.
45       *       *
46       * @return void       * @return void
# Line 40  class task extends task_gen { Line 66  class task extends task_gen {
66      }      }
67    
68      public function setvalF($val = array()) {      public function setvalF($val = array()) {
69    
70            // // les guillets doubles sont remplacés automatiquement par des simples
71            // // dans core/om_formulaire.clasS.php::recupererPostvar()
72            // // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
73            // // ceci est un hack sale temporaire en attendant résolution du ticket
74            // foreach(array('json_payload', 'timestamp_log') as $key) {
75            //     if (isset($val[$key]) && ! empty($val[$key]) &&
76            //             isset($_POST[$key]) && ! empty($_POST[$key])) {
77            //         $submited_payload = $_POST[$key];
78            //         if (! empty($submited_payload)) {
79            //             $new_payload = str_replace("'", '"', $val[$key]);
80            //             if ($new_payload == $submited_payload ||
81            //                     strpos($submited_payload, '"') === false) {
82            //                 $val[$key] = $new_payload;
83            //             }
84            //             else {
85            //                 $error_msg = sprintf(
86            //                     __("La convertion des guillemets de la payload JSON '%s' ".
87            //                         "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
88            //                     $key, var_export($val[$key], true), var_export($submited_payload, true),
89            //                     var_export($new_payload, true));
90            //                 $this->correct = false;
91            //                 $this->addToMessage($error_msg);
92            //                 $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
93            //                 return false;
94            //             }
95            //         }
96            //     }
97            // }
98    
99          parent::setvalF($val);          parent::setvalF($val);
100          //  
101            // XXX Ancien code : permet de ne pas avoir d'erreru lors de la modification d'une task
102          if (array_key_exists('timestamp_log', $val) === true) {          if (array_key_exists('timestamp_log', $val) === true) {
103              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);              $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
104          }          }
105    
106            // récupération de l'ID de l'objet existant
107            $id = property_exists($this, 'id') ? $this->id : null;
108            if(isset($val[$this->clePrimaire])) {
109                $id = $val[$this->clePrimaire];
110            } elseif(isset($this->valF[$this->clePrimaire])) {
111                $id = $this->valF[$this->clePrimaire];
112            }
113    
114            // MODE MODIFIER
115            if (! empty($id)) {
116    
117                // si aucune payload n'est fourni (devrait toujours être le cas)
118                if (! isset($val['json_payload']) || empty($val['json_payload'])) {
119    
120                    // récupère l'objet existant
121                    $existing = $this->f->findObjectById(get_class($this), $id);
122                    if (! empty($existing)) {
123    
124                        // récupère la payload de l'objet
125                        $val['json_payload'] = $existing->getVal('json_payload');
126                        $this->valF['json_payload'] = $existing->getVal('json_payload');
127                        $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
128                            "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
129                    }
130                }
131            }
132      }      }
133    
134      /**      /**
# Line 66  class task extends task_gen { Line 150  class task extends task_gen {
150    
151      function setType(&$form, $maj) {      function setType(&$form, $maj) {
152          parent::setType($form, $maj);          parent::setType($form, $maj);
153    
154          // Récupération du mode de l'action          // Récupération du mode de l'action
155          $crud = $this->get_action_crud($maj);          $crud = $this->get_action_crud($maj);
156    
157          if ($maj < 2) {          // MODE CREER
158            if ($maj == 0 || $crud == 'create') {
159                $form->setType("state", "select");
160                $form->setType("stream", "select");
161                $form->setType("json_payload", "textarea");
162            }
163            // MDOE MODIFIER
164            if ($maj == 1 || $crud == 'update') {
165              $form->setType("state", "select");              $form->setType("state", "select");
166              $form->setType("stream", "select");              $form->setType("stream", "select");
167              $form->setType("json_payload", "jsonprettyprint");              $form->setType("json_payload", "jsonprettyprint");
168          }          }
169          if ($maj == 3){          // MODE CONSULTER
170            if ($maj == 3 || $crud == 'read') {
171              $form->setType('dossier', 'link');              $form->setType('dossier', 'link');
172              $form->setType('json_payload', 'jsonprettyprint');              $form->setType('json_payload', 'jsonprettyprint');
173          }          }
# Line 146  class task extends task_gen { Line 239  class task extends task_gen {
239    
240      function setLib(&$form, $maj) {      function setLib(&$form, $maj) {
241          parent::setLib($form, $maj);          parent::setLib($form, $maj);
242          $form->setLib('json_payload', '');  
243            // Récupération du mode de l'action
244            $crud = $this->get_action_crud($maj);
245    
246            // MODE different de CREER
247            if ($maj != 0 || $crud != 'create') {
248                $form->setLib('json_payload', '');
249            }
250      }      }
251    
252      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {      public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
253          $ret = parent::verifier($val, $dnu1, $dnu2);          $ret = parent::verifier($val, $dnu1, $dnu2);
254    
         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'))  
             ));  
         }  
   
255          // 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
256          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {          if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
257              if (isset($this->valF['type']) === false) {              if (isset($this->valF['type']) === false) {
# Line 182  class task extends task_gen { Line 272  class task extends task_gen {
272              }              }
273          }          }
274    
275          // le JSON doit être décodable          // les JSONs doivent être décodables
276          if (isset($this->valF['json_payload']) && ! empty($this->valF['json_payload']) && (          foreach(array('json_payload', 'timestamp_log') as $key) {
277                  is_array(json_decode($this->valF['json_payload'], true)) === false              if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
278                  || json_last_error() !== JSON_ERROR_NONE)) {                      is_array(json_decode($this->valF[$key], true)) === false
279              $this->correct = false;                      || json_last_error() !== JSON_ERROR_NONE)) {
280              $this->addToMessage(sprintf(                  $this->correct = false;
281                  __("Le champ %s doit être dans un format JSON valide (erreur: %s)."),                  $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
282                  sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'),                  $this->addToMessage(sprintf(
283                  json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'))                      __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
284              ));                      "<p>%s valF:</br><pre>%s</pre></p>".
285              $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);                      "<p>%s val:</br><pre>%s</pre></p>".
286                        "<p>%s POST:</br><pre>%s</pre></p>".
287                        "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
288                        $champ_text,
289                        json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
290                        $champ_text,
291                        $this->valF[$key],
292                        $champ_text,
293                        $val[$key],
294                        $champ_text,
295                        isset($_POST[$key]) ? $_POST[$key] : '',
296                        $champ_text,
297                        $this->f->get_submitted_post_value($key)
298                    ));
299                    $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
300                }
301          }          }
302    
303          // 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
304          elseif (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {          if ($this->correct && (isset($this->valF['stream']) === false ||
305                                   $this->valF['stream'] == 'input')) {
306    
307              // décode la payload JSON              // décode la payload JSON
308              $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 328  class task extends task_gen {
328                  }                  }
329    
330                  // présence d'un moyen d'identifier la collectivité/le service                  // présence d'un moyen d'identifier la collectivité/le service
331                  if (! isset($json_payload['dossier']['acteur']) &&                  if (! isset($json_payload['external_uids']['acteur']) &&
332                          ! isset($json_payload['dossier']['om_collectivite'])) {                          ! isset($json_payload['dossier']['om_collectivite'])) {
333                      $this->correct = false;                      $this->correct = false;
334                      $this->addToMessage(sprintf(                      $this->addToMessage(sprintf(
335                          __("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."),
336                          sprintf('<span class="bold">%s</span>', 'dossier/acteur'),                          sprintf('<span class="bold">%s</span>', 'external_uids/acteur'),
337                          sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),                          sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
338                          sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))                          sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
339                      ));                      ));
# Line 314  class task extends task_gen { Line 420  class task extends task_gen {
420                      ! empty($json_payload['dossier']['dossier'])) {                      ! empty($json_payload['dossier']['dossier'])) {
421                  $this->valF["dossier"] = $json_payload['dossier']['dossier'];                  $this->valF["dossier"] = $json_payload['dossier']['dossier'];
422              }              }
   
             // 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;  
             }  
423          }          }
424      }      }
425    
# Line 348  class task extends task_gen { Line 432  class task extends task_gen {
432       */       */
433      public function add_task($params = array()) {      public function add_task($params = array()) {
434          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
435    
436            // Vérifie si la task doit être ajoutée en fonction du mode de l'application,
437            // seulement pour les tasks output
438            $task_types_si = self::TASK_TYPE_SI;
439            $task_types_sc = self::TASK_TYPE_SC;
440            $stream = isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output';
441            if ($stream === 'output'
442                && isset($params['val']['type']) === true
443                && $this->f->is_option_mode_service_consulte_enabled() === true
444                && in_array($params['val']['type'], $task_types_sc) === false) {
445                //
446                return $this->end_treatment(__METHOD__, true);
447            }
448            if ($stream === 'output'
449                && isset($params['val']['type']) === true
450                && $this->f->is_option_mode_service_consulte_enabled() === false
451                && in_array($params['val']['type'], $task_types_si) === false) {
452                //
453                return $this->end_treatment(__METHOD__, true);
454            }
455    
456          $timestamp_log = json_encode(array(          $timestamp_log = json_encode(array(
457              'creation_date' => date('Y-m-d H:i:s'),              'creation_date' => date('Y-m-d H:i:s'),
458          ));          ));
# Line 355  class task extends task_gen { Line 460  class task extends task_gen {
460          // 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
461          // 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
462          if (isset($params['val']['type'])          if (isset($params['val']['type'])
463              && $params['val']['type'] == "add_piece"              && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")
464              && isset($params['val']['stream'])              && isset($params['val']['stream'])
465              && $params['val']['stream'] == "input" ) {              && $params['val']['stream'] == "input" ) {
466              //              //
467              $json_payload = json_decode($params['val']['json_payload'], true);              $json_payload = json_decode($params['val']['json_payload'], true);
468              $document_numerise = $json_payload['document_numerise'];              if (json_last_error() !== JSON_ERROR_NONE) {
469              $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."));  
470                  return $this->end_treatment(__METHOD__, false);                  return $this->end_treatment(__METHOD__, false);
471              }              }
472              $metadata = array(              if (isset($json_payload['document_numerise']) === true
473                  "filename" => $document_numerise['nom_fichier'],                  && empty($json_payload['document_numerise']) === false) {
474                  "size" => strlen($file_content),                  //
475                  "mimetype" => $document_numerise['file_content_type'],                  $document_numerise = $json_payload['document_numerise'];
476                  "date_creation" => $document_numerise['date_creation'],                  $file_content = base64_decode($document_numerise["file_content"]);
477              );                  if ($file_content === false){
478              $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."));
479              if ($uid_fichier === OP_FAILURE) {                      return $this->end_treatment(__METHOD__, false);
480                  $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));                  }
481                  return $this->end_treatment(__METHOD__, false);                  $metadata = array(
482                        "filename" => $document_numerise['nom_fichier'],
483                        "size" => strlen($file_content),
484                        "mimetype" => $document_numerise['file_content_type'],
485                        "date_creation" => isset($document_numerise['date_creation']) === true ? $document_numerise['date_creation'] : date("Y-m-d"),
486                    );
487                    $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content", "task.uid_fichier");
488                    if ($uid_fichier === OP_FAILURE) {
489                        $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
490                        return $this->end_treatment(__METHOD__, false);
491                    }
492                    $json_payload["document_numerise"]["uid"] = $uid_fichier;
493                    // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
494                    unset($json_payload["document_numerise"]["file_content"]);
495                    $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
496              }              }
             $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);  
497          }          }
498    
499          // Mise à jour du DI          // Mise à jour du DI
# Line 391  class task extends task_gen { Line 504  class task extends task_gen {
504              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
505              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',              'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
506              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',              'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
507              'stream' => isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output',              'stream' => $stream,
508              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',              'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
509          );          );
510    
# Line 441  class task extends task_gen { Line 554  class task extends task_gen {
554          $this->begin_treatment(__METHOD__);          $this->begin_treatment(__METHOD__);
555          $timestamp_log = $this->get_timestamp_log();          $timestamp_log = $this->get_timestamp_log();
556          if ($timestamp_log === false) {          if ($timestamp_log === false) {
557              $this->addToLog(__('XXX'), DEBUG_MODE);              $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
558              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
559          }          }
560          array_push($timestamp_log, array(          array_push($timestamp_log, array(
# Line 529  class task extends task_gen { Line 642  class task extends task_gen {
642          $list_tasks = array();          $list_tasks = array();
643          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
644              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
645              $task['dossier'] = $task['object_id'];              $task['dossier'] = $task['dossier'];
646              if ($this->get_lien_objet_by_type($task['type']) === 'document_numerise') {              if ($task['type'] === 'ajout_piece') {
647                  $val_dn = $this->get_document_numerise_data($task['object_id']);                  $val_dn = $this->get_document_numerise_data($task['object_id']);
648                  $task['dossier'] = $val_dn['dossier'];              }
649                if ($task['stream'] === 'output') {
650                    $task['external_uids'] = $this->get_all_external_uids($task['dossier']);
651              }              }
652              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
653          }          }
# Line 675  class task extends task_gen { Line 790  class task extends task_gen {
790          return $val_dt;          return $val_dt;
791      }      }
792    
793        /**
794         * Récupère la liste des objets distincts existants dans la table des liens
795         * entre identifiants internes et identifiants externes.
796         *
797         * @return array
798         */
799        protected function get_list_distinct_objects_external_link() {
800            $query = sprintf('
801                SELECT
802                    DISTINCT(object)
803                FROM %1$slien_id_interne_uid_externe
804                ORDER BY object ASC
805                ',
806                DB_PREFIXE
807            );
808            $res = $this->f->get_all_results_from_db_query($query, true);
809            if ($res['code'] === 'KO') {
810                return array();
811            }
812            $result = array();
813            foreach ($res['result'] as $object) {
814                $result[] = $object['object'];
815            }
816            return $result;
817        }
818    
819      protected function get_external_uid($fk_idx, string $fk_idx_2) {      protected function get_external_uid($fk_idx, string $fk_idx_2) {
820          $inst_external_uid = $this->f->get_inst__by_other_idx(array(          $inst_external_uid = $this->f->get_inst__by_other_idx(array(
821              "obj" => "lien_id_interne_uid_externe",              "obj" => "lien_id_interne_uid_externe",
# Line 686  class task extends task_gen { Line 827  class task extends task_gen {
827          return $inst_external_uid->getVal('external_uid');          return $inst_external_uid->getVal('external_uid');
828      }      }
829    
830        protected function get_all_external_uids($fk_idx, $link_objects = array()) {
831            if (count($link_objects) == 0) {
832                $link_objects = $this->get_list_distinct_objects_external_link();
833            }
834            $val_external_uid = array();
835            foreach ($link_objects as $link_object) {
836                $external_uid = $this->get_external_uid($fk_idx, $link_object);
837                if ($external_uid !== '' && $external_uid !== null) {
838                    $val_external_uid[$link_object] = $external_uid;
839                }
840            }
841            return $val_external_uid;
842        }
843    
844      protected function get_demandeurs_data(string $dossier) {      protected function get_demandeurs_data(string $dossier) {
845          $val_demandeur = array();          $val_demandeur = array();
846          $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 873  class task extends task_gen {
873          return $val_architecte;          return $val_architecte;
874      }      }
875    
876      protected function get_instruction_data(string $dossier, $type = 'decision') {      protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
877          $val_instruction = null;          $val_instruction = null;
878          $instruction_with_doc = null;          $instruction_with_doc = null;
879          $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 887  class task extends task_gen {
887          if ($type === 'incompletude') {          if ($type === 'incompletude') {
888              $idx = $inst_di->get_last_instruction_incompletude();              $idx = $inst_di->get_last_instruction_incompletude();
889          }          }
890            // XXX Permet de récupérer l'instruction par son identifiant
891            if ($type === 'with-id') {
892                $idx = $extra_params['with-id'];
893            }
894          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
895              "obj" => "instruction",              "obj" => "instruction",
896              "idx" => $idx,              "idx" => $idx,
# Line 777  class task extends task_gen { Line 936  class task extends task_gen {
936    
937      protected function sort_instruction_data(array $values, array $res) {      protected function sort_instruction_data(array $values, array $res) {
938          $fields = array(          $fields = array(
939                "date_evenement",
940              "date_envoi_signature",              "date_envoi_signature",
941              "date_retour_signature",              "date_retour_signature",
942              "date_envoi_rar",              "date_envoi_rar",
# Line 837  class task extends task_gen { Line 997  class task extends task_gen {
997          return $val_dp;          return $val_dp;
998      }      }
999    
1000        protected function get_avis_decision_data(string $dossier) {
1001            $inst_di = $this->f->get_inst__om_dbform(array(
1002                "obj" => "dossier",
1003                "idx" => $dossier,
1004            ));
1005            $ad = $inst_di->getVal('avis_decision');
1006            $val_ad = array();
1007            if ($ad !== null) {
1008                $inst_ad = $this->f->get_inst__om_dbform(array(
1009                    "obj" => "avis_decision",
1010                    "idx" => $ad,
1011                ));
1012                $val_ad = $inst_ad->get_json_data();
1013                $val_ad['txAvis'] = "Voir document joint";
1014                if (isset($val_ad['tacite']) ===  true
1015                    && $val_ad['tacite'] === 't') {
1016                    //
1017                    $val_ad['txAvis'] = "Sans objet";
1018                }
1019            }
1020            return $val_ad;
1021        }
1022    
1023        protected function get_signataire_arrete_data(string $sa) {
1024            $inst_sa = $this->f->get_inst__om_dbform(array(
1025                "obj" => "signataire_arrete",
1026                "idx" => $sa,
1027            ));
1028            $val_sa = array_combine($inst_sa->champs, $inst_sa->val);
1029            foreach ($val_sa as $key => $value) {
1030                $val_sa[$key] = strip_tags($value);
1031            }
1032            return $val_sa;
1033        }
1034    
1035        // XXX WIP
1036        protected function get_consultation_data(string $consultation) {
1037            $val_consultation = array();
1038            $inst_consultation = $this->f->get_inst__om_dbform(array(
1039                "obj" => "consultation",
1040                "idx" => $consultation,
1041            ));
1042            $val_consultation = $inst_consultation->get_json_data();
1043            if (isset($val_consultation['fichier']) === true
1044                && $val_consultation['fichier'] !== '') {
1045                //
1046                $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'));
1047            }
1048            if (isset($val_consultation['om_fichier_consultation']) === true
1049                && $val_consultation['om_fichier_consultation'] !== '') {
1050                //
1051                $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'));
1052            }
1053            return $val_consultation;
1054        }
1055    
1056        // XXX WIP
1057        protected function get_service_data(string $service) {
1058            $val_service = array();
1059            $inst_service = $this->f->get_inst__om_dbform(array(
1060                "obj" => "service",
1061                "idx" => $service,
1062            ));
1063            $val_service = $inst_service->get_json_data();
1064            return $val_service;
1065        }
1066    
1067      protected function view_form_json($in_field = false) {      protected function view_form_json($in_field = false) {
1068          //          //
1069          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null) {
# Line 894  class task extends task_gen { Line 1121  class task extends task_gen {
1121              }              }
1122              //              //
1123              if ($this->getVal('type') === 'decision_DI') {              if ($this->getVal('type') === 'decision_DI') {
1124                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1125                  $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')));
1126                  $val_external_uid = array();                  $val_external_uid = array();
1127                  $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');
1128                  $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 1130  class task extends task_gen {
1130              }              }
1131              //              //
1132              if ($this->getVal('type') === 'incompletude_DI') {              if ($this->getVal('type') === 'incompletude_DI') {
1133                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1134                  $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')));
1135                  $val_external_uid = array();                  $val_external_uid = array();
1136                  $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');
1137                  $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 1139  class task extends task_gen {
1139              }              }
1140              //              //
1141              if ($this->getVal('type') === 'completude_DI') {              if ($this->getVal('type') === 'completude_DI') {
1142                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1143                  $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')));
1144                    $val_external_uid = array();
1145                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1146                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1147                    $val['external_uids'] = $val_external_uid;
1148                }
1149                //
1150                if ($this->getVal('type') === 'pec_metier_consultation') {
1151                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1152                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1153                    $val_external_uid = array();
1154                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1155                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1156                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1157                    $val['external_uids'] = $val_external_uid;
1158                }
1159                //
1160                if ($this->getVal('type') === 'avis_consultation') {
1161                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1162                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1163                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1164                    if (isset($val['instruction']['signataire_arrete']) === true) {
1165                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1166                    }
1167                    $val_external_uid = array();
1168                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1169                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1170                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1171                    $val['external_uids'] = $val_external_uid;
1172                }
1173                // XXX WIP
1174                if ($this->getVal('type') === 'creation_consultation') {
1175                    //
1176                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1177                    $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
1178                    $val['service'] = $this->get_service_data($val['consultation']['service']);
1179                  $val_external_uid = array();                  $val_external_uid = array();
1180                  $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');
1181                  $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 1193  class task extends task_gen {
1193    
1194      function post_update_task() {      function post_update_task() {
1195          // Mise à jour des valeurs          // Mise à jour des valeurs
1196          //  
1197          $params = array(          // Modification de l'état de la tâche
1198              'val' => array(          if ($this->f->get_submitted_post_value('state') !== null) {
1199                  'state' => $this->f->get_submitted_post_value('state')              $params = array(
1200              ),                  'val' => array(
1201          );                      'state' => $this->f->get_submitted_post_value('state')
1202          $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.')  
1203              );              );
1204                $update = $this->update_task($params);
1205                $message_class = "valid";
1206                $message = $this->msg;
1207                if ($update === false) {
1208                    $this->addToLog($this->msg, DEBUG_MODE);
1209                    $message_class = "error";
1210                    $message = sprintf(
1211                        '%s %s',
1212                        __('Impossible de mettre à jour la tâche.'),
1213                        __('Veuillez contacter votre administrateur.')
1214                    );
1215                }
1216                $this->f->displayMessage($message_class, $message);
1217          }          }
1218          $this->f->displayMessage($message_class, $message);  
1219          //          // Sauvegarde de l'uid externe retourné
1220          $inst_lien = $this->f->get_inst__om_dbform(array(          if ($this->f->get_submitted_post_value('external_uid') !== null) {
1221              "obj" => "lien_id_interne_uid_externe",              //
1222              "idx" => ']',              $objects = $this->get_objects_by_task_type($this->getVal('type'), $this->getVal('stream'));
1223          ));              foreach ($objects as $object) {
1224          $valF = array(                  $inst_lien = $this->f->get_inst__om_dbform(array(
1225              'lien_id_interne_uid_externe' => '',                      "obj" => "lien_id_interne_uid_externe",
1226              'object' => $this->get_lien_objet_by_type($this->getVal('type')),                      "idx" => ']',
1227              'object_id' => $this->getVal('object_id'),                  ));
1228              '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) {
1229          );                      $valF = array(
1230          $add = $inst_lien->ajouter($valF);                          'lien_id_interne_uid_externe' => '',
1231          $message_class = "valid";                          'object' => $object,
1232          $message = $inst_lien->msg;                          'object_id' => $this->getVal('object_id'),
1233          if ($add === false) {                          'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1234              $this->addToLog($inst_lien->msg, DEBUG_MODE);                          'dossier' => $this->getVal('dossier'),
1235              $message_class = "error";                      );
1236              $message = sprintf(                      $add = $inst_lien->ajouter($valF);
1237                  '%s %s',                      $message_class = "valid";
1238                  __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),                      $message = $inst_lien->msg;
1239                  __('Veuillez contacter votre administrateur.')                      if ($add === false) {
1240              );                          $this->addToLog($inst_lien->msg, DEBUG_MODE);
1241                            $message_class = "error";
1242                            $message = sprintf(
1243                                '%s %s',
1244                                __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1245                                __('Veuillez contacter votre administrateur.')
1246                            );
1247                        }
1248                        $this->f->displayMessage($message_class, $message);
1249                    }
1250                }
1251          }          }
         $this->f->displayMessage($message_class, $message);  
1252      }      }
1253    
1254      function post_add_task() {      function post_add_task() {
# Line 985  class task extends task_gen { Line 1260  class task extends task_gen {
1260                  'type' => $this->f->get_submitted_post_value('type'),                  'type' => $this->f->get_submitted_post_value('type'),
1261              )              )
1262          ));          ));
1263          $message = $this->msg;          $message = sprintf(
1264                __("Tâche %s ajoutée avec succès"),
1265                $this->getVal($this->clePrimaire)).
1266                '<br/><br/>'.
1267                $this->msg;
1268          $message_class = "valid";          $message_class = "valid";
1269          if ($result === false){          if ($result === false){
1270              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog($this->msg, DEBUG_MODE);
# Line 999  class task extends task_gen { Line 1278  class task extends task_gen {
1278          $this->f->displayMessage($message_class, $message);          $this->f->displayMessage($message_class, $message);
1279      }      }
1280    
1281      function get_lien_objet_by_type($type) {      function setLayout(&$form, $maj) {
1282          //  
1283          $objet = '';          // Récupération du mode de l'action
1284          if ($type === 'creation_DA') {          $crud = $this->get_action_crud($maj);
1285              $objet = 'dossier_autorisation';  
1286          }          // MODE different de CREER
1287          if ($type === 'creation_DI'          if ($maj != 0 || $crud != 'create') {
1288              || $type === 'create_DI_for_consultation'              $form->setBloc('json_payload', 'D', '', 'col_6');
1289              || $type === 'depot_DI'                  $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1290              || $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';  
1291          }          }
1292          return $objet;          $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1293      }      }
1294    
1295      function setLayout(&$form, $maj) {      /**
1296          $form->setBloc('json_payload', 'D', '', 'col_6');       * [get_objects_by_task_type description]
1297              $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");       * @param  [type] $type [description]
1298          $form->setBloc('json_payload', 'F');       * @return [type]       [description]
1299          $form->setBloc('timestamp_log', 'DF', '', 'col_9');       */
1300        function get_objects_by_task_type($type, $stream = 'all') {
1301            $objects = array();
1302            if (in_array($type, array('creation_DA', )) === true) {
1303                $objects = array('dossier_autorisation', );
1304            }
1305            if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1306                $objects = array('dossier', );
1307            }
1308            if (in_array($type, array('create_DI_for_consultation', )) === true) {
1309                $objects = array('dossier', 'dossier_consultation', );
1310            }
1311            if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1312                $objects = array('instruction', );
1313            }
1314            if (in_array($type, array('pec_metier_consultation', )) === true
1315                && $stream === 'output') {
1316                $objects = array('pec_dossier_consultation', );
1317            }
1318            if (in_array($type, array('avis_consultation', )) === true
1319                && $stream === 'output') {
1320                $objects = array('avis_dossier_consultation', );
1321            }
1322            if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1323                $objects = array('piece', );
1324            }
1325            if (in_array($type, array('creation_consultation', )) === true) {
1326                $objects = array('consultation', );
1327            }
1328            if (in_array($type, array('pec_metier_consultation', )) === true
1329                && $stream === 'input') {
1330                $objects = array('pec_metier_consultation', );
1331            }
1332            if (in_array($type, array('avis_consultation', )) === true
1333                && $stream === 'input') {
1334                $objects = array('avis_consultation', );
1335            }
1336            return $objects;
1337      }      }
1338    
1339  }  }

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26