/[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 9436 by softime, Tue Jul 21 10:31:15 2020 UTC branches/4.14.0-develop/obj/task.class.php revision 10104 by softime, Mon May 17 15:54:51 2021 UTC
# Line 1  Line 1 
1  <?php  <?php
2  //$Id$  //$Id$
3  //gen openMairie le 14/04/2020 14:11  //gen openMairie le 14/04/2020 14:11
4    
5  require_once "../gen/obj/task.class.php";  require_once "../gen/obj/task.class.php";
6    
7  class task extends task_gen {  class task extends task_gen {
8    
9        const STATUS_DRAFT = 'draft';
10        const STATUS_NEW = 'new';
11        const STATUS_PENDING = 'pending';
12        const STATUS_DONE = 'done';
13        const STATUS_ERROR = 'error';
14        const STATUS_DEBUG = 'debug';
15        const STATUS_ARCHIVED = 'archived';
16    
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       *       *
# Line 19  class task extends task_gen { Line 53  class task extends task_gen {
53              "view" => "view_json_data",              "view" => "view_json_data",
54              "permission_suffix" => "consulter",              "permission_suffix" => "consulter",
55          );          );
56            $this->class_actions[997] = array(
57                "identifier" => "json_data",
58                "view" => "post_update_task",
59                "permission_suffix" => "modifier",
60            );
61            $this->class_actions[996] = array(
62                "identifier" => "json_data",
63                "view" => "post_add_task",
64                "permission_suffix" => "ajouter",
65            );
66        }
67    
68        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);
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) {
103                $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        /**
135         *
136         * @return array
137         */
138        function get_var_sql_forminc__champs() {
139            return array(
140                "task",
141                "type",
142                "state",
143                "object_id",
144                "dossier",
145                "stream",
146                "json_payload",
147                "timestamp_log",
148            );
149        }
150    
151        function setType(&$form, $maj) {
152            parent::setType($form, $maj);
153    
154            // Récupération du mode de l'action
155            $crud = $this->get_action_crud($maj);
156    
157            // 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");
166                $form->setType("stream", "select");
167                $form->setType("json_payload", "jsonprettyprint");
168            }
169            // MODE CONSULTER
170            if ($maj == 3 || $crud == 'read') {
171                $form->setType('dossier', 'link');
172                $form->setType('json_payload', 'jsonprettyprint');
173            }
174    
175        }
176    
177        /**
178         *
179         */
180        function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
181            if($maj < 2) {
182    
183                $contenu = array();
184                foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG') as $key) {
185                    $const_name = 'STATUS_'.$key;
186                    $const_value = constant("self::$const_name");
187                    $contenu[0][] = $const_value;
188                    $contenu[1][] = __($const_value);
189                }
190    
191                $form->setSelect("state", $contenu);
192    
193                $contenu_stream =array();
194                $contenu_stream[0][0]="input";
195                $contenu_stream[1][0]=_('input');
196                $contenu_stream[0][1]="output";
197                $contenu_stream[1][1]=_('output');
198                $form->setSelect("stream", $contenu_stream);
199    
200            }
201    
202            if ($maj == 3) {
203                if ($this->getVal('stream') == 'output') {
204                    $inst_dossier = $this->f->get_inst__om_dbform(array(
205                        "obj" => "dossier",
206                        "idx" => $form->val['dossier'],
207                    ));
208    
209                    if($form->val['type'] == "creation_DA"){
210                        $obj_link = 'dossier_autorisation';
211                    } else {
212                        $obj_link = 'dossier_instruction';
213                    }
214    
215                    $params = array();
216                    $params['obj'] = $obj_link;
217                    $params['libelle'] = $inst_dossier->getVal('dossier');
218                    $params['title'] = "Consulter le dossier";
219                    $params['idx'] = $form->val['dossier'];
220                    $form->setSelect("dossier", $params);
221                }
222            }
223        }
224    
225        /**
226         * SETTER_FORM - setVal (setVal).
227         *
228         * @return void
229         */
230        function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {
231            // parent::setVal($form, $maj, $validation);
232            //
233            if ($this->getVal('stream') == "output") {
234                $form->setVal('json_payload', $this->view_form_json(true));
235            } else {
236                $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));
237            }
238        }
239    
240        function setLib(&$form, $maj) {
241            parent::setLib($form, $maj);
242    
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) {
253            $ret = parent::verifier($val, $dnu1, $dnu2);
254    
255            // une tâche entrante doit avoir un type et une payload non-vide
256            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
257                if (isset($this->valF['type']) === false) {
258                    $this->correct = false;
259                    $this->addToMessage(sprintf(
260                        __("Le champ %s est obligatoire pour une tâche entrante."),
261                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('type'))
262                    ));
263                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
264                }
265                if (isset($this->valF['json_payload']) === false) {
266                    $this->correct = false;
267                    $this->addToMessage(sprintf(
268                        __("Le champ %s est obligatoire pour une tâche entrante."),
269                        sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
270                    ));
271                    $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
272                }
273            }
274    
275            // les JSONs doivent être décodables
276            foreach(array('json_payload', 'timestamp_log') as $key) {
277                if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
278                        is_array(json_decode($this->valF[$key], true)) === false
279                        || json_last_error() !== JSON_ERROR_NONE)) {
280                    $this->correct = false;
281                    $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
282                    $this->addToMessage(sprintf(
283                        __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
284                        "<p>%s valF:</br><pre>%s</pre></p>".
285                        "<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
304            if ($this->correct && (isset($this->valF['stream']) === false ||
305                                   $this->valF['stream'] == 'input')) {
306    
307                // décode la payload JSON
308                $json_payload = json_decode($this->valF['json_payload'], true);
309    
310                // défini une liste de chemin de clés requises
311                $paths = array(
312                    'external_uids/dossier'
313                );
314    
315                // tâche de type création de DI/DA
316                if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {
317    
318                    $paths = array_merge($paths, array(
319                        'dossier/dossier',
320                        'dossier/dossier_autorisation_type_detaille_code',
321                        'dossier/date_demande',
322                        'dossier/depot_electronique',
323                    ));
324    
325                    // si l'option commune est activée (mode MC)
326                    if ($this->f->is_option_dossier_commune_enabled()) {
327                        $paths[] = 'dossier/insee';
328                    }
329    
330                    // présence d'un moyen d'identifier la collectivité/le service
331                    if (! isset($json_payload['external_uids']['acteur']) &&
332                            ! isset($json_payload['dossier']['om_collectivite'])) {
333                        $this->correct = false;
334                        $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."),
336                            sprintf('<span class="bold">%s</span>', 'external_uids/acteur'),
337                            sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
338                            sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
339                        ));
340                        $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
341                    }
342                }
343    
344                // pas d'erreur déjà trouvée
345                if($this->correct) {
346    
347                    // pour chaque chemin
348                    foreach($paths as $path) {
349    
350                        // décompose le chemin
351                        $tokens = explode('/', $path);
352                        $cur_depth = $json_payload;
353    
354                        // descend au et à mesure dans l'arborescence du chemin
355                        foreach($tokens as $token) {
356    
357                            // en vérifiant que chaque élément du chemin est défini et non-nul
358                            if (isset($cur_depth[$token]) === false) {
359    
360                                // sinon on produit une erreur
361                                $this->correct = false;
362                                $this->addToMessage(sprintf(
363                                    __("La clé %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
364                                    sprintf('<span class="bold">%s</span>', $path),
365                                    sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
366                                ));
367                                $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
368                                break 2;
369                            }
370                            $cur_depth = $cur_depth[$token];
371                        }
372                    }
373                }
374            }
375    
376            return $ret && $this->correct;
377      }      }
378    
379      protected function task_exists(string $type, string $object_id) {      protected function task_exists(string $type, string $object_id) {
# Line 30  class task extends task_gen { Line 385  class task extends task_gen {
385              AND object_id = \'%4$s\'              AND object_id = \'%4$s\'
386              ',              ',
387              DB_PREFIXE,              DB_PREFIXE,
388              'done',              self::STATUS_DONE,
389              $type,              $type,
390              $object_id              $object_id
391          );          );
# Line 42  class task extends task_gen { Line 397  class task extends task_gen {
397      }      }
398    
399      /**      /**
400         * TRIGGER - triggerajouter.
401         *
402         * @param string $id
403         * @param null &$dnu1 @deprecated  Ne pas utiliser.
404         * @param array $val Tableau des valeurs brutes.
405         * @param null $dnu2 @deprecated  Ne pas utiliser.
406         *
407         * @return boolean
408         */
409        function triggerajouter($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
410    
411            // tâche entrante
412            if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
413    
414                // décode la paylod JSON pour extraire les données métiers à ajouter
415                // en tant que métadonnées de la tâche
416                $json_payload = json_decode($this->valF['json_payload'], true);
417    
418                // si la tâche possède déjà une clé dossier
419                if (isset($json_payload['dossier']['dossier']) &&
420                        ! empty($json_payload['dossier']['dossier'])) {
421                    $this->valF["dossier"] = $json_payload['dossier']['dossier'];
422                }
423            }
424        }
425    
426        /**
427       * TREATMENT - add_task       * TREATMENT - add_task
428       * Ajoute un enregistrement.       * Ajoute un enregistrement.
429       *       *
# Line 50  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          ));          ));
459    
460            // 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
462            if (isset($params['val']['type'])
463                && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")
464                && isset($params['val']['stream'])
465                && $params['val']['stream'] == "input" ) {
466                //
467                $json_payload = json_decode($params['val']['json_payload'], true);
468                if (json_last_error() !== JSON_ERROR_NONE) {
469                    $this->addToMessage(__("Le contenu JSON de la tâche n'est pas valide."));
470                    return $this->end_treatment(__METHOD__, false);
471                }
472                if (isset($json_payload['document_numerise']) === true
473                    && empty($json_payload['document_numerise']) === false) {
474                    //
475                    $document_numerise = $json_payload['document_numerise'];
476                    $file_content = base64_decode($document_numerise["file_content"]);
477                    if ($file_content === false){
478                        $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));
479                        return $this->end_treatment(__METHOD__, false);
480                    }
481                    $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                }
497            }
498    
499          // Mise à jour du DI          // Mise à jour du DI
500          $valF = array(          $valF = array(
501              'task' => '',              'task' => '',
502              'type' => $params['val']['type'],              'type' => $params['val']['type'],
503              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
504              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : 'new',              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
505              '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'] : '',
507                'stream' => $stream,
508                'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
509          );          );
510          $task_exists = $this->task_exists($valF['type'], $valF['object_id']);  
511          if ($task_exists !== false) {          // tâche sortante
512              $inst_task = $this->f->get_inst__om_dbform(array(          if($valF["stream"] == "output"){
513                  "obj" => "task",  
514                  "idx" => $task_exists,              // TODO expliquer ce code
515              ));              $task_exists = $this->task_exists($valF['type'], $valF['object_id']);
516              $update_state = $inst_task->getVal('state');              if ($valF['type'] === 'modification_DI' && $task_exists === false) {
517              if (isset($params['update_val']['state']) === true) {                  $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
518                  $update_state = $params['update_val']['state'];              }
519                if ($task_exists !== false) {
520                    $inst_task = $this->f->get_inst__om_dbform(array(
521                        "obj" => "task",
522                        "idx" => $task_exists,
523                    ));
524                    $update_state = $inst_task->getVal('state');
525                    if (isset($params['update_val']['state']) === true) {
526                        $update_state = $params['update_val']['state'];
527                    }
528                    $update_params = array(
529                        'val' => array(
530                            'state' => $update_state,
531                        ),
532                    );
533                    return $inst_task->update_task($update_params);
534              }              }
             $update_params = array(  
                 'val' => array(  
                     'state' => $update_state,  
                 ),  
             );  
             return $inst_task->update_task($update_params);  
535          }          }
536    
537          $add = $this->ajouter($valF);          $add = $this->ajouter($valF);
538            $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
539          if ($add === false) {          if ($add === false) {
540              $this->addToLog($this->msg, DEBUG_MODE);              $this->addToLog(__METHOD__."(): ".$this->msg, DEBUG_MODE);
541              return $this->end_treatment(__METHOD__, false);              return $this->end_treatment(__METHOD__, false);
542          }          }
543          return $this->end_treatment(__METHOD__, true);          return $this->end_treatment(__METHOD__, true);
# Line 97  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 112  class task extends task_gen { Line 569  class task extends task_gen {
569              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
570              'state' => $params['val']['state'],              'state' => $params['val']['state'],
571              'object_id' => $this->getVal('object_id'),              'object_id' => $this->getVal('object_id'),
572                'stream' => $this->getVal('stream'),
573                'dossier' => $this->getVal('dossier'),
574                'json_payload' => $this->getVal('json_payload'),
575          );          );
576          $update = $this->modifier($valF);          $update = $this->modifier($valF);
577          if ($update === false) {          if ($update === false) {
# Line 124  class task extends task_gen { Line 584  class task extends task_gen {
584      /**      /**
585       * Récupère le journal d'horodatage dans le champ timestamp_log de       * Récupère le journal d'horodatage dans le champ timestamp_log de
586       * l'enregistrement instancié.       * l'enregistrement instancié.
587       *       *
588       * @param  array  $params Tableau des paramètres       * @param  array  $params Tableau des paramètres
589       * @return array sinon false en cas d'erreur       * @return array sinon false en cas d'erreur
590       */       */
# Line 170  class task extends task_gen { Line 630  class task extends task_gen {
630                  *                  *
631              FROM %1$stask              FROM %1$stask
632              %2$s              %2$s
633                ORDER BY task ASC
634              ',              ',
635              DB_PREFIXE,              DB_PREFIXE,
636              $where              $where
# Line 181  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['dossier'];
646                if ($task['type'] === 'ajout_piece') {
647                    $val_dn = $this->get_document_numerise_data($task['object_id']);
648                }
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          }          }
654          printf(json_encode($list_tasks));          printf(json_encode($list_tasks));
# Line 270  class task extends task_gen { Line 738  class task extends task_gen {
738          $particular_case = false;          $particular_case = false;
739          $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();          $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();
740          foreach ($fields_tab_crea_loc_hab as $field) {          foreach ($fields_tab_crea_loc_hab as $field) {
741              if (isset($field) === false              if (isset($val_dt[$field]) === false
742                  || (isset($field) === true                  || (isset($val_dt[$field]) === true
743                      && $field !== null                      && ($val_dt[$field] === null
744                      && $field !== '')) {                          || $val_dt[$field] === ''))) {
745                  //                  //
746                  $particular_case = true;                  $particular_case = true;
747              }              }
# Line 322  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 333  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 365  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) {      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(
880              "obj" => "dossier",              "obj" => "dossier",
881              "idx" => $dossier,              "idx" => $dossier,
882          ));          ));
883            $idx = null;
884            if ($type === 'decision') {
885                $idx = $inst_di->get_last_instruction_decision();
886            }
887            if ($type === 'incompletude') {
888                $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" => $inst_di->get_last_instruction_decision(),              "idx" => $idx,
897          ));          ));
898          if (count($inst_instruction->val) > 0) {          if (count($inst_instruction->val) > 0) {
899              $val_instruction = array();              $val_instruction = array();
# Line 409  class task extends task_gen { Line 928  class task extends task_gen {
928              }              }
929              if ($instruction_with_doc !== null) {              if ($instruction_with_doc !== null) {
930                  //                  //
931                  $val_instruction['path'] = sprintf('%s/%s&snippet=%s&obj=%s&champ=%s&id=%s', $_SERVER['HTTP_HOST'], 'openads/app/index.php?module=form', 'file', 'instruction', 'om_fichier_instruction', $instruction_with_doc);                  $val_instruction['path'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'instruction', 'om_fichier_instruction', $instruction_with_doc);
932              }              }
933          }          }
934          return $val_instruction;          return $val_instruction;
# Line 417  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 426  class task extends task_gen { Line 946  class task extends task_gen {
946              "signataire_arrete",              "signataire_arrete",
947              "om_fichier_instruction",              "om_fichier_instruction",
948              "tacite",              "tacite",
949                "lettretype",
950          );          );
951          foreach ($values as $key => $value) {          foreach ($values as $key => $value) {
952              if (in_array($key, $fields) === true) {              if (in_array($key, $fields) === true) {
# Line 451  class task extends task_gen { Line 972  class task extends task_gen {
972              "idx" => $dn,              "idx" => $dn,
973          ));          ));
974          $val_dn = $inst_dn->get_json_data();          $val_dn = $inst_dn->get_json_data();
975          $val_dn['path'] = sprintf('%s/%s&snippet=%s&obj=%s&champ=%s&id=%s', $_SERVER['HTTP_HOST'], 'openads/app/index.php?module=form', 'file', 'document_numerise', 'uid', $this->getVal('object_id'));          $val_dn['path'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'document_numerise', 'uid', $this->getVal('object_id'));
976          // Correspond à la nomenclature Plat'AU NATURE_PIECE          // Correspond à la nomenclature Plat'AU NATURE_PIECE
977          $val_dn['nature'] = 'Initiale';          $val_dn['nature'] = $val_dn['document_numerise_nature_libelle'];
978          return $val_dn;          return $val_dn;
979      }      }
980    
# Line 476  class task extends task_gen { Line 997  class task extends task_gen {
997          return $val_dp;          return $val_dp;
998      }      }
999    
1000      protected function view_form_json() {      protected function get_avis_decision_data(string $dossier) {
1001          // Mise à jour des valeurs          $inst_di = $this->f->get_inst__om_dbform(array(
1002          if ($this->f->get_submitted_post_value('valid') === 'true'              "obj" => "dossier",
1003              && $this->f->get_submitted_post_value('state') !== null) {              "idx" => $dossier,
1004              //          ));
1005              $params = array(          $ad = $inst_di->getVal('avis_decision');
1006                  'val' => array(          $val_ad = array();
1007                      'state' => $this->f->get_submitted_post_value('state')          if ($ad !== null) {
1008                  ),              $inst_ad = $this->f->get_inst__om_dbform(array(
1009              );                  "obj" => "avis_decision",
1010              $update = $this->update_task($params);                  "idx" => $ad,
             $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.')  
                 );  
             }  
             $this->f->displayMessage($message_class, $message);  
         }  
         //  
         if ($this->f->get_submitted_post_value('valid') === 'true'  
             && $this->f->get_submitted_post_value('external_uid') !== null) {  
             //  
             $inst_lien = $this->f->get_inst__om_dbform(array(  
                 "obj" => "lien_id_interne_uid_externe",  
                 "idx" => ']',  
1011              ));              ));
1012              $valF = array(              $val_ad = $inst_ad->get_json_data();
1013                  'lien_id_interne_uid_externe' => '',              $val_ad['txAvis'] = "Voir document joint";
1014                  'object' => $this->get_lien_objet_by_type($this->getVal('type')),              if (isset($val_ad['tacite']) ===  true
1015                  'object_id' => $this->getVal('object_id'),                  && $val_ad['tacite'] === 't') {
1016                  'external_uid' => $this->f->get_submitted_post_value('external_uid'),                  //
1017              );                  $val_ad['txAvis'] = "Sans objet";
             $add = $inst_lien->ajouter($valF);  
             $message_class = "valid";  
             $message = $inst_lien->msg;  
             if ($add === false) {  
                 $this->addToLog($inst_lien->msg, DEBUG_MODE);  
                 $message_class = "error";  
                 $message = sprintf(  
                     '%s %s',  
                     __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),  
                     __('Veuillez contacter votre administrateur.')  
                 );  
1018              }              }
             $this->f->displayMessage($message_class, $message);  
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            $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'));
1044            $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'));
1045            return $val_consultation;
1046        }
1047    
1048        // XXX WIP
1049        protected function get_service_data(string $service) {
1050            $val_service = array();
1051            $inst_service = $this->f->get_inst__om_dbform(array(
1052                "obj" => "service",
1053                "idx" => $service,
1054            ));
1055            $val_service = $inst_service->get_json_data();
1056            return $val_service;
1057        }
1058    
1059        protected function view_form_json($in_field = false) {
1060          //          //
1061          if ($this->f->get_submitted_post_value('valid') === null) {          if ($this->f->get_submitted_post_value('valid') === null) {
1062              // Liste des valeurs à afficher              // Liste des valeurs à afficher
# Line 547  class task extends task_gen { Line 1075  class task extends task_gen {
1075                  $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']);
1076                  $val_external_uid = array();                  $val_external_uid = array();
1077                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier_autorisation']['dossier_autorisation'], 'dossier_autorisation');                  $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier_autorisation']['dossier_autorisation'], 'dossier_autorisation');
1078                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1079              }              }
1080              //              //
1081              if ($this->getVal('type') === 'creation_DI'              if ($this->getVal('type') === 'creation_DI'
# Line 563  class task extends task_gen { Line 1091  class task extends task_gen {
1091                  $val_external_uid = array();                  $val_external_uid = array();
1092                  $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');
1093                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1094                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1095              }              }
1096              //              //
1097              if ($this->getVal('type') === 'qualification_DI') {              if ($this->getVal('type') === 'qualification_DI') {
# Line 571  class task extends task_gen { Line 1099  class task extends task_gen {
1099                  $val_external_uid = array();                  $val_external_uid = array();
1100                  $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');
1101                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1102                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1103              }              }
1104              //              //
1105              if ($this->getVal('type') === 'ajout_piece') {              if ($this->getVal('type') === 'ajout_piece') {
# Line 581  class task extends task_gen { Line 1109  class task extends task_gen {
1109                  $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');
1110                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1111                  $val_external_uid['document_numerise'] = $this->get_external_uid($val['document_numerise']['document_numerise'], 'document_numerise');                  $val_external_uid['document_numerise'] = $this->get_external_uid($val['document_numerise']['document_numerise'], 'document_numerise');
1112                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1113              }              }
1114              //              //
1115              if ($this->getVal('type') === 'decision_DI') {              if ($this->getVal('type') === 'decision_DI') {
1116                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1117                  $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')));
1118                  $val_external_uid = array();                  $val_external_uid = array();
1119                  $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');
1120                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1121                  $val['external_uid'] = $val_external_uid;                  $val['external_uids'] = $val_external_uid;
1122                }
1123                //
1124                if ($this->getVal('type') === 'incompletude_DI') {
1125                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1126                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1127                    $val_external_uid = array();
1128                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1129                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1130                    $val['external_uids'] = $val_external_uid;
1131                }
1132                //
1133                if ($this->getVal('type') === 'completude_DI') {
1134                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1135                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1136                    $val_external_uid = array();
1137                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1138                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1139                    $val['external_uids'] = $val_external_uid;
1140                }
1141                //
1142                if ($this->getVal('type') === 'pec_metier_consultation') {
1143                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1144                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1145                    $val_external_uid = array();
1146                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1147                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1148                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1149                    $val['external_uids'] = $val_external_uid;
1150                }
1151                //
1152                if ($this->getVal('type') === 'avis_consultation') {
1153                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1154                    $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1155                    $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1156                    if (isset($val['instruction']['signataire_arrete']) === true) {
1157                        $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1158                    }
1159                    $val_external_uid = array();
1160                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1161                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1162                    $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1163                    $val['external_uids'] = $val_external_uid;
1164                }
1165                // XXX WIP
1166                if ($this->getVal('type') === 'creation_consultation') {
1167                    //
1168                    $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1169                    $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
1170                    $val['service'] = $this->get_service_data($val['consultation']['service']);
1171                    $val_external_uid = array();
1172                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1173                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1174                    $val['external_uids'] = $val_external_uid;
1175              }              }
1176    
1177              // Liste des valeurs affichée en JSON              if ($in_field === true) {
1178              printf(json_encode($val));                  return json_encode($val, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
1179                } else {
1180                    // Liste des valeurs affichée en JSON
1181                    printf(json_encode($val, JSON_UNESCAPED_SLASHES));
1182                }
1183          }          }
1184      }      }
1185    
1186      protected function get_lien_objet_by_type($type) {      function post_update_task() {
1187          //          // Mise à jour des valeurs
1188          $objet = '';  
1189          if ($type === 'creation_DA') {          // Modification de l'état de la tâche
1190              $objet = 'dossier_autorisation';          if ($this->f->get_submitted_post_value('state') !== null) {
1191          }              $params = array(
1192          if ($type === 'creation_DI'                  'val' => array(
1193              || $type === 'depot_DI'                      'state' => $this->f->get_submitted_post_value('state')
1194              || $type === 'modification_DI'                  ),
1195              || $type === 'qualification_DI'              );
1196              || $type === 'decision_DI') {              $update = $this->update_task($params);
1197                $message_class = "valid";
1198                $message = $this->msg;
1199                if ($update === false) {
1200                    $this->addToLog($this->msg, DEBUG_MODE);
1201                    $message_class = "error";
1202                    $message = sprintf(
1203                        '%s %s',
1204                        __('Impossible de mettre à jour la tâche.'),
1205                        __('Veuillez contacter votre administrateur.')
1206                    );
1207                }
1208                $this->f->displayMessage($message_class, $message);
1209            }
1210    
1211            // Sauvegarde de l'uid externe retourné
1212            if ($this->f->get_submitted_post_value('external_uid') !== null) {
1213              //              //
1214              $objet = 'dossier';              $objects = $this->get_objects_by_task_type($this->getVal('type'), $this->getVal('stream'));
1215                foreach ($objects as $object) {
1216                    $inst_lien = $this->f->get_inst__om_dbform(array(
1217                        "obj" => "lien_id_interne_uid_externe",
1218                        "idx" => ']',
1219                    ));
1220                    if ($inst_lien->is_exists($object, $this->getVal('object_id'), $this->f->get_submitted_post_value('external_uid'), $this->getVal('dossier')) === false) {
1221                        $valF = array(
1222                            'lien_id_interne_uid_externe' => '',
1223                            'object' => $object,
1224                            'object_id' => $this->getVal('object_id'),
1225                            'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1226                            'dossier' => $this->getVal('dossier'),
1227                        );
1228                        $add = $inst_lien->ajouter($valF);
1229                        $message_class = "valid";
1230                        $message = $inst_lien->msg;
1231                        if ($add === false) {
1232                            $this->addToLog($inst_lien->msg, DEBUG_MODE);
1233                            $message_class = "error";
1234                            $message = sprintf(
1235                                '%s %s',
1236                                __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1237                                __('Veuillez contacter votre administrateur.')
1238                            );
1239                        }
1240                        $this->f->displayMessage($message_class, $message);
1241                    }
1242                }
1243          }          }
1244          if ($type === 'ajout_piece') {      }
1245              $objet = 'document_numerise';  
1246        function post_add_task() {
1247            // TODO Tester de remplacer la ligne de json_payload par un $_POST
1248            $result = $this->add_task(array(
1249                'val' => array(
1250                    'stream' => 'input',
1251                    'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload')),
1252                    'type' => $this->f->get_submitted_post_value('type'),
1253                )
1254            ));
1255            $message = sprintf(
1256                __("Tâche %s ajoutée avec succès"),
1257                $this->getVal($this->clePrimaire)).
1258                '<br/><br/>'.
1259                $this->msg;
1260            $message_class = "valid";
1261            if ($result === false){
1262                $this->addToLog($this->msg, DEBUG_MODE);
1263                $message_class = "error";
1264                $message = sprintf(
1265                    '%s %s',
1266                    __('Impossible d\'ajouter la tâche.'),
1267                    __('Veuillez contacter votre administrateur.')
1268                );
1269          }          }
1270          return $objet;          $this->f->displayMessage($message_class, $message);
1271      }      }
1272    
1273        function setLayout(&$form, $maj) {
1274    
1275            // Récupération du mode de l'action
1276            $crud = $this->get_action_crud($maj);
1277    
1278            // MODE different de CREER
1279            if ($maj != 0 || $crud != 'create') {
1280                $form->setBloc('json_payload', 'D', '', 'col_6');
1281                    $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1282                $form->setBloc('json_payload', 'F');
1283            }
1284            $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1285        }
1286    
1287        /**
1288         * [get_objects_by_task_type description]
1289         * @param  [type] $type [description]
1290         * @return [type]       [description]
1291         */
1292        function get_objects_by_task_type($type, $stream = 'all') {
1293            $objects = array();
1294            if (in_array($type, array('creation_DA', )) === true) {
1295                $objects = array('dossier_autorisation', );
1296            }
1297            if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1298                $objects = array('dossier', );
1299            }
1300            if (in_array($type, array('create_DI_for_consultation', )) === true) {
1301                $objects = array('dossier', 'dossier_consultation', );
1302            }
1303            if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1304                $objects = array('instruction', );
1305            }
1306            if (in_array($type, array('pec_metier_consultation', )) === true
1307                && $stream === 'output') {
1308                $objects = array('pec_dossier_consultation', );
1309            }
1310            if (in_array($type, array('avis_consultation', )) === true
1311                && $stream === 'output') {
1312                $objects = array('avis_dossier_consultation', );
1313            }
1314            if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1315                $objects = array('piece', );
1316            }
1317            if (in_array($type, array('creation_consultation', )) === true) {
1318                $objects = array('consultation', );
1319            }
1320            if (in_array($type, array('pec_metier_consultation', )) === true
1321                && $stream === 'input') {
1322                $objects = array('pec_metier_consultation', );
1323            }
1324            if (in_array($type, array('avis_consultation', )) === true
1325                && $stream === 'input') {
1326                $objects = array('avis_consultation', );
1327            }
1328            return $objects;
1329        }
1330    
1331  }  }

Legend:
Removed from v.9436  
changed lines
  Added in v.10104

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26