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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 10869 - (hide annotations)
Fri Dec 3 18:46:03 2021 UTC (3 years, 1 month ago) by softime
File size: 71577 byte(s)
* Fusion de la branche d'intégration 5.3.0-develop dans le trunk

1 softime 9293 <?php
2 mbroquet 9776 //$Id$
3 softime 9293 //gen openMairie le 14/04/2020 14:11
4    
5     require_once "../gen/obj/task.class.php";
6    
7     class task extends task_gen {
8    
9 mbideau 9799 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 softime 10572 const STATUS_CANCELED = 'canceled';
17 mbideau 9799
18 softime 9293 /**
19 softime 10036 * Liste des types de tâche concernant les services instructeurs
20     */
21     const TASK_TYPE_SI = array(
22     'creation_DA',
23     'creation_DI',
24     'depot_DI',
25     'modification_DI',
26     'qualification_DI',
27     'decision_DI',
28     'incompletude_DI',
29     'completude_DI',
30     'ajout_piece',
31     'add_piece',
32     'creation_consultation',
33 softime 10356 'modification_DA',
34 gmalvolti 10317 'create_DI',
35 softime 10808 'notification_recepisse',
36     'notification_instruction',
37     'notification_decision',
38 softime 10036 );
39    
40     /**
41     * Liste des types de tâche concernant les services consultés
42     */
43     const TASK_TYPE_SC = array(
44     'create_DI_for_consultation',
45     'avis_consultation',
46     'pec_metier_consultation',
47 cgarcin 10362 'create_message',
48 softime 10808 'notification_recepisse',
49     'notification_instruction',
50     'notification_decision',
51 softime 10869 'prescription',
52 softime 10036 );
53    
54     /**
55 softime 10808 * Catégorie de la tâche
56     */
57     var $category = 'platau';
58    
59     /**
60 softime 9293 * Définition des actions disponibles sur la classe.
61     *
62     * @return void
63     */
64     public function init_class_actions() {
65     parent::init_class_actions();
66     //
67     $this->class_actions[998] = array(
68 softime 9330 "identifier" => "json_data",
69     "view" => "view_json_data",
70 softime 9293 "permission_suffix" => "consulter",
71     );
72 gmalvolti 9721 $this->class_actions[997] = array(
73     "identifier" => "json_data",
74 gmalvolti 9765 "view" => "post_update_task",
75 gmalvolti 9721 "permission_suffix" => "modifier",
76     );
77     $this->class_actions[996] = array(
78     "identifier" => "json_data",
79 gmalvolti 9765 "view" => "post_add_task",
80 gmalvolti 9721 "permission_suffix" => "ajouter",
81     );
82 softime 9293 }
83    
84 softime 9482 public function setvalF($val = array()) {
85 mbideau 9813
86 softime 9842 // // les guillets doubles sont remplacés automatiquement par des simples
87     // // dans core/om_formulaire.clasS.php::recupererPostvar()
88     // // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
89     // // ceci est un hack sale temporaire en attendant résolution du ticket
90     // foreach(array('json_payload', 'timestamp_log') as $key) {
91     // if (isset($val[$key]) && ! empty($val[$key]) &&
92     // isset($_POST[$key]) && ! empty($_POST[$key])) {
93     // $submited_payload = $_POST[$key];
94     // if (! empty($submited_payload)) {
95     // $new_payload = str_replace("'", '"', $val[$key]);
96     // if ($new_payload == $submited_payload ||
97     // strpos($submited_payload, '"') === false) {
98     // $val[$key] = $new_payload;
99     // }
100     // else {
101     // $error_msg = sprintf(
102     // __("La convertion des guillemets de la payload JSON '%s' ".
103     // "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
104     // $key, var_export($val[$key], true), var_export($submited_payload, true),
105     // var_export($new_payload, true));
106     // $this->correct = false;
107     // $this->addToMessage($error_msg);
108     // $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
109     // return false;
110     // }
111     // }
112     // }
113     // }
114 mbideau 9813
115 softime 9482 parent::setvalF($val);
116 mbideau 9813
117 softime 9842 // XXX Ancien code : permet de ne pas avoir d'erreru lors de la modification d'une task
118     if (array_key_exists('timestamp_log', $val) === true) {
119     $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
120     }
121    
122 mbideau 9813 // récupération de l'ID de l'objet existant
123     $id = property_exists($this, 'id') ? $this->id : null;
124     if(isset($val[$this->clePrimaire])) {
125     $id = $val[$this->clePrimaire];
126     } elseif(isset($this->valF[$this->clePrimaire])) {
127     $id = $this->valF[$this->clePrimaire];
128 softime 9482 }
129 mbideau 9813
130     // MODE MODIFIER
131     if (! empty($id)) {
132    
133     // si aucune payload n'est fourni (devrait toujours être le cas)
134     if (! isset($val['json_payload']) || empty($val['json_payload'])) {
135    
136     // récupère l'objet existant
137 softime 10808 $existing = $this->f->findObjectById('task', $id);
138 mbideau 9813 if (! empty($existing)) {
139    
140     // récupère la payload de l'objet
141     $val['json_payload'] = $existing->getVal('json_payload');
142     $this->valF['json_payload'] = $existing->getVal('json_payload');
143     $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
144     "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
145     }
146     }
147     }
148 softime 10808
149     if (array_key_exists('category', $val) === false
150     || $this->valF['category'] === ''
151     || $this->valF['category'] === null) {
152     //
153     $this->valF['category'] = $this->category;
154     }
155 softime 9482 }
156    
157 gmalvolti 9589 /**
158     *
159     * @return array
160     */
161     function get_var_sql_forminc__champs() {
162     return array(
163     "task",
164     "type",
165     "state",
166     "object_id",
167     "dossier",
168 gmalvolti 9721 "stream",
169 gmalvolti 9604 "json_payload",
170 gmalvolti 9589 "timestamp_log",
171 softime 10808 "category",
172 gmalvolti 9589 );
173     }
174    
175 gmalvolti 9585 function setType(&$form, $maj) {
176     parent::setType($form, $maj);
177 mbideau 9813
178 gmalvolti 9585 // Récupération du mode de l'action
179     $crud = $this->get_action_crud($maj);
180    
181 softime 10808 // ALL
182     $form->setType("category", "hidden");
183    
184 mbideau 9813 // MODE CREER
185     if ($maj == 0 || $crud == 'create') {
186 gmalvolti 9585 $form->setType("state", "select");
187 gmalvolti 9721 $form->setType("stream", "select");
188 mbideau 9813 $form->setType("json_payload", "textarea");
189     }
190     // MDOE MODIFIER
191     if ($maj == 1 || $crud == 'update') {
192     $form->setType("state", "select");
193     $form->setType("stream", "select");
194 gmalvolti 9721 $form->setType("json_payload", "jsonprettyprint");
195 gmalvolti 9585 }
196 mbideau 9813 // MODE CONSULTER
197     if ($maj == 3 || $crud == 'read') {
198 gmalvolti 9589 $form->setType('dossier', 'link');
199 gmalvolti 9604 $form->setType('json_payload', 'jsonprettyprint');
200 gmalvolti 9589 }
201    
202 gmalvolti 9585 }
203    
204     /**
205     *
206     */
207     function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
208     if($maj < 2) {
209    
210 mbideau 9799 $contenu = array();
211 softime 10572 foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG', 'ARCHIVED', 'CANCELED') as $key) {
212 mbideau 9799 $const_name = 'STATUS_'.$key;
213     $const_value = constant("self::$const_name");
214     $contenu[0][] = $const_value;
215     $contenu[1][] = __($const_value);
216     }
217 gmalvolti 9585
218     $form->setSelect("state", $contenu);
219 gmalvolti 9721
220     $contenu_stream =array();
221     $contenu_stream[0][0]="input";
222     $contenu_stream[1][0]=_('input');
223     $contenu_stream[0][1]="output";
224     $contenu_stream[1][1]=_('output');
225     $form->setSelect("stream", $contenu_stream);
226    
227 gmalvolti 9585 }
228 gmalvolti 9589
229     if ($maj == 3) {
230 gmalvolti 9721 if ($this->getVal('stream') == 'output') {
231     $inst_dossier = $this->f->get_inst__om_dbform(array(
232     "obj" => "dossier",
233     "idx" => $form->val['dossier'],
234     ));
235 mbroquet 9776
236 softime 10356 if($form->val['type'] == "creation_DA"
237     || $form->val['type'] == "modification_DA"){
238     //
239 gmalvolti 9721 $obj_link = 'dossier_autorisation';
240     } else {
241     $obj_link = 'dossier_instruction';
242     }
243    
244     $params = array();
245     $params['obj'] = $obj_link;
246     $params['libelle'] = $inst_dossier->getVal('dossier');
247     $params['title'] = "Consulter le dossier";
248     $params['idx'] = $form->val['dossier'];
249     $form->setSelect("dossier", $params);
250 gmalvolti 9594 }
251 gmalvolti 9589 }
252 gmalvolti 9585 }
253    
254 gmalvolti 9604 /**
255     * SETTER_FORM - setVal (setVal).
256     *
257     * @return void
258     */
259     function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {
260     // parent::setVal($form, $maj, $validation);
261     //
262 gmalvolti 9721 if ($this->getVal('stream') == "output") {
263     $form->setVal('json_payload', $this->view_form_json(true));
264 gmalvolti 9728 } else {
265 mbideau 9798 $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));
266 gmalvolti 9721 }
267 gmalvolti 9604 }
268    
269 gmalvolti 9746 function setLib(&$form, $maj) {
270     parent::setLib($form, $maj);
271 mbideau 9813
272     // Récupération du mode de l'action
273     $crud = $this->get_action_crud($maj);
274    
275     // MODE different de CREER
276     if ($maj != 0 || $crud != 'create') {
277     $form->setLib('json_payload', '');
278     }
279 gmalvolti 9746 }
280    
281 softime 9482 public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
282 gmalvolti 9765 $ret = parent::verifier($val, $dnu1, $dnu2);
283    
284     // une tâche entrante doit avoir un type et une payload non-vide
285     if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
286     if (isset($this->valF['type']) === false) {
287     $this->correct = false;
288     $this->addToMessage(sprintf(
289     __("Le champ %s est obligatoire pour une tâche entrante."),
290     sprintf('<span class="bold">%s</span>', $this->getLibFromField('type'))
291     ));
292     $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
293     }
294     if (isset($this->valF['json_payload']) === false) {
295     $this->correct = false;
296     $this->addToMessage(sprintf(
297     __("Le champ %s est obligatoire pour une tâche entrante."),
298     sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
299     ));
300     $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
301     }
302     }
303    
304 mbideau 9813 // les JSONs doivent être décodables
305     foreach(array('json_payload', 'timestamp_log') as $key) {
306     if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
307     is_array(json_decode($this->valF[$key], true)) === false
308     || json_last_error() !== JSON_ERROR_NONE)) {
309     $this->correct = false;
310     $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
311     $this->addToMessage(sprintf(
312     __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
313     "<p>%s valF:</br><pre>%s</pre></p>".
314     "<p>%s val:</br><pre>%s</pre></p>".
315     "<p>%s POST:</br><pre>%s</pre></p>".
316     "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
317     $champ_text,
318     json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
319     $champ_text,
320     $this->valF[$key],
321     $champ_text,
322     $val[$key],
323     $champ_text,
324     isset($_POST[$key]) ? $_POST[$key] : '',
325     $champ_text,
326     $this->f->get_submitted_post_value($key)
327     ));
328     $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
329     }
330 gmalvolti 9765 }
331    
332     // une tâche entrante doit avoir une payload avec les clés requises
333 mbideau 9813 if ($this->correct && (isset($this->valF['stream']) === false ||
334     $this->valF['stream'] == 'input')) {
335 gmalvolti 9765
336     // décode la payload JSON
337     $json_payload = json_decode($this->valF['json_payload'], true);
338    
339     // défini une liste de chemin de clés requises
340 softime 10808 $paths = array();
341     if ($this->valF['category'] === 'platau') {
342     $paths = array(
343     'external_uids/dossier'
344     );
345     }
346 gmalvolti 9765
347     // tâche de type création de DI/DA
348 mbroquet 9776 if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {
349 gmalvolti 9765
350     $paths = array_merge($paths, array(
351 mbideau 9798 'dossier/dossier',
352 mbideau 9773 'dossier/dossier_autorisation_type_detaille_code',
353 gmalvolti 9765 'dossier/date_demande',
354     'dossier/depot_electronique',
355     ));
356    
357     // si l'option commune est activée (mode MC)
358     if ($this->f->is_option_dossier_commune_enabled()) {
359     $paths[] = 'dossier/insee';
360     }
361    
362     // présence d'un moyen d'identifier la collectivité/le service
363 mbideau 9955 if (! isset($json_payload['external_uids']['acteur']) &&
364 gmalvolti 9765 ! isset($json_payload['dossier']['om_collectivite'])) {
365     $this->correct = false;
366     $this->addToMessage(sprintf(
367     __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
368 mbideau 9955 sprintf('<span class="bold">%s</span>', 'external_uids/acteur'),
369 gmalvolti 9765 sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
370     sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
371     ));
372     $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
373     }
374     }
375    
376     // pas d'erreur déjà trouvée
377     if($this->correct) {
378    
379     // pour chaque chemin
380     foreach($paths as $path) {
381    
382     // décompose le chemin
383     $tokens = explode('/', $path);
384     $cur_depth = $json_payload;
385    
386     // descend au et à mesure dans l'arborescence du chemin
387     foreach($tokens as $token) {
388    
389     // en vérifiant que chaque élément du chemin est défini et non-nul
390     if (isset($cur_depth[$token]) === false) {
391    
392     // sinon on produit une erreur
393     $this->correct = false;
394     $this->addToMessage(sprintf(
395     __("La clé %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
396     sprintf('<span class="bold">%s</span>', $path),
397     sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
398     ));
399     $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
400     break 2;
401     }
402     $cur_depth = $cur_depth[$token];
403     }
404     }
405     }
406     }
407    
408     return $ret && $this->correct;
409 softime 9482 }
410    
411 softime 10356 /**
412     * [task_exists description]
413     * @param string $type [description]
414     * @param string $object_id [description]
415 gmalvolti 10380 * @param bool $is_not_done [description]
416 softime 10356 * @return [type] [description]
417     */
418 softime 10572 public function task_exists(string $type, string $object_id, string $dossier = null, bool $is_not_done = true) {
419 softime 9395 $query = sprintf('
420     SELECT task
421     FROM %1$stask
422 gmalvolti 10380 WHERE %2$s
423     type = \'%3$s\'
424 softime 10572 AND (object_id = \'%4$s\'
425     %5$s)
426 softime 9395 ',
427     DB_PREFIXE,
428 gmalvolti 10380 $is_not_done == true ? 'state != \''.self::STATUS_DONE.'\' AND' : '',
429 softime 9395 $type,
430 softime 10572 $object_id,
431     $dossier !== null ? sprintf('OR dossier = \'%s\'', $dossier) : ''
432 softime 9395 );
433     $res = $this->f->get_one_result_from_db_query($query);
434     if ($res['result'] !== null && $res['result'] !== '') {
435     return $res['result'];
436     }
437     return false;
438     }
439    
440 softime 9293 /**
441 gmalvolti 9765 * TRIGGER - triggerajouter.
442     *
443     * @param string $id
444     * @param null &$dnu1 @deprecated Ne pas utiliser.
445     * @param array $val Tableau des valeurs brutes.
446     * @param null $dnu2 @deprecated Ne pas utiliser.
447     *
448     * @return boolean
449     */
450     function triggerajouter($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
451    
452     // tâche entrante
453     if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
454    
455     // décode la paylod JSON pour extraire les données métiers à ajouter
456     // en tant que métadonnées de la tâche
457     $json_payload = json_decode($this->valF['json_payload'], true);
458 mbideau 9798
459     // si la tâche possède déjà une clé dossier
460     if (isset($json_payload['dossier']['dossier']) &&
461     ! empty($json_payload['dossier']['dossier'])) {
462     $this->valF["dossier"] = $json_payload['dossier']['dossier'];
463     }
464 gmalvolti 9765 }
465 softime 10808
466     // gestion d'une tache de type notification et de category mail
467 softime 10869 if (isset($val['type'])
468     && (//$val['type'] === 'notification_recepisse'
469     $val['type'] === 'notification_instruction'
470     || $val['type'] === 'notification_decision')
471     && isset($val['category'])
472     && $val['category'] === 'mail') {
473     // Récupère la payload de la tache
474     $data = array();
475     $data['instruction_notification'] = $this->get_instruction_notification_data(
476     $this->valF['category'],
477     'with-id',
478     array('with-id' => $this->valF['object_id'])
479     );
480     $data['dossier'] = $this->get_dossier_data($this->valF['dossier']);
481    
482 softime 10808 // Récupère l'instance de la notification
483     $inst_notif = $this->f->get_inst__om_dbform(array(
484     "obj" => "instruction_notification",
485     "idx" => $val['object_id'],
486     ));
487     // Envoi le mail et met à jour le suivi
488 softime 10869 $envoiMail = $inst_notif->send_mail_notification_demandeur($data);
489 softime 10808 // Passage de la tache à done si elle a réussi et à error
490     // si l'envoi a échoué
491     $this->valF['state'] = 'done';
492     if ($envoiMail === false) {
493     $this->valF['state'] = 'error';
494     }
495     }
496 gmalvolti 9765 }
497    
498     /**
499 softime 10812 * TRIGGER - triggermodifierapres.
500     *
501     * @param string $id
502     * @param null &$dnu1 @deprecated Ne pas utiliser.
503     * @param array $val Tableau des valeurs brutes.
504     * @param null $dnu2 @deprecated Ne pas utiliser.
505     *
506     * @return boolean
507     */
508     public function triggermodifierapres($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
509     parent::triggermodifierapres($id, $dnu1, $val, $dnu2);
510    
511     // Suivi des notificiations
512     if (isset($val['category']) === true
513     && $val['category'] === 'portal'
514     && isset($val['type']) === true
515     && ($val['type'] === 'notification_recepisse'
516     || $val['type'] === 'notification_instruction'
517     || $val['type'] === 'notification_decision')) {
518     //
519     if (isset($this->valF['state']) === true
520     && $this->valF['state'] !== $this->getVal('state')) {
521     //
522     $inst_in = $this->f->get_inst__om_dbform(array(
523     "obj" => "instruction_notification",
524     "idx" => $val['object_id'],
525     ));
526 softime 10813 $valF_in = array();
527 softime 10812 foreach ($inst_in->champs as $champ) {
528 softime 10813 $valF_in[$champ] = $inst_in->getVal($champ);
529 softime 10812 }
530 softime 10813 $valF_in['date_envoi'] = null;
531     $valF_in['date_premier_acces'] = null;
532     //
533 softime 10812 if ($this->valF['state'] === self::STATUS_DONE) {
534 softime 10813 //
535     $valF_in['statut'] = __("envoyé");
536     $valF_in['commentaire'] = __("Notification traitée");
537     $valF_in['date_envoi'] = date('d/m/Y H:i:s');
538     //
539     $inst_instruction = $this->f->get_inst__om_dbform(array(
540     "obj" => "instruction",
541     "idx" => $inst_in->getVal('instruction'),
542     ));
543     if ($inst_instruction->has_an_edition() === true) {
544     $valF_instruction = array();
545     foreach ($inst_instruction->champs as $champ) {
546     $valF_instruction[$champ] = $inst_instruction->getVal($champ);
547     }
548     $valF_instruction['date_envoi_rar'] = date('d/m/Y');
549     $valF_instruction['date_retour_rar'] = date('d/m/Y', strtotime('now + 1 day'));
550     $inst_instruction->setParameter('maj', 1);
551     $update_instruction = $inst_instruction->modifier($valF_instruction);
552     if ($update_instruction === false) {
553     $this->addToLog(__METHOD__."(): ".$inst_instruction->msg, DEBUG_MODE);
554     return false;
555     }
556     }
557 softime 10812 }
558     if ($this->valF['state'] === self::STATUS_ERROR) {
559 softime 10813 $valF_in['statut'] = __("échec");
560     $valF_in['commentaire'] = __("Le traitement de la notification a échoué");
561 softime 10812 }
562     $inst_in->setParameter('maj', 1);
563 softime 10813 $update_in = $inst_in->modifier($valF_in);
564     if ($update_in === false) {
565 softime 10812 $this->addToLog(__METHOD__."(): ".$inst_in->msg, DEBUG_MODE);
566     return false;
567     }
568     }
569     }
570    
571     //
572     return true;
573     }
574    
575     /**
576 softime 9293 * TREATMENT - add_task
577     * Ajoute un enregistrement.
578     *
579     * @param array $params Tableau des paramètres
580     * @return boolean
581     */
582     public function add_task($params = array()) {
583     $this->begin_treatment(__METHOD__);
584 softime 9853
585     // Vérifie si la task doit être ajoutée en fonction du mode de l'application,
586     // seulement pour les tasks output
587 softime 10036 $task_types_si = self::TASK_TYPE_SI;
588     $task_types_sc = self::TASK_TYPE_SC;
589 softime 9853 $stream = isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output';
590     if ($stream === 'output'
591     && isset($params['val']['type']) === true
592     && $this->f->is_option_mode_service_consulte_enabled() === true
593     && in_array($params['val']['type'], $task_types_sc) === false) {
594     //
595     return $this->end_treatment(__METHOD__, true);
596     }
597     if ($stream === 'output'
598     && isset($params['val']['type']) === true
599     && $this->f->is_option_mode_service_consulte_enabled() === false
600     && in_array($params['val']['type'], $task_types_si) === false) {
601     //
602     return $this->end_treatment(__METHOD__, true);
603     }
604    
605 softime 10808 //
606 softime 9293 $timestamp_log = json_encode(array(
607     'creation_date' => date('Y-m-d H:i:s'),
608     ));
609 gmalvolti 9751
610 softime 10808 //
611     $category = isset($params['val']['category']) === true ? $params['val']['category'] : $this->category;
612    
613 gmalvolti 9751 // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
614     // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
615 mbroquet 9776 if (isset($params['val']['type'])
616 softime 10043 && ($params['val']['type'] == "add_piece" || $params['val']['type'] == "avis_consultation")
617 gmalvolti 9751 && isset($params['val']['stream'])
618     && $params['val']['stream'] == "input" ) {
619     //
620     $json_payload = json_decode($params['val']['json_payload'], true);
621 mbideau 9955 if (json_last_error() !== JSON_ERROR_NONE) {
622     $this->addToMessage(__("Le contenu JSON de la tâche n'est pas valide."));
623     return $this->end_treatment(__METHOD__, false);
624     }
625 softime 10043 if (isset($json_payload['document_numerise']) === true
626     && empty($json_payload['document_numerise']) === false) {
627     //
628     $document_numerise = $json_payload['document_numerise'];
629     $file_content = base64_decode($document_numerise["file_content"]);
630     if ($file_content === false){
631     $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));
632     return $this->end_treatment(__METHOD__, false);
633     }
634     $metadata = array(
635     "filename" => $document_numerise['nom_fichier'],
636     "size" => strlen($file_content),
637     "mimetype" => $document_numerise['file_content_type'],
638     "date_creation" => isset($document_numerise['date_creation']) === true ? $document_numerise['date_creation'] : date("Y-m-d"),
639     );
640 gmalvolti 10058 $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content", "task.uid_fichier");
641 softime 10043 if ($uid_fichier === OP_FAILURE) {
642     $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
643     return $this->end_treatment(__METHOD__, false);
644     }
645     $json_payload["document_numerise"]["uid"] = $uid_fichier;
646     // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
647     unset($json_payload["document_numerise"]["file_content"]);
648     $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
649 gmalvolti 9751 }
650     }
651    
652 softime 9293 // Mise à jour du DI
653     $valF = array(
654     'task' => '',
655     'type' => $params['val']['type'],
656     'timestamp_log' => $timestamp_log,
657 mbideau 9799 'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
658 gmalvolti 9765 'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
659     'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
660 softime 9853 'stream' => $stream,
661 gmalvolti 9721 'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
662 softime 10808 'category' => $category,
663 softime 9293 );
664 gmalvolti 9765
665     // tâche sortante
666 softime 10808 if ($valF["stream"] == "output"
667     && $valF['type'] !== 'notification_recepisse'
668     && $valF['type'] !== 'notification_instruction'
669     && $valF['type'] !== 'notification_decision') {
670 gmalvolti 9765
671     // TODO expliquer ce code
672 softime 10572 $task_exists = $this->task_exists($valF['type'], $valF['object_id'], $valF['dossier']);
673 gmalvolti 9746 if ($valF['type'] === 'modification_DI' && $task_exists === false) {
674     $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
675 softime 9414 }
676 softime 10356 if ($valF['type'] === 'modification_DA' && $task_exists === false) {
677     $task_exists = $this->task_exists('creation_DA', $valF['object_id']);
678     }
679 softime 10572 if ($valF['type'] === 'ajout_piece') {
680     $task_exists = $this->task_exists('ajout_piece', $valF['object_id']);
681     }
682     if ($valF['type'] === 'creation_consultation') {
683     $task_exists = $this->task_exists('creation_consultation', $valF['object_id']);
684     }
685 gmalvolti 9746 if ($task_exists !== false) {
686     $inst_task = $this->f->get_inst__om_dbform(array(
687     "obj" => "task",
688     "idx" => $task_exists,
689     ));
690     $update_state = $inst_task->getVal('state');
691     if (isset($params['update_val']['state']) === true) {
692     $update_state = $params['update_val']['state'];
693     }
694     $update_params = array(
695     'val' => array(
696     'state' => $update_state,
697     ),
698     );
699     return $inst_task->update_task($update_params);
700     }
701 softime 9395 }
702 softime 9293 $add = $this->ajouter($valF);
703 mbideau 9785 $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
704 softime 9293 if ($add === false) {
705 gmalvolti 9765 $this->addToLog(__METHOD__."(): ".$this->msg, DEBUG_MODE);
706 softime 9293 return $this->end_treatment(__METHOD__, false);
707     }
708     return $this->end_treatment(__METHOD__, true);
709     }
710    
711     /**
712     * TREATMENT - update_task
713     * Met à jour l'enregistrement instancié.
714     *
715     * @param array $params Tableau des paramètres
716     * @return boolean
717     */
718     public function update_task($params = array()) {
719     $this->begin_treatment(__METHOD__);
720     $timestamp_log = $this->get_timestamp_log();
721     if ($timestamp_log === false) {
722 mbideau 9813 $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
723 softime 9293 return $this->end_treatment(__METHOD__, false);
724     }
725     array_push($timestamp_log, array(
726     'modification_date' => date('Y-m-d H:i:s'),
727     'state' => $params['val']['state'],
728     'prev_state' => $this->getVal('state'),
729     ));
730     $timestamp_log = json_encode($timestamp_log);
731     $valF = array(
732     'task' => $this->getVal($this->clePrimaire),
733     'type' => $this->getVal('type'),
734     'timestamp_log' => $timestamp_log,
735     'state' => $params['val']['state'],
736 gmalvolti 10380 'object_id' => isset($params['object_id']) == true && $this->getVal('type') == 'create_DI' ? $params['object_id'] : $this->getVal('object_id'),
737 gmalvolti 9721 'stream' => $this->getVal('stream'),
738 gmalvolti 9593 'dossier' => $this->getVal('dossier'),
739 gmalvolti 9667 'json_payload' => $this->getVal('json_payload'),
740 softime 10808 'category' => $this->getVal('category'),
741 softime 9293 );
742     $update = $this->modifier($valF);
743     if ($update === false) {
744     $this->addToLog($this->msg, DEBUG_MODE);
745     return $this->end_treatment(__METHOD__, false);
746     }
747     return $this->end_treatment(__METHOD__, true);
748     }
749    
750     /**
751     * Récupère le journal d'horodatage dans le champ timestamp_log de
752     * l'enregistrement instancié.
753 mbroquet 9776 *
754 softime 9293 * @param array $params Tableau des paramètres
755     * @return array sinon false en cas d'erreur
756     */
757     protected function get_timestamp_log($params = array()) {
758     $val = $this->getVal('timestamp_log');
759     if ($val === '') {
760     $val = json_encode(array());
761     }
762     if($this->isJson($val) === false) {
763     return false;
764     }
765     return json_decode($val, true);
766     }
767    
768     /**
769 softime 9330 * VIEW - view_json_data
770 softime 9293 * Affiche l'enregistrement dans le format JSON.
771     *
772     * @return void
773     */
774 softime 9330 public function view_json_data() {
775 softime 9293 $this->checkAccessibility();
776 softime 9330 $this->f->disableLog();
777 softime 9298 if ($this->getParameter('idx') !== ']'
778     && $this->getParameter('idx') !== '0') {
779     //
780     $this->view_form_json();
781     }
782     else {
783     $this->view_tab_json();
784     }
785     }
786    
787     protected function view_tab_json() {
788 softime 9304 $where = '';
789     if ($this->f->get_submitted_get_value('state') !== null
790     && $this->f->get_submitted_get_value('state') !== '') {
791     //
792 softime 10808 $where_or_and = 'WHERE';
793     if ($where !== '') {
794     $where_or_and = 'AND';
795     }
796     $where .= sprintf(' %s state = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('state'));
797 softime 9304 }
798 softime 10808 if ($this->f->get_submitted_get_value('category') !== null
799     && $this->f->get_submitted_get_value('category') !== '') {
800     //
801     $where_or_and = 'WHERE';
802     if ($where !== '') {
803     $where_or_and = 'AND';
804     }
805     $where .= sprintf(' %s category = \'%s\' ', $where_or_and, $this->f->get_submitted_get_value('category'));
806     }
807 softime 9298 $query = sprintf('
808     SELECT
809     *
810     FROM %1$stask
811 softime 9304 %2$s
812 softime 9481 ORDER BY task ASC
813 softime 9298 ',
814 softime 9304 DB_PREFIXE,
815     $where
816 softime 9298 );
817     $res = $this->f->get_all_results_from_db_query($query, true);
818     if ($res['code'] === 'KO') {
819     return false;
820     }
821     $list_tasks = array();
822     foreach ($res['result'] as $task) {
823 softime 9404 $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
824 softime 9855 $task['dossier'] = $task['dossier'];
825 softime 9950 if ($task['type'] === 'ajout_piece') {
826 softime 9490 $val_dn = $this->get_document_numerise_data($task['object_id']);
827     }
828 softime 9872 if ($task['stream'] === 'output') {
829     $task['external_uids'] = $this->get_all_external_uids($task['dossier']);
830     }
831 softime 9298 $list_tasks[$task['task']] = $task;
832     }
833     printf(json_encode($list_tasks));
834     }
835    
836 softime 9395 protected function get_dossier_data(string $dossier) {
837     $val_di = array();
838     $inst_di = $this->f->get_inst__om_dbform(array(
839     "obj" => "dossier",
840     "idx" => $dossier,
841     ));
842 softime 9404 $val_di = $inst_di->get_json_data();
843 softime 9396 if ($val_di['dossier_instruction_type_code'] === 'T') {
844     $val_di['date_decision_transfert'] = $val_di['date_decision'];
845     }
846 softime 9395 unset($val_di['initial_dt']);
847     unset($val_di['log_instructions']);
848     return $val_di;
849     }
850    
851     protected function get_dossier_autorisation_data(string $da) {
852     $val_da = array();
853     $inst_da = $this->f->get_inst__om_dbform(array(
854     "obj" => "dossier_autorisation",
855     "idx" => $da,
856     ));
857 softime 9404 $val_da = $inst_da->get_json_data();
858 softime 9395 return $val_da;
859     }
860    
861     protected function get_donnees_techniques_data(string $fk_idx, string $fk_field) {
862     $val_dt = array();
863     $inst_dt = $this->f->get_inst__by_other_idx(array(
864     "obj" => "donnees_techniques",
865     "fk_field" => $fk_field,
866     "fk_idx" => $fk_idx,
867     ));
868     $val_dt = array(
869     'donnees_techniques' => $inst_dt->getVal($inst_dt->clePrimaire),
870     'cerfa' => $inst_dt->getVal('cerfa'),
871     );
872     $val_dt = array_merge($val_dt, $inst_dt->get_donnees_techniques_applicables());
873 softime 9396 if (isset($val_dt['am_exist_date']) === true) {
874     $val_dt['am_exist_date_num'] = '';
875     if (is_numeric($val_dt['am_exist_date']) === true) {
876     $val_dt['am_exist_date_num'] = $val_dt['am_exist_date'];
877     }
878     }
879 softime 9403 // Correspond à la nomenclature de Plat'AU STATUT_INFO
880     $val_dt['tax_statut_info'] = 'Déclaré';
881 softime 9407 //
882     if ($inst_dt->is_tab_surf_ssdest_enabled() === true) {
883     $fields_tab_surf_dest = $inst_dt->get_fields_tab_surf_dest();
884     foreach ($fields_tab_surf_dest as $field) {
885     if (isset($val_dt[$field]) === true) {
886     unset($val_dt[$field]);
887     }
888     }
889     } else {
890     $fields_tab_surf_ssdest = $inst_dt->get_fields_tab_surf_ssdest();
891     foreach ($fields_tab_surf_ssdest as $field) {
892     if (isset($val_dt[$field]) === true) {
893     unset($val_dt[$field]);
894     }
895     }
896     }
897 softime 9409 // Correspond à la nouvelle ligne CERFA v7 dans le DENSI imposition 1.2.3
898 softime 9408 if (isset($val_dt['tax_su_non_habit_surf2']) === true
899 softime 9412 && isset($val_dt['tax_su_non_habit_surf3']) === true
900     && (($val_dt['tax_su_non_habit_surf2'] !== null
901     && $val_dt['tax_su_non_habit_surf2'] !== '')
902     || ($val_dt['tax_su_non_habit_surf3'] !== null
903     && $val_dt['tax_su_non_habit_surf3'] !== ''))) {
904 softime 9408 //
905     $val_dt['tax_su_non_habit_surf8'] = intval($val_dt['tax_su_non_habit_surf2']) + intval($val_dt['tax_su_non_habit_surf3']);
906     }
907     if (isset($val_dt['tax_su_non_habit_surf_stat2']) === true
908 softime 9412 && isset($val_dt['tax_su_non_habit_surf_stat3']) === true
909     && (($val_dt['tax_su_non_habit_surf_stat2'] !== null
910     && $val_dt['tax_su_non_habit_surf_stat2'] !== '')
911     || ($val_dt['tax_su_non_habit_surf_stat3'] !== null
912     && $val_dt['tax_su_non_habit_surf_stat3'] !== ''))) {
913 softime 9408 //
914     $val_dt['tax_su_non_habit_surf_stat8'] = intval($val_dt['tax_su_non_habit_surf_stat2']) + intval($val_dt['tax_su_non_habit_surf_stat3']);
915     }
916 softime 9409 // Cas particulier d'un projet réduit à l'extension d'une habitation existante
917     $particular_case = false;
918     $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();
919     foreach ($fields_tab_crea_loc_hab as $field) {
920 softime 9438 if (isset($val_dt[$field]) === false
921     || (isset($val_dt[$field]) === true
922     && ($val_dt[$field] === null
923     || $val_dt[$field] === ''))) {
924 softime 9409 //
925     $particular_case = true;
926     }
927     }
928     if ($particular_case === true) {
929     if (isset($val_dt['tax_ext_pret']) === true
930     && $val_dt['tax_ext_pret'] === 'f') {
931     //
932     $val_dt['tax_su_princ_surf1'] = $val_dt['tax_surf_tot_cstr'];
933     $val_dt['tax_su_princ_surf_stat1'] = $val_dt['tax_surf_loc_stat'];
934     }
935     if (isset($val_dt['tax_ext_pret']) === true
936     && $val_dt['tax_ext_pret'] === 't') {
937     //
938     if (isset($val_dt['tax_ext_desc']) === true) {
939     if (preg_match('/[pP].*[lL].*[aA].*[iI]/', $val_dt['tax_ext_desc']) === 1
940     || preg_match('/[lL].*[lL].*[tT].*[sS]/', $val_dt['tax_ext_desc']) === 1) {
941     //
942     $val_dt['tax_su_princ_surf2'] = $val_dt['tax_surf_tot_cstr'];
943     $val_dt['tax_su_princ_surf_stat2'] = $val_dt['tax_surf_loc_stat'];
944     }
945     // if (preg_match('/[pP].*[tT].*[zZ]/', $val_dt['tax_ext_desc']) === 1) {
946     // $val_dt['tax_su_princ_surf4'] = $val_dt['tax_surf_tot_cstr'];
947     // $val_dt['tax_su_princ_surf_stat4'] = $val_dt['tax_surf_loc_stat'];
948     // }
949     // if (preg_match('/[pP].*[lL].*[uU].*[sS]/', $val_dt['tax_ext_desc']) === 1
950     // || preg_match('/[lL].*[eE].*[sS]/', $val_dt['tax_ext_desc']) === 1
951     // || preg_match('/[pP].*[sS].*[lL].*[aA]/', $val_dt['tax_ext_desc']) === 1
952     // || preg_match('/[pP].*[lL].*[sS]/', $val_dt['tax_ext_desc']) === 1
953     // || preg_match('/[lL].*[lL].*[sS]/', $val_dt['tax_ext_desc']) === 1) {
954     // //
955     // $val_dt['tax_su_princ_surf3'] = $val_dt['tax_surf_tot_cstr'];
956     // $val_dt['tax_su_princ_surf_stat3'] = $val_dt['tax_surf_loc_stat'];
957     // }
958     }
959     }
960     }
961     // Cas particulier de la surface taxable démolie
962     if (isset($val_dt['tax_surf_tot_demo']) === true
963     && isset($val_dt['tax_surf_tax_demo']) === true
964     && ($val_dt['tax_surf_tot_demo'] === null
965     || $val_dt['tax_surf_tot_demo'] === '')) {
966     //
967     $val_dt['tax_surf_tot_demo'] = $val_dt['tax_surf_tax_demo'];
968     }
969 softime 9395 return $val_dt;
970     }
971    
972 softime 9984 /**
973     * Récupère la liste des objets distincts existants dans la table des liens
974     * entre identifiants internes et identifiants externes.
975     *
976     * @return array
977     */
978     protected function get_list_distinct_objects_external_link() {
979     $query = sprintf('
980     SELECT
981     DISTINCT(object)
982     FROM %1$slien_id_interne_uid_externe
983     ORDER BY object ASC
984     ',
985     DB_PREFIXE
986     );
987     $res = $this->f->get_all_results_from_db_query($query, true);
988     if ($res['code'] === 'KO') {
989     return array();
990     }
991     $result = array();
992     foreach ($res['result'] as $object) {
993     $result[] = $object['object'];
994     }
995     return $result;
996     }
997    
998 softime 9395 protected function get_external_uid($fk_idx, string $fk_idx_2) {
999 softime 9404 $inst_external_uid = $this->f->get_inst__by_other_idx(array(
1000 softime 9395 "obj" => "lien_id_interne_uid_externe",
1001     "fk_field" => 'object_id',
1002     "fk_idx" => $fk_idx,
1003     "fk_field_2" => 'object',
1004     "fk_idx_2" => $fk_idx_2,
1005     ));
1006 softime 9404 return $inst_external_uid->getVal('external_uid');
1007 softime 9395 }
1008    
1009 softime 9984 protected function get_all_external_uids($fk_idx, $link_objects = array()) {
1010     if (count($link_objects) == 0) {
1011     $link_objects = $this->get_list_distinct_objects_external_link();
1012     }
1013 softime 9872 $val_external_uid = array();
1014     foreach ($link_objects as $link_object) {
1015     $external_uid = $this->get_external_uid($fk_idx, $link_object);
1016     if ($external_uid !== '' && $external_uid !== null) {
1017     $val_external_uid[$link_object] = $external_uid;
1018     }
1019     }
1020     return $val_external_uid;
1021     }
1022    
1023 softime 9395 protected function get_demandeurs_data(string $dossier) {
1024     $val_demandeur = array();
1025     $inst_di = $this->f->get_inst__om_dbform(array(
1026     "obj" => "dossier",
1027     "idx" => $dossier,
1028     ));
1029     $list_demandeurs = $inst_di->get_demandeurs();
1030     foreach ($list_demandeurs as $demandeur) {
1031     $inst_demandeur = $this->f->get_inst__om_dbform(array(
1032     "obj" => "demandeur",
1033     "idx" => $demandeur['demandeur'],
1034 softime 9334 ));
1035 softime 9404 $val_demandeur[$demandeur['demandeur']] = $inst_demandeur->get_json_data();
1036 softime 9395 $val_demandeur[$demandeur['demandeur']]['petitionnaire_principal'] = $demandeur['petitionnaire_principal'];
1037 softime 9334 }
1038 softime 9395 return $val_demandeur;
1039     }
1040    
1041     protected function get_architecte_data($architecte = null) {
1042 softime 9408 $val_architecte = null;
1043 softime 9395 if ($architecte !== null
1044     && $architecte !== '') {
1045 softime 9334 //
1046 softime 9395 $inst_architecte = $this->f->get_inst__om_dbform(array(
1047     "obj" => "architecte",
1048     "idx" => $architecte,
1049 softime 9334 ));
1050 softime 9404 $val_architecte = $inst_architecte->get_json_data();
1051 softime 9334 }
1052 softime 9395 return $val_architecte;
1053     }
1054 softime 9334
1055 softime 9838 protected function get_instruction_data(string $dossier, $type = 'decision', $extra_params = array()) {
1056 softime 9414 $val_instruction = null;
1057 softime 9416 $instruction_with_doc = null;
1058 softime 9395 $inst_di = $this->f->get_inst__om_dbform(array(
1059     "obj" => "dossier",
1060     "idx" => $dossier,
1061     ));
1062 softime 9457 $idx = null;
1063     if ($type === 'decision') {
1064     $idx = $inst_di->get_last_instruction_decision();
1065     }
1066     if ($type === 'incompletude') {
1067     $idx = $inst_di->get_last_instruction_incompletude();
1068     }
1069 softime 9838 // XXX Permet de récupérer l'instruction par son identifiant
1070     if ($type === 'with-id') {
1071     $idx = $extra_params['with-id'];
1072     }
1073 softime 9395 $inst_instruction = $this->f->get_inst__om_dbform(array(
1074     "obj" => "instruction",
1075 softime 9457 "idx" => $idx,
1076 softime 9395 ));
1077     if (count($inst_instruction->val) > 0) {
1078 softime 9416 $val_instruction = array();
1079     $instruction_data = $inst_instruction->get_json_data();
1080     $val_instruction = $this->sort_instruction_data($instruction_data, $val_instruction);
1081     if ($instruction_data['om_fichier_instruction'] !== null
1082     && $instruction_data['om_fichier_instruction'] !== '') {
1083     //
1084     $instruction_with_doc = $inst_instruction->getVal($inst_instruction->clePrimaire);
1085     }
1086 softime 9414 $inst_ev = $this->f->get_inst__om_dbform(array(
1087     "obj" => "evenement",
1088     "idx" => $inst_instruction->getVal('evenement'),
1089     ));
1090     if ($inst_ev->getVal('retour') === 't') {
1091     $instructions_related = $inst_instruction->get_related_instructions();
1092     foreach ($instructions_related as $instruction) {
1093 softime 9416 if ($instruction !== null && $instruction !== '') {
1094     $inst_related_instruction = $this->f->get_inst__om_dbform(array(
1095     "obj" => "instruction",
1096     "idx" => $instruction,
1097     ));
1098     $instruction_data = $inst_related_instruction->get_json_data();
1099     $val_instruction = $this->sort_instruction_data($instruction_data, $val_instruction);
1100     if ($instruction_data['om_fichier_instruction'] !== null
1101     && $instruction_data['om_fichier_instruction'] !== '') {
1102     //
1103     $instruction_with_doc = $inst_related_instruction->getVal($inst_related_instruction->clePrimaire);
1104     }
1105     }
1106 softime 9414 }
1107     }
1108 softime 9416 if ($instruction_with_doc !== null) {
1109     //
1110 softime 9480 $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);
1111 softime 9416 }
1112 softime 9384 }
1113 softime 9395 return $val_instruction;
1114     }
1115 softime 9334
1116 softime 10808 /**
1117     * Récupère les informations
1118     */
1119     protected function get_instruction_notification_data($category, $type = '', $extra_params = array()) {
1120     $val_in = array();
1121    
1122     $idx = null;
1123     if ($type === 'with-id') {
1124     $idx = $extra_params['with-id'];
1125     }
1126    
1127     // récupére les données à intégrer à la payload
1128     $inst_in = $this->f->get_inst__om_dbform(array(
1129     "obj" => "instruction_notification",
1130     "idx" => $idx,
1131     ));
1132     $val_in = $inst_in->get_json_data();
1133    
1134     // Récupération du message et du titre
1135     $inst_instruction = $this->f->get_inst__om_dbform(array(
1136     "obj" => "instruction",
1137     "idx" => $inst_in->getVal('instruction'),
1138     ));
1139     $collectivite_id = $inst_instruction->get_dossier_instruction_om_collectivite($inst_instruction->getVal('dossier'));
1140     $phrase_type_notification = array();
1141     $phrase_type_notification = $this->f->get_notification_parametre_courriel_type($collectivite_id);
1142     //
1143     $val_in['parametre_courriel_type_titre'] = $phrase_type_notification['parametre_courriel_type_titre'];
1144     $val_in['parametre_courriel_type_message'] = $phrase_type_notification['parametre_courriel_type_message'];
1145    
1146 softime 10869 // Récupération des liens vers les documents et de l'id de l'instruction
1147     // de l'annexe
1148     $infoDocNotif = $inst_in->getInfosDocumentsNotif($inst_in->getVal($inst_in->clePrimaire));
1149     $val_in['lien_telechargement_document'] = $infoDocNotif['document']['lien'];
1150     $val_in['lien_telechargement_annexe'] = $infoDocNotif['annexe']['lien'];
1151     $val_in['instruction_annexe'] = $infoDocNotif['annexe']['id_instruction'];
1152    
1153 softime 10808 return $val_in;
1154     }
1155    
1156 softime 9416 protected function sort_instruction_data(array $values, array $res) {
1157     $fields = array(
1158 softime 9838 "date_evenement",
1159 softime 9416 "date_envoi_signature",
1160     "date_retour_signature",
1161     "date_envoi_rar",
1162     "date_retour_rar",
1163     "date_envoi_controle_legalite",
1164     "date_retour_controle_legalite",
1165     "signataire_arrete",
1166     "om_fichier_instruction",
1167     "tacite",
1168 softime 9623 "lettretype",
1169 softime 10869 "commentaire",
1170     "complement_om_html",
1171 softime 9416 );
1172     foreach ($values as $key => $value) {
1173     if (in_array($key, $fields) === true) {
1174     if (array_key_exists($key, $res) === false
1175     && $value !== null
1176     && $value !== '') {
1177     //
1178     $res[$key] = $value;
1179     } elseif ($key === 'tacite'
1180     && $value === 't') {
1181     //
1182     $res[$key] = $value;
1183     }
1184     }
1185     }
1186     return $res;
1187     }
1188    
1189 softime 9395 protected function get_document_numerise_data(string $dn) {
1190     $val_dn = array();
1191     $inst_dn = $this->f->get_inst__om_dbform(array(
1192     "obj" => "document_numerise",
1193     "idx" => $dn,
1194     ));
1195 softime 9404 $val_dn = $inst_dn->get_json_data();
1196 softime 9480 $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'));
1197 softime 9403 // Correspond à la nomenclature Plat'AU NATURE_PIECE
1198 softime 9457 $val_dn['nature'] = $val_dn['document_numerise_nature_libelle'];
1199 softime 9395 return $val_dn;
1200     }
1201    
1202 softime 9396 protected function get_parcelles_data(string $object, string $idx) {
1203     $val_dp = array();
1204     $inst_di = $this->f->get_inst__om_dbform(array(
1205     "obj" => $object,
1206     "idx" => $idx,
1207     ));
1208     $list_parcelles = $inst_di->get_parcelles();
1209     $no_ordre = 1;
1210     foreach ($list_parcelles as $parcelle) {
1211     $val_dp[$parcelle[$object.'_parcelle']] = array(
1212     $object.'_parcelle' => $parcelle[$object.'_parcelle'],
1213     'libelle' => $parcelle['libelle'],
1214     'no_ordre' => $no_ordre,
1215     );
1216     $no_ordre++;
1217     }
1218     return $val_dp;
1219     }
1220    
1221 softime 9853 protected function get_avis_decision_data(string $dossier) {
1222     $inst_di = $this->f->get_inst__om_dbform(array(
1223     "obj" => "dossier",
1224     "idx" => $dossier,
1225     ));
1226     $ad = $inst_di->getVal('avis_decision');
1227     $val_ad = array();
1228 softime 10104 if ($ad !== null) {
1229     $inst_ad = $this->f->get_inst__om_dbform(array(
1230     "obj" => "avis_decision",
1231     "idx" => $ad,
1232     ));
1233     $val_ad = $inst_ad->get_json_data();
1234     $val_ad['txAvis'] = "Voir document joint";
1235     if (isset($val_ad['tacite']) === true
1236     && $val_ad['tacite'] === 't') {
1237     //
1238     $val_ad['txAvis'] = "Sans objet";
1239     }
1240 softime 9871 }
1241 softime 9853 return $val_ad;
1242     }
1243    
1244     protected function get_signataire_arrete_data(string $sa) {
1245     $inst_sa = $this->f->get_inst__om_dbform(array(
1246     "obj" => "signataire_arrete",
1247     "idx" => $sa,
1248     ));
1249     $val_sa = array_combine($inst_sa->champs, $inst_sa->val);
1250     foreach ($val_sa as $key => $value) {
1251     $val_sa[$key] = strip_tags($value);
1252     }
1253     return $val_sa;
1254     }
1255    
1256 softime 10032 // XXX WIP
1257     protected function get_consultation_data(string $consultation) {
1258     $val_consultation = array();
1259     $inst_consultation = $this->f->get_inst__om_dbform(array(
1260     "obj" => "consultation",
1261     "idx" => $consultation,
1262     ));
1263     $val_consultation = $inst_consultation->get_json_data();
1264 softime 10133 if (isset($val_consultation['fichier']) === true
1265     && $val_consultation['fichier'] !== '') {
1266     //
1267     $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'));
1268     }
1269     if (isset($val_consultation['om_fichier_consultation']) === true
1270     && $val_consultation['om_fichier_consultation'] !== '') {
1271     //
1272     $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'));
1273     }
1274 softime 10032 return $val_consultation;
1275     }
1276    
1277     // XXX WIP
1278     protected function get_service_data(string $service) {
1279     $val_service = array();
1280     $inst_service = $this->f->get_inst__om_dbform(array(
1281     "obj" => "service",
1282     "idx" => $service,
1283     ));
1284     $val_service = $inst_service->get_json_data();
1285     return $val_service;
1286     }
1287    
1288 gmalvolti 9604 protected function view_form_json($in_field = false) {
1289 softime 9395 //
1290 softime 10356 if ($this->f->get_submitted_post_value('valid') === null
1291 softime 10572 && $this->getVal('state') !== self::STATUS_CANCELED) {
1292 softime 9402 // Liste des valeurs à afficher
1293     $val = array();
1294 softime 9395 //
1295 softime 9402 $val_task = array_combine($this->champs, $this->val);
1296 softime 9405 foreach ($val_task as $key => $value) {
1297     $val_task[$key] = strip_tags($value);
1298     }
1299 softime 9404 $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);
1300 softime 9402 $val['task'] = $val_task;
1301     //
1302 softime 10356 if ($this->getVal('type') === 'creation_DA'
1303     || $this->getVal('type') === 'modification_DA') {
1304     //
1305 softime 9402 $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));
1306     $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');
1307     $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);
1308     $val_external_uid = array();
1309     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier_autorisation']['dossier_autorisation'], 'dossier_autorisation');
1310 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
1311 softime 9402 }
1312     //
1313     if ($this->getVal('type') === 'creation_DI'
1314 softime 9417 || $this->getVal('type') === 'modification_DI'
1315     || $this->getVal('type') === 'depot_DI') {
1316 softime 9402 //
1317     $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
1318     $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_instruction');
1319     $val['demandeur'] = $this->get_demandeurs_data($val['dossier']['dossier']);
1320 softime 9403 $architecte = isset($val['donnees_techniques']['architecte']) === true ? $val['donnees_techniques']['architecte'] : null;
1321     $val['architecte'] = $this->get_architecte_data($architecte);
1322 softime 9402 $val['dossier_parcelle'] = $this->get_parcelles_data('dossier', $val['dossier']['dossier']);
1323     $val_external_uid = array();
1324     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1325     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1326 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
1327 softime 9402 }
1328     //
1329     if ($this->getVal('type') === 'qualification_DI') {
1330 softime 10356 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1331 softime 9402 $val_external_uid = array();
1332     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1333     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1334 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
1335 softime 9402 }
1336     //
1337     if ($this->getVal('type') === 'ajout_piece') {
1338     $val['document_numerise'] = $this->get_document_numerise_data($this->getVal('object_id'));
1339     $val['dossier'] = $this->get_dossier_data($val['document_numerise']['dossier']);
1340     $val_external_uid = array();
1341     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1342     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1343     $val_external_uid['document_numerise'] = $this->get_external_uid($val['document_numerise']['document_numerise'], 'document_numerise');
1344 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
1345 softime 9402 }
1346 softime 9414 //
1347     if ($this->getVal('type') === 'decision_DI') {
1348 softime 9853 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1349     $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1350 softime 10869 if (isset($val['instruction']['signataire_arrete']) === true) {
1351     $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1352     }
1353 softime 9414 $val_external_uid = array();
1354     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1355     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1356 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
1357 softime 9414 }
1358 softime 9457 //
1359     if ($this->getVal('type') === 'incompletude_DI') {
1360 softime 9853 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1361     $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1362 softime 9457 $val_external_uid = array();
1363     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1364     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1365 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
1366 softime 9457 }
1367 softime 9479 //
1368 softime 9458 if ($this->getVal('type') === 'completude_DI') {
1369 softime 9853 $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1370     $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $this->getVal('object_id')));
1371 softime 9458 $val_external_uid = array();
1372     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1373     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1374 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
1375 softime 9458 }
1376 softime 9838 //
1377     if ($this->getVal('type') === 'pec_metier_consultation') {
1378     $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1379     $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1380     $val_external_uid = array();
1381     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1382     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1383 softime 9950 $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1384 softime 9838 $val['external_uids'] = $val_external_uid;
1385     }
1386 softime 9853 //
1387     if ($this->getVal('type') === 'avis_consultation') {
1388     $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1389     $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1390     $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1391     if (isset($val['instruction']['signataire_arrete']) === true) {
1392     $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1393     }
1394     $val_external_uid = array();
1395     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1396     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1397 softime 9950 $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1398 softime 9853 $val['external_uids'] = $val_external_uid;
1399     }
1400 softime 10032 // XXX WIP
1401     if ($this->getVal('type') === 'creation_consultation') {
1402     //
1403     $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1404     $val['consultation'] = $this->get_consultation_data($this->getVal('object_id'));
1405     $val['service'] = $this->get_service_data($val['consultation']['service']);
1406     $val_external_uid = array();
1407     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1408     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1409     $val['external_uids'] = $val_external_uid;
1410     }
1411 softime 10808 //
1412     if ($this->getVal('type') === 'notification_instruction'
1413     || $this->getVal('type') === 'notification_recepisse'
1414     || $this->getVal('type') === 'notification_decision') {
1415     //
1416     $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1417     $val['demandeur'] = $this->get_demandeurs_data($this->getVal('dossier'));
1418     $val['instruction_notification'] = $this->get_instruction_notification_data($this->getVal('category'), 'with-id', array('with-id' => $this->getVal('object_id')));
1419     $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $val['instruction_notification']['instruction']));
1420 softime 10869 if ($val['instruction_notification']['instruction_annexe'] != '') {
1421     $val['instruction_annexe'] = $this->get_instruction_data($val['dossier']['dossier'], 'with-id', array('with-id' => $val['instruction_notification']['instruction_annexe']));
1422     }
1423 softime 10808 $val_external_uid = array();
1424     $val_external_uid['demande'] = $this->get_external_uid($val['dossier']['dossier'], 'demande');
1425     $val['external_uids'] = $val_external_uid;
1426     }
1427 softime 10869 //
1428     if ($this->getVal('type') === 'prescription') {
1429     $val['dossier'] = $this->get_dossier_data($this->getVal('dossier'));
1430     $val['instruction'] = $this->get_instruction_data($this->getVal('dossier'), 'with-id', array('with-id' => $this->getVal('object_id')));
1431     $val['avis_decision'] = $this->get_avis_decision_data($this->getVal('dossier'));
1432     if (isset($val['instruction']['signataire_arrete']) === true) {
1433     $val['signataire_arrete'] = $this->get_signataire_arrete_data($val['instruction']['signataire_arrete']);
1434     }
1435     $val_external_uid = array();
1436     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
1437     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
1438     $val_external_uid['dossier_consultation'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier_consultation');
1439     $val['external_uids'] = $val_external_uid;
1440     }
1441 softime 9402
1442 gmalvolti 9604 if ($in_field === true) {
1443 gmalvolti 9746 return json_encode($val, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
1444 gmalvolti 9604 } else {
1445     // Liste des valeurs affichée en JSON
1446     printf(json_encode($val, JSON_UNESCAPED_SLASHES));
1447     }
1448 softime 9395 }
1449 softime 9293 }
1450 softime 9385
1451 gmalvolti 9765 function post_update_task() {
1452 gmalvolti 9721 // Mise à jour des valeurs
1453 softime 9973
1454     // Modification de l'état de la tâche
1455     if ($this->f->get_submitted_post_value('state') !== null) {
1456     $params = array(
1457     'val' => array(
1458     'state' => $this->f->get_submitted_post_value('state')
1459     ),
1460 gmalvolti 9721 );
1461 softime 9973 $update = $this->update_task($params);
1462     $message_class = "valid";
1463     $message = $this->msg;
1464     if ($update === false) {
1465     $this->addToLog($this->msg, DEBUG_MODE);
1466     $message_class = "error";
1467     $message = sprintf(
1468     '%s %s',
1469     __('Impossible de mettre à jour la tâche.'),
1470     __('Veuillez contacter votre administrateur.')
1471     );
1472     }
1473     $this->f->displayMessage($message_class, $message);
1474 gmalvolti 9721 }
1475 softime 9950
1476 softime 9973 // Sauvegarde de l'uid externe retourné
1477     if ($this->f->get_submitted_post_value('external_uid') !== null) {
1478 softime 9950 //
1479 softime 10032 $objects = $this->get_objects_by_task_type($this->getVal('type'), $this->getVal('stream'));
1480 softime 9973 foreach ($objects as $object) {
1481     $inst_lien = $this->f->get_inst__om_dbform(array(
1482     "obj" => "lien_id_interne_uid_externe",
1483     "idx" => ']',
1484     ));
1485     if ($inst_lien->is_exists($object, $this->getVal('object_id'), $this->f->get_submitted_post_value('external_uid'), $this->getVal('dossier')) === false) {
1486     $valF = array(
1487     'lien_id_interne_uid_externe' => '',
1488     'object' => $object,
1489     'object_id' => $this->getVal('object_id'),
1490     'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1491     'dossier' => $this->getVal('dossier'),
1492 softime 10808 'category' => $this->getVal('category'),
1493 softime 9973 );
1494     $add = $inst_lien->ajouter($valF);
1495     $message_class = "valid";
1496     $message = $inst_lien->msg;
1497     if ($add === false) {
1498     $this->addToLog($inst_lien->msg, DEBUG_MODE);
1499     $message_class = "error";
1500     $message = sprintf(
1501     '%s %s',
1502     __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1503     __('Veuillez contacter votre administrateur.')
1504 softime 9950 );
1505     }
1506 softime 9973 $this->f->displayMessage($message_class, $message);
1507 softime 9950 }
1508 gmalvolti 9840 }
1509 gmalvolti 9721 }
1510     }
1511    
1512 gmalvolti 9765 function post_add_task() {
1513 mbroquet 9776 // TODO Tester de remplacer la ligne de json_payload par un $_POST
1514 gmalvolti 9765 $result = $this->add_task(array(
1515     'val' => array(
1516     'stream' => 'input',
1517     'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload')),
1518     'type' => $this->f->get_submitted_post_value('type'),
1519 softime 10808 'category' => $this->f->get_submitted_post_value('category'),
1520 gmalvolti 9765 )
1521     ));
1522 mbideau 9955 $message = sprintf(
1523     __("Tâche %s ajoutée avec succès"),
1524     $this->getVal($this->clePrimaire)).
1525     '<br/><br/>'.
1526     $this->msg;
1527 gmalvolti 9751 $message_class = "valid";
1528     if ($result === false){
1529     $this->addToLog($this->msg, DEBUG_MODE);
1530     $message_class = "error";
1531     $message = sprintf(
1532     '%s %s',
1533     __('Impossible d\'ajouter la tâche.'),
1534     __('Veuillez contacter votre administrateur.')
1535 gmalvolti 9746 );
1536     }
1537 gmalvolti 9751 $this->f->displayMessage($message_class, $message);
1538 gmalvolti 9721 }
1539    
1540 gmalvolti 9604 function setLayout(&$form, $maj) {
1541 mbideau 9813
1542     // Récupération du mode de l'action
1543     $crud = $this->get_action_crud($maj);
1544    
1545     // MODE different de CREER
1546     if ($maj != 0 || $crud != 'create') {
1547     $form->setBloc('json_payload', 'D', '', 'col_6');
1548     $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1549     $form->setBloc('json_payload', 'F');
1550     }
1551 gmalvolti 9604 $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1552     }
1553    
1554 softime 9950 /**
1555     * [get_objects_by_task_type description]
1556     * @param [type] $type [description]
1557     * @return [type] [description]
1558     */
1559 softime 10032 function get_objects_by_task_type($type, $stream = 'all') {
1560 softime 9950 $objects = array();
1561 softime 10356 if (in_array($type, array('creation_DA', 'modification_DA', )) === true) {
1562 softime 9950 $objects = array('dossier_autorisation', );
1563     }
1564     if (in_array($type, array('creation_DI', 'depot_DI', 'notification_DI', 'qualification_DI', )) === true) {
1565     $objects = array('dossier', );
1566     }
1567     if (in_array($type, array('create_DI_for_consultation', )) === true) {
1568     $objects = array('dossier', 'dossier_consultation', );
1569     }
1570 gmalvolti 10317 if (in_array($type, array('create_DI', )) === true
1571     && $stream === 'input') {
1572 softime 10808 $objects = array('dossier', 'dossier_autorisation', 'demande', );
1573 gmalvolti 10317 }
1574 softime 9950 if (in_array($type, array('decision_DI', 'incompletude_DI', 'completude_DI', )) === true) {
1575     $objects = array('instruction', );
1576     }
1577 softime 10032 if (in_array($type, array('pec_metier_consultation', )) === true
1578     && $stream === 'output') {
1579 softime 9950 $objects = array('pec_dossier_consultation', );
1580     }
1581 softime 10032 if (in_array($type, array('avis_consultation', )) === true
1582     && $stream === 'output') {
1583 softime 9950 $objects = array('avis_dossier_consultation', );
1584     }
1585 softime 10869 if (in_array($type, array('prescription', )) === true
1586     && $stream === 'output') {
1587     $objects = array('prescription', );
1588     }
1589 softime 9950 if (in_array($type, array('ajout_piece', 'add_piece', )) === true) {
1590     $objects = array('piece', );
1591     }
1592 softime 10032 if (in_array($type, array('creation_consultation', )) === true) {
1593     $objects = array('consultation', );
1594     }
1595 softime 10043 if (in_array($type, array('pec_metier_consultation', )) === true
1596 softime 10032 && $stream === 'input') {
1597 softime 10043 $objects = array('pec_metier_consultation', );
1598 softime 10032 }
1599 softime 10043 if (in_array($type, array('avis_consultation', )) === true
1600     && $stream === 'input') {
1601     $objects = array('avis_consultation', );
1602     }
1603 cgarcin 10362 if (in_array($type, array('create_message', )) === true
1604     && $stream === 'input') {
1605     $objects = array('dossier_message', );
1606     }
1607 softime 10808 if (in_array($type, array('notification_recepisse', 'notification_instruction', 'notification_decision' )) === true) {
1608     $objects = array('instruction_notification', );
1609     }
1610 softime 9950 return $objects;
1611     }
1612    
1613 softime 9293 }

Properties

Name Value
svn:executable *

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26