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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 9814 - (hide annotations)
Mon Jan 4 15:34:21 2021 UTC (4 years ago) by softime
Original Path: branches/4.14.0-develop/obj/task.class.php
File size: 47908 byte(s)
* Merge de la branche d'intégration intermédiaire 4.14.0-develop_demat dans la branche d'intégration pricipale 4.14.0-develop

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    
17 softime 9293 /**
18     * Définition des actions disponibles sur la classe.
19     *
20     * @return void
21     */
22     public function init_class_actions() {
23     parent::init_class_actions();
24     //
25     $this->class_actions[998] = array(
26 softime 9330 "identifier" => "json_data",
27     "view" => "view_json_data",
28 softime 9293 "permission_suffix" => "consulter",
29     );
30 gmalvolti 9721 $this->class_actions[997] = array(
31     "identifier" => "json_data",
32 gmalvolti 9765 "view" => "post_update_task",
33 gmalvolti 9721 "permission_suffix" => "modifier",
34     );
35     $this->class_actions[996] = array(
36     "identifier" => "json_data",
37 gmalvolti 9765 "view" => "post_add_task",
38 gmalvolti 9721 "permission_suffix" => "ajouter",
39     );
40 softime 9293 }
41    
42 softime 9482 public function setvalF($val = array()) {
43 mbideau 9813
44     // les guillets doubles sont remplacés automatiquement par des simples
45     // dans core/om_formulaire.clasS.php::recupererPostvar()
46     // voir le ticket https://dev.atreal.fr/projets/openmairie/tracker/209
47     // ceci est un hack sale temporaire en attendant résolution du ticket
48     foreach(array('json_payload', 'timestamp_log') as $key) {
49     if (isset($val[$key]) && ! empty($val[$key]) &&
50     isset($_POST[$key]) && ! empty($_POST[$key])) {
51     $submited_payload = $_POST[$key];
52     if (! empty($submited_payload)) {
53     $new_payload = str_replace("'", '"', $val[$key]);
54     if ($new_payload == $submited_payload ||
55     strpos($submited_payload, '"') === false) {
56     $val[$key] = $new_payload;
57     }
58     else {
59     $error_msg = sprintf(
60     __("La convertion des guillemets de la payload JSON '%s' ".
61     "n'est pas idempotente (courante: %s, postée: %s, convertie: %s)"),
62     $key, var_export($val[$key], true), var_export($submited_payload, true),
63     var_export($new_payload, true));
64     $this->correct = false;
65     $this->addToMessage($error_msg);
66     $this->addToLog(__METHOD__."() erreur : $error_msg", DEBUG_MODE);
67     return false;
68     }
69     }
70     }
71     }
72    
73 softime 9482 parent::setvalF($val);
74 mbideau 9813
75     // récupération de l'ID de l'objet existant
76     $id = property_exists($this, 'id') ? $this->id : null;
77     if(isset($val[$this->clePrimaire])) {
78     $id = $val[$this->clePrimaire];
79     } elseif(isset($this->valF[$this->clePrimaire])) {
80     $id = $this->valF[$this->clePrimaire];
81 softime 9482 }
82 mbideau 9813
83     // MODE MODIFIER
84     if (! empty($id)) {
85    
86     // si aucune payload n'est fourni (devrait toujours être le cas)
87     if (! isset($val['json_payload']) || empty($val['json_payload'])) {
88    
89     // récupère l'objet existant
90     $existing = $this->f->findObjectById(get_class($this), $id);
91     if (! empty($existing)) {
92    
93     // récupère la payload de l'objet
94     $val['json_payload'] = $existing->getVal('json_payload');
95     $this->valF['json_payload'] = $existing->getVal('json_payload');
96     $this->f->addToLog(__METHOD__."() récupère la payload de la tâche existante ".
97     "'$id': ".$existing->getVal('json_payload'), EXTRA_VERBOSE_MODE);
98     }
99     }
100     }
101 softime 9482 }
102    
103 gmalvolti 9589 /**
104     *
105     * @return array
106     */
107     function get_var_sql_forminc__champs() {
108     return array(
109     "task",
110     "type",
111     "state",
112     "object_id",
113     "dossier",
114 gmalvolti 9721 "stream",
115 gmalvolti 9604 "json_payload",
116 gmalvolti 9589 "timestamp_log",
117     );
118     }
119    
120 gmalvolti 9585 function setType(&$form, $maj) {
121     parent::setType($form, $maj);
122 mbideau 9813
123 gmalvolti 9585 // Récupération du mode de l'action
124     $crud = $this->get_action_crud($maj);
125    
126 mbideau 9813 // MODE CREER
127     if ($maj == 0 || $crud == 'create') {
128 gmalvolti 9585 $form->setType("state", "select");
129 gmalvolti 9721 $form->setType("stream", "select");
130 mbideau 9813 $form->setType("json_payload", "textarea");
131     }
132     // MDOE MODIFIER
133     if ($maj == 1 || $crud == 'update') {
134     $form->setType("state", "select");
135     $form->setType("stream", "select");
136 gmalvolti 9721 $form->setType("json_payload", "jsonprettyprint");
137 gmalvolti 9585 }
138 mbideau 9813 // MODE CONSULTER
139     if ($maj == 3 || $crud == 'read') {
140 gmalvolti 9589 $form->setType('dossier', 'link');
141 gmalvolti 9604 $form->setType('json_payload', 'jsonprettyprint');
142 gmalvolti 9589 }
143    
144 gmalvolti 9585 }
145    
146     /**
147     *
148     */
149     function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
150     if($maj < 2) {
151    
152 mbideau 9799 $contenu = array();
153     foreach(array('DRAFT', 'NEW', 'PENDING', 'DONE', 'ERROR', 'DEBUG') as $key) {
154     $const_name = 'STATUS_'.$key;
155     $const_value = constant("self::$const_name");
156     $contenu[0][] = $const_value;
157     $contenu[1][] = __($const_value);
158     }
159 gmalvolti 9585
160     $form->setSelect("state", $contenu);
161 gmalvolti 9721
162     $contenu_stream =array();
163     $contenu_stream[0][0]="input";
164     $contenu_stream[1][0]=_('input');
165     $contenu_stream[0][1]="output";
166     $contenu_stream[1][1]=_('output');
167     $form->setSelect("stream", $contenu_stream);
168    
169 gmalvolti 9585 }
170 gmalvolti 9589
171     if ($maj == 3) {
172 gmalvolti 9721 if ($this->getVal('stream') == 'output') {
173     $inst_dossier = $this->f->get_inst__om_dbform(array(
174     "obj" => "dossier",
175     "idx" => $form->val['dossier'],
176     ));
177 mbroquet 9776
178 gmalvolti 9721 if($form->val['type'] == "creation_DA"){
179     $obj_link = 'dossier_autorisation';
180     } else {
181     $obj_link = 'dossier_instruction';
182     }
183    
184     $params = array();
185     $params['obj'] = $obj_link;
186     $params['libelle'] = $inst_dossier->getVal('dossier');
187     $params['title'] = "Consulter le dossier";
188     $params['idx'] = $form->val['dossier'];
189     $form->setSelect("dossier", $params);
190 gmalvolti 9594 }
191 gmalvolti 9589 }
192 gmalvolti 9585 }
193    
194 gmalvolti 9604 /**
195     * SETTER_FORM - setVal (setVal).
196     *
197     * @return void
198     */
199     function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {
200     // parent::setVal($form, $maj, $validation);
201     //
202 gmalvolti 9721 if ($this->getVal('stream') == "output") {
203     $form->setVal('json_payload', $this->view_form_json(true));
204 gmalvolti 9728 } else {
205 mbideau 9798 $form->setVal('json_payload', htmlentities($this->getVal('json_payload')));
206 gmalvolti 9721 }
207 gmalvolti 9604 }
208    
209 gmalvolti 9746 function setLib(&$form, $maj) {
210     parent::setLib($form, $maj);
211 mbideau 9813
212     // Récupération du mode de l'action
213     $crud = $this->get_action_crud($maj);
214    
215     // MODE different de CREER
216     if ($maj != 0 || $crud != 'create') {
217     $form->setLib('json_payload', '');
218     }
219 gmalvolti 9746 }
220    
221 softime 9482 public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
222 gmalvolti 9765 $ret = parent::verifier($val, $dnu1, $dnu2);
223    
224     // une tâche entrante doit avoir un type et une payload non-vide
225     if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
226     if (isset($this->valF['type']) === false) {
227     $this->correct = false;
228     $this->addToMessage(sprintf(
229     __("Le champ %s est obligatoire pour une tâche entrante."),
230     sprintf('<span class="bold">%s</span>', $this->getLibFromField('type'))
231     ));
232     $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
233     }
234     if (isset($this->valF['json_payload']) === false) {
235     $this->correct = false;
236     $this->addToMessage(sprintf(
237     __("Le champ %s est obligatoire pour une tâche entrante."),
238     sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
239     ));
240     $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
241     }
242     }
243    
244 mbideau 9813 // les JSONs doivent être décodables
245     foreach(array('json_payload', 'timestamp_log') as $key) {
246     if (isset($this->valF[$key]) && ! empty($this->valF[$key]) && (
247     is_array(json_decode($this->valF[$key], true)) === false
248     || json_last_error() !== JSON_ERROR_NONE)) {
249     $this->correct = false;
250     $champ_text = sprintf('<span class="bold">%s</span>', $this->getLibFromField($key));
251     $this->addToMessage(sprintf(
252     __("Le champ %s doit être dans un format JSON valide (erreur: %s).".
253     "<p>%s valF:</br><pre>%s</pre></p>".
254     "<p>%s val:</br><pre>%s</pre></p>".
255     "<p>%s POST:</br><pre>%s</pre></p>".
256     "<p>%s submitted POST value:</br><pre>%s</pre></p>"),
257     $champ_text,
258     json_last_error() !== JSON_ERROR_NONE ? json_last_error_msg() : __('invalide'),
259     $champ_text,
260     $this->valF[$key],
261     $champ_text,
262     $val[$key],
263     $champ_text,
264     isset($_POST[$key]) ? $_POST[$key] : '',
265     $champ_text,
266     $this->f->get_submitted_post_value($key)
267     ));
268     $this->addToLog(__METHOD__.'(): erreur JSON: '.$this->msg, DEBUG_MODE);
269     }
270 gmalvolti 9765 }
271    
272     // une tâche entrante doit avoir une payload avec les clés requises
273 mbideau 9813 if ($this->correct && (isset($this->valF['stream']) === false ||
274     $this->valF['stream'] == 'input')) {
275 gmalvolti 9765
276     // décode la payload JSON
277     $json_payload = json_decode($this->valF['json_payload'], true);
278    
279     // défini une liste de chemin de clés requises
280     $paths = array(
281 mbideau 9798 'external_uids/dossier'
282 gmalvolti 9765 );
283    
284     // tâche de type création de DI/DA
285 mbroquet 9776 if (isset($this->valF['type']) !== false && $this->valF['type'] == 'create_DI_for_consultation') {
286 gmalvolti 9765
287     $paths = array_merge($paths, array(
288 mbideau 9798 'dossier/dossier',
289 mbideau 9773 'dossier/dossier_autorisation_type_detaille_code',
290 gmalvolti 9765 'dossier/date_demande',
291     'dossier/depot_electronique',
292     ));
293    
294     // si l'option commune est activée (mode MC)
295     if ($this->f->is_option_dossier_commune_enabled()) {
296     $paths[] = 'dossier/insee';
297     }
298    
299     // présence d'un moyen d'identifier la collectivité/le service
300     if (! isset($json_payload['dossier']['acteur']) &&
301     ! isset($json_payload['dossier']['om_collectivite'])) {
302     $this->correct = false;
303     $this->addToMessage(sprintf(
304     __("L'une des clés %s ou %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
305     sprintf('<span class="bold">%s</span>', 'dossier/acteur'),
306     sprintf('<span class="bold">%s</span>', 'dossier/om_collectivite'),
307     sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
308     ));
309     $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
310     }
311     }
312    
313     // pas d'erreur déjà trouvée
314     if($this->correct) {
315    
316     // pour chaque chemin
317     foreach($paths as $path) {
318    
319     // décompose le chemin
320     $tokens = explode('/', $path);
321     $cur_depth = $json_payload;
322    
323     // descend au et à mesure dans l'arborescence du chemin
324     foreach($tokens as $token) {
325    
326     // en vérifiant que chaque élément du chemin est défini et non-nul
327     if (isset($cur_depth[$token]) === false) {
328    
329     // sinon on produit une erreur
330     $this->correct = false;
331     $this->addToMessage(sprintf(
332     __("La clé %s est obligatoire dans le contenu du champ %s pour une tâche entrante."),
333     sprintf('<span class="bold">%s</span>', $path),
334     sprintf('<span class="bold">%s</span>', $this->getLibFromField('json_payload'))
335     ));
336     $this->addToLog(__METHOD__.'(): erreur: '.$this->msg, DEBUG_MODE);
337     break 2;
338     }
339     $cur_depth = $cur_depth[$token];
340     }
341     }
342     }
343     }
344    
345     return $ret && $this->correct;
346 softime 9482 }
347    
348 softime 9395 protected function task_exists(string $type, string $object_id) {
349     $query = sprintf('
350     SELECT task
351     FROM %1$stask
352     WHERE state != \'%2$s\'
353     AND type = \'%3$s\'
354     AND object_id = \'%4$s\'
355     ',
356     DB_PREFIXE,
357 mbideau 9799 self::STATUS_DONE,
358 softime 9395 $type,
359     $object_id
360     );
361     $res = $this->f->get_one_result_from_db_query($query);
362     if ($res['result'] !== null && $res['result'] !== '') {
363     return $res['result'];
364     }
365     return false;
366     }
367    
368 softime 9293 /**
369 gmalvolti 9765 * TRIGGER - triggerajouter.
370     *
371     * @param string $id
372     * @param null &$dnu1 @deprecated Ne pas utiliser.
373     * @param array $val Tableau des valeurs brutes.
374     * @param null $dnu2 @deprecated Ne pas utiliser.
375     *
376     * @return boolean
377     */
378     function triggerajouter($id, &$dnu1 = null, $val = array(), $dnu2 = null) {
379    
380     // tâche entrante
381     if (isset($this->valF['stream']) === false || $this->valF['stream'] == 'input') {
382    
383     // décode la paylod JSON pour extraire les données métiers à ajouter
384     // en tant que métadonnées de la tâche
385     $json_payload = json_decode($this->valF['json_payload'], true);
386 mbideau 9798
387     // si la tâche possède déjà une clé dossier
388     if (isset($json_payload['dossier']['dossier']) &&
389     ! empty($json_payload['dossier']['dossier'])) {
390     $this->valF["dossier"] = $json_payload['dossier']['dossier'];
391     }
392    
393 mbideau 9813 /**
394     * Puisque le dossier n'a potentiellement pas encore été créé
395     * alors il faut ne faut chercher à récupérer le numéro de dossier openADS
396     * à partir de l'external_uids (en passant par la table de liens)
397 mbideau 9798 // sinon si la tâche possède une clé external_uids/dossier
398     elseif(isset($json_payload['external_uids']['dossier']) &&
399     ! empty($json_payload['external_uids']['dossier'])) {
400    
401     // instancie l'objet lien_id_interne_uid_externe
402     $inst_lien = $this->f->get_inst__om_dbform(array(
403     "obj" => "lien_id_interne_uid_externe",
404     "idx" => ']',
405     ));
406     if(! $dossier = $inst_lien->get_id_dossier_from_external_uid(
407     $json_payload['external_uids']['dossier'])){
408     $error_msg = sprintf(
409     __("Aucune correspondance de dossier pour l'external_uid.dossier '%s'."),
410     $json_payload['external_uids']['dossier']);
411     $this->addToLog(__METHOD__."() : erreur : $error_msg", DEBUG_MODE);
412     $this->addToMessage($error_msg);
413     $this->correct = false;
414     return false;
415     }
416     $this->valF["dossier"] = $dossier;
417 mbideau 9813 }*/
418 gmalvolti 9765 }
419     }
420    
421     /**
422 softime 9293 * TREATMENT - add_task
423     * Ajoute un enregistrement.
424     *
425     * @param array $params Tableau des paramètres
426     * @return boolean
427     */
428     public function add_task($params = array()) {
429     $this->begin_treatment(__METHOD__);
430     $timestamp_log = json_encode(array(
431     'creation_date' => date('Y-m-d H:i:s'),
432     ));
433 gmalvolti 9751
434     // Si la tâche est de type ajout_piece et de stream input alors on ajoute le fichier
435     // et on ajoute l'uid dans le champ json_payload avant l'ajout de la tâche
436 mbroquet 9776 if (isset($params['val']['type'])
437 mbideau 9798 && $params['val']['type'] == "add_piece"
438 gmalvolti 9751 && isset($params['val']['stream'])
439     && $params['val']['stream'] == "input" ) {
440     //
441     $json_payload = json_decode($params['val']['json_payload'], true);
442     $document_numerise = $json_payload['document_numerise'];
443     $file_content = base64_decode($document_numerise["file_content"]);
444     if ($file_content === false){
445     $this->addToMessage(__("Le contenu du fichier lié à la tâche n'a pas pu etre recupere."));
446     return $this->end_treatment(__METHOD__, false);
447     }
448     $metadata = array(
449     "filename" => $document_numerise['nom_fichier'],
450     "size" => strlen($file_content),
451     "mimetype" => $document_numerise['file_content_type'],
452     "date_creation" => $document_numerise['date_creation'],
453     );
454     $uid_fichier = $this->f->storage->create($file_content, $metadata, "from_content");
455     if ($uid_fichier === OP_FAILURE) {
456     $this->addToMessage(__("Erreur lors de la creation du fichier lié à la tâche."));
457     return $this->end_treatment(__METHOD__, false);
458     }
459     $json_payload["document_numerise"]["uid"] = $uid_fichier;
460 mbideau 9798 // Le fichier a été ajouté nous n'avons plus besoin du champ file_content dans la payload
461     unset($json_payload["document_numerise"]["file_content"]);
462 gmalvolti 9751 $params['val']['json_payload'] = json_encode($json_payload, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
463     }
464    
465 softime 9293 // Mise à jour du DI
466     $valF = array(
467     'task' => '',
468     'type' => $params['val']['type'],
469     'timestamp_log' => $timestamp_log,
470 mbideau 9799 'state' => isset($params['val']['state']) === true ? $params['val']['state'] : self::STATUS_NEW,
471 gmalvolti 9765 'object_id' => isset($params['val']['object_id']) ? $params['val']['object_id'] : '',
472     'dossier' => isset($params['val']['dossier']) ? $params['val']['dossier'] : '',
473 gmalvolti 9721 'stream' => isset($params['val']['stream']) === true ? $params['val']['stream'] : 'output',
474     'json_payload' => isset($params['val']['json_payload']) === true ? $params['val']['json_payload'] : '{}',
475 softime 9293 );
476 gmalvolti 9765
477     // tâche sortante
478     if($valF["stream"] == "output"){
479    
480     // TODO expliquer ce code
481 gmalvolti 9746 $task_exists = $this->task_exists($valF['type'], $valF['object_id']);
482     if ($valF['type'] === 'modification_DI' && $task_exists === false) {
483     $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
484 softime 9414 }
485 gmalvolti 9746 if ($task_exists !== false) {
486     $inst_task = $this->f->get_inst__om_dbform(array(
487     "obj" => "task",
488     "idx" => $task_exists,
489     ));
490     $update_state = $inst_task->getVal('state');
491     if (isset($params['update_val']['state']) === true) {
492     $update_state = $params['update_val']['state'];
493     }
494     $update_params = array(
495     'val' => array(
496     'state' => $update_state,
497     ),
498     );
499     return $inst_task->update_task($update_params);
500     }
501 softime 9395 }
502 gmalvolti 9765
503 softime 9293 $add = $this->ajouter($valF);
504 mbideau 9785 $this->addToLog(__METHOD__."(): retour de l'ajout de tâche: ".var_export($add, true), VERBOSE_MODE);
505 softime 9293 if ($add === false) {
506 gmalvolti 9765 $this->addToLog(__METHOD__."(): ".$this->msg, DEBUG_MODE);
507 softime 9293 return $this->end_treatment(__METHOD__, false);
508     }
509     return $this->end_treatment(__METHOD__, true);
510     }
511    
512     /**
513     * TREATMENT - update_task
514     * Met à jour l'enregistrement instancié.
515     *
516     * @param array $params Tableau des paramètres
517     * @return boolean
518     */
519     public function update_task($params = array()) {
520     $this->begin_treatment(__METHOD__);
521     $timestamp_log = $this->get_timestamp_log();
522     if ($timestamp_log === false) {
523 mbideau 9813 $this->addToLog(__METHOD__."(): erreur timestamp log", DEBUG_MODE);
524 softime 9293 return $this->end_treatment(__METHOD__, false);
525     }
526     array_push($timestamp_log, array(
527     'modification_date' => date('Y-m-d H:i:s'),
528     'state' => $params['val']['state'],
529     'prev_state' => $this->getVal('state'),
530     ));
531     $timestamp_log = json_encode($timestamp_log);
532     $valF = array(
533     'task' => $this->getVal($this->clePrimaire),
534     'type' => $this->getVal('type'),
535     'timestamp_log' => $timestamp_log,
536     'state' => $params['val']['state'],
537 softime 9389 'object_id' => $this->getVal('object_id'),
538 gmalvolti 9721 'stream' => $this->getVal('stream'),
539 gmalvolti 9593 'dossier' => $this->getVal('dossier'),
540 gmalvolti 9667 'json_payload' => $this->getVal('json_payload'),
541 softime 9293 );
542     $update = $this->modifier($valF);
543     if ($update === false) {
544     $this->addToLog($this->msg, DEBUG_MODE);
545     return $this->end_treatment(__METHOD__, false);
546     }
547     return $this->end_treatment(__METHOD__, true);
548     }
549    
550     /**
551     * Récupère le journal d'horodatage dans le champ timestamp_log de
552     * l'enregistrement instancié.
553 mbroquet 9776 *
554 softime 9293 * @param array $params Tableau des paramètres
555     * @return array sinon false en cas d'erreur
556     */
557     protected function get_timestamp_log($params = array()) {
558     $val = $this->getVal('timestamp_log');
559     if ($val === '') {
560     $val = json_encode(array());
561     }
562     if($this->isJson($val) === false) {
563     return false;
564     }
565     return json_decode($val, true);
566     }
567    
568     /**
569 softime 9330 * VIEW - view_json_data
570 softime 9293 * Affiche l'enregistrement dans le format JSON.
571     *
572     * @return void
573     */
574 softime 9330 public function view_json_data() {
575 softime 9293 $this->checkAccessibility();
576 softime 9330 $this->f->disableLog();
577 softime 9298 if ($this->getParameter('idx') !== ']'
578     && $this->getParameter('idx') !== '0') {
579     //
580     $this->view_form_json();
581     }
582     else {
583     $this->view_tab_json();
584     }
585     }
586    
587     protected function view_tab_json() {
588 softime 9304 $where = '';
589     if ($this->f->get_submitted_get_value('state') !== null
590     && $this->f->get_submitted_get_value('state') !== '') {
591     //
592     $where = sprintf(' WHERE state = \'%s\' ', $this->f->get_submitted_get_value('state'));
593     }
594 softime 9298 $query = sprintf('
595     SELECT
596     *
597     FROM %1$stask
598 softime 9304 %2$s
599 softime 9481 ORDER BY task ASC
600 softime 9298 ',
601 softime 9304 DB_PREFIXE,
602     $where
603 softime 9298 );
604     $res = $this->f->get_all_results_from_db_query($query, true);
605     if ($res['code'] === 'KO') {
606     return false;
607     }
608     $list_tasks = array();
609     foreach ($res['result'] as $task) {
610 softime 9404 $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
611 softime 9490 $task['dossier'] = $task['object_id'];
612     if ($this->get_lien_objet_by_type($task['type']) === 'document_numerise') {
613     $val_dn = $this->get_document_numerise_data($task['object_id']);
614     $task['dossier'] = $val_dn['dossier'];
615     }
616 softime 9298 $list_tasks[$task['task']] = $task;
617     }
618     printf(json_encode($list_tasks));
619     }
620    
621 softime 9395 protected function get_dossier_data(string $dossier) {
622     $val_di = array();
623     $inst_di = $this->f->get_inst__om_dbform(array(
624     "obj" => "dossier",
625     "idx" => $dossier,
626     ));
627 softime 9404 $val_di = $inst_di->get_json_data();
628 softime 9396 if ($val_di['dossier_instruction_type_code'] === 'T') {
629     $val_di['date_decision_transfert'] = $val_di['date_decision'];
630     }
631 softime 9395 unset($val_di['initial_dt']);
632     unset($val_di['log_instructions']);
633     return $val_di;
634     }
635    
636     protected function get_dossier_autorisation_data(string $da) {
637     $val_da = array();
638     $inst_da = $this->f->get_inst__om_dbform(array(
639     "obj" => "dossier_autorisation",
640     "idx" => $da,
641     ));
642 softime 9404 $val_da = $inst_da->get_json_data();
643 softime 9395 return $val_da;
644     }
645    
646     protected function get_donnees_techniques_data(string $fk_idx, string $fk_field) {
647     $val_dt = array();
648     $inst_dt = $this->f->get_inst__by_other_idx(array(
649     "obj" => "donnees_techniques",
650     "fk_field" => $fk_field,
651     "fk_idx" => $fk_idx,
652     ));
653     $val_dt = array(
654     'donnees_techniques' => $inst_dt->getVal($inst_dt->clePrimaire),
655     'cerfa' => $inst_dt->getVal('cerfa'),
656     );
657     $val_dt = array_merge($val_dt, $inst_dt->get_donnees_techniques_applicables());
658 softime 9396 if (isset($val_dt['am_exist_date']) === true) {
659     $val_dt['am_exist_date_num'] = '';
660     if (is_numeric($val_dt['am_exist_date']) === true) {
661     $val_dt['am_exist_date_num'] = $val_dt['am_exist_date'];
662     }
663     }
664 softime 9403 // Correspond à la nomenclature de Plat'AU STATUT_INFO
665     $val_dt['tax_statut_info'] = 'Déclaré';
666 softime 9407 //
667     if ($inst_dt->is_tab_surf_ssdest_enabled() === true) {
668     $fields_tab_surf_dest = $inst_dt->get_fields_tab_surf_dest();
669     foreach ($fields_tab_surf_dest as $field) {
670     if (isset($val_dt[$field]) === true) {
671     unset($val_dt[$field]);
672     }
673     }
674     } else {
675     $fields_tab_surf_ssdest = $inst_dt->get_fields_tab_surf_ssdest();
676     foreach ($fields_tab_surf_ssdest as $field) {
677     if (isset($val_dt[$field]) === true) {
678     unset($val_dt[$field]);
679     }
680     }
681     }
682 softime 9409 // Correspond à la nouvelle ligne CERFA v7 dans le DENSI imposition 1.2.3
683 softime 9408 if (isset($val_dt['tax_su_non_habit_surf2']) === true
684 softime 9412 && isset($val_dt['tax_su_non_habit_surf3']) === true
685     && (($val_dt['tax_su_non_habit_surf2'] !== null
686     && $val_dt['tax_su_non_habit_surf2'] !== '')
687     || ($val_dt['tax_su_non_habit_surf3'] !== null
688     && $val_dt['tax_su_non_habit_surf3'] !== ''))) {
689 softime 9408 //
690     $val_dt['tax_su_non_habit_surf8'] = intval($val_dt['tax_su_non_habit_surf2']) + intval($val_dt['tax_su_non_habit_surf3']);
691     }
692     if (isset($val_dt['tax_su_non_habit_surf_stat2']) === true
693 softime 9412 && isset($val_dt['tax_su_non_habit_surf_stat3']) === true
694     && (($val_dt['tax_su_non_habit_surf_stat2'] !== null
695     && $val_dt['tax_su_non_habit_surf_stat2'] !== '')
696     || ($val_dt['tax_su_non_habit_surf_stat3'] !== null
697     && $val_dt['tax_su_non_habit_surf_stat3'] !== ''))) {
698 softime 9408 //
699     $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']);
700     }
701 softime 9409 // Cas particulier d'un projet réduit à l'extension d'une habitation existante
702     $particular_case = false;
703     $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();
704     foreach ($fields_tab_crea_loc_hab as $field) {
705 softime 9438 if (isset($val_dt[$field]) === false
706     || (isset($val_dt[$field]) === true
707     && ($val_dt[$field] === null
708     || $val_dt[$field] === ''))) {
709 softime 9409 //
710     $particular_case = true;
711     }
712     }
713     if ($particular_case === true) {
714     if (isset($val_dt['tax_ext_pret']) === true
715     && $val_dt['tax_ext_pret'] === 'f') {
716     //
717     $val_dt['tax_su_princ_surf1'] = $val_dt['tax_surf_tot_cstr'];
718     $val_dt['tax_su_princ_surf_stat1'] = $val_dt['tax_surf_loc_stat'];
719     }
720     if (isset($val_dt['tax_ext_pret']) === true
721     && $val_dt['tax_ext_pret'] === 't') {
722     //
723     if (isset($val_dt['tax_ext_desc']) === true) {
724     if (preg_match('/[pP].*[lL].*[aA].*[iI]/', $val_dt['tax_ext_desc']) === 1
725     || preg_match('/[lL].*[lL].*[tT].*[sS]/', $val_dt['tax_ext_desc']) === 1) {
726     //
727     $val_dt['tax_su_princ_surf2'] = $val_dt['tax_surf_tot_cstr'];
728     $val_dt['tax_su_princ_surf_stat2'] = $val_dt['tax_surf_loc_stat'];
729     }
730     // if (preg_match('/[pP].*[tT].*[zZ]/', $val_dt['tax_ext_desc']) === 1) {
731     // $val_dt['tax_su_princ_surf4'] = $val_dt['tax_surf_tot_cstr'];
732     // $val_dt['tax_su_princ_surf_stat4'] = $val_dt['tax_surf_loc_stat'];
733     // }
734     // if (preg_match('/[pP].*[lL].*[uU].*[sS]/', $val_dt['tax_ext_desc']) === 1
735     // || preg_match('/[lL].*[eE].*[sS]/', $val_dt['tax_ext_desc']) === 1
736     // || preg_match('/[pP].*[sS].*[lL].*[aA]/', $val_dt['tax_ext_desc']) === 1
737     // || preg_match('/[pP].*[lL].*[sS]/', $val_dt['tax_ext_desc']) === 1
738     // || preg_match('/[lL].*[lL].*[sS]/', $val_dt['tax_ext_desc']) === 1) {
739     // //
740     // $val_dt['tax_su_princ_surf3'] = $val_dt['tax_surf_tot_cstr'];
741     // $val_dt['tax_su_princ_surf_stat3'] = $val_dt['tax_surf_loc_stat'];
742     // }
743     }
744     }
745     }
746     // Cas particulier de la surface taxable démolie
747     if (isset($val_dt['tax_surf_tot_demo']) === true
748     && isset($val_dt['tax_surf_tax_demo']) === true
749     && ($val_dt['tax_surf_tot_demo'] === null
750     || $val_dt['tax_surf_tot_demo'] === '')) {
751     //
752     $val_dt['tax_surf_tot_demo'] = $val_dt['tax_surf_tax_demo'];
753     }
754 softime 9395 return $val_dt;
755     }
756    
757     protected function get_external_uid($fk_idx, string $fk_idx_2) {
758 softime 9404 $inst_external_uid = $this->f->get_inst__by_other_idx(array(
759 softime 9395 "obj" => "lien_id_interne_uid_externe",
760     "fk_field" => 'object_id',
761     "fk_idx" => $fk_idx,
762     "fk_field_2" => 'object',
763     "fk_idx_2" => $fk_idx_2,
764     ));
765 softime 9404 return $inst_external_uid->getVal('external_uid');
766 softime 9395 }
767    
768     protected function get_demandeurs_data(string $dossier) {
769     $val_demandeur = array();
770     $inst_di = $this->f->get_inst__om_dbform(array(
771     "obj" => "dossier",
772     "idx" => $dossier,
773     ));
774     $list_demandeurs = $inst_di->get_demandeurs();
775     foreach ($list_demandeurs as $demandeur) {
776     $inst_demandeur = $this->f->get_inst__om_dbform(array(
777     "obj" => "demandeur",
778     "idx" => $demandeur['demandeur'],
779 softime 9334 ));
780 softime 9404 $val_demandeur[$demandeur['demandeur']] = $inst_demandeur->get_json_data();
781 softime 9395 $val_demandeur[$demandeur['demandeur']]['petitionnaire_principal'] = $demandeur['petitionnaire_principal'];
782 softime 9334 }
783 softime 9395 return $val_demandeur;
784     }
785    
786     protected function get_architecte_data($architecte = null) {
787 softime 9408 $val_architecte = null;
788 softime 9395 if ($architecte !== null
789     && $architecte !== '') {
790 softime 9334 //
791 softime 9395 $inst_architecte = $this->f->get_inst__om_dbform(array(
792     "obj" => "architecte",
793     "idx" => $architecte,
794 softime 9334 ));
795 softime 9404 $val_architecte = $inst_architecte->get_json_data();
796 softime 9334 }
797 softime 9395 return $val_architecte;
798     }
799 softime 9334
800 softime 9457 protected function get_instruction_data(string $dossier, $type = 'decision') {
801 softime 9414 $val_instruction = null;
802 softime 9416 $instruction_with_doc = null;
803 softime 9395 $inst_di = $this->f->get_inst__om_dbform(array(
804     "obj" => "dossier",
805     "idx" => $dossier,
806     ));
807 softime 9457 $idx = null;
808     if ($type === 'decision') {
809     $idx = $inst_di->get_last_instruction_decision();
810     }
811     if ($type === 'incompletude') {
812     $idx = $inst_di->get_last_instruction_incompletude();
813     }
814 softime 9395 $inst_instruction = $this->f->get_inst__om_dbform(array(
815     "obj" => "instruction",
816 softime 9457 "idx" => $idx,
817 softime 9395 ));
818     if (count($inst_instruction->val) > 0) {
819 softime 9416 $val_instruction = array();
820     $instruction_data = $inst_instruction->get_json_data();
821     $val_instruction = $this->sort_instruction_data($instruction_data, $val_instruction);
822     if ($instruction_data['om_fichier_instruction'] !== null
823     && $instruction_data['om_fichier_instruction'] !== '') {
824     //
825     $instruction_with_doc = $inst_instruction->getVal($inst_instruction->clePrimaire);
826     }
827 softime 9414 $inst_ev = $this->f->get_inst__om_dbform(array(
828     "obj" => "evenement",
829     "idx" => $inst_instruction->getVal('evenement'),
830     ));
831     if ($inst_ev->getVal('retour') === 't') {
832     $instructions_related = $inst_instruction->get_related_instructions();
833     foreach ($instructions_related as $instruction) {
834 softime 9416 if ($instruction !== null && $instruction !== '') {
835     $inst_related_instruction = $this->f->get_inst__om_dbform(array(
836     "obj" => "instruction",
837     "idx" => $instruction,
838     ));
839     $instruction_data = $inst_related_instruction->get_json_data();
840     $val_instruction = $this->sort_instruction_data($instruction_data, $val_instruction);
841     if ($instruction_data['om_fichier_instruction'] !== null
842     && $instruction_data['om_fichier_instruction'] !== '') {
843     //
844     $instruction_with_doc = $inst_related_instruction->getVal($inst_related_instruction->clePrimaire);
845     }
846     }
847 softime 9414 }
848     }
849 softime 9416 if ($instruction_with_doc !== null) {
850     //
851 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);
852 softime 9416 }
853 softime 9384 }
854 softime 9395 return $val_instruction;
855     }
856 softime 9334
857 softime 9416 protected function sort_instruction_data(array $values, array $res) {
858     $fields = array(
859     "date_envoi_signature",
860     "date_retour_signature",
861     "date_envoi_rar",
862     "date_retour_rar",
863     "date_envoi_controle_legalite",
864     "date_retour_controle_legalite",
865     "signataire_arrete",
866     "om_fichier_instruction",
867     "tacite",
868 softime 9623 "lettretype",
869 softime 9416 );
870     foreach ($values as $key => $value) {
871     if (in_array($key, $fields) === true) {
872     if (array_key_exists($key, $res) === false
873     && $value !== null
874     && $value !== '') {
875     //
876     $res[$key] = $value;
877     } elseif ($key === 'tacite'
878     && $value === 't') {
879     //
880     $res[$key] = $value;
881     }
882     }
883     }
884     return $res;
885     }
886    
887 softime 9395 protected function get_document_numerise_data(string $dn) {
888     $val_dn = array();
889     $inst_dn = $this->f->get_inst__om_dbform(array(
890     "obj" => "document_numerise",
891     "idx" => $dn,
892     ));
893 softime 9404 $val_dn = $inst_dn->get_json_data();
894 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'));
895 softime 9403 // Correspond à la nomenclature Plat'AU NATURE_PIECE
896 softime 9457 $val_dn['nature'] = $val_dn['document_numerise_nature_libelle'];
897 softime 9395 return $val_dn;
898     }
899    
900 softime 9396 protected function get_parcelles_data(string $object, string $idx) {
901     $val_dp = array();
902     $inst_di = $this->f->get_inst__om_dbform(array(
903     "obj" => $object,
904     "idx" => $idx,
905     ));
906     $list_parcelles = $inst_di->get_parcelles();
907     $no_ordre = 1;
908     foreach ($list_parcelles as $parcelle) {
909     $val_dp[$parcelle[$object.'_parcelle']] = array(
910     $object.'_parcelle' => $parcelle[$object.'_parcelle'],
911     'libelle' => $parcelle['libelle'],
912     'no_ordre' => $no_ordre,
913     );
914     $no_ordre++;
915     }
916     return $val_dp;
917     }
918    
919 gmalvolti 9604 protected function view_form_json($in_field = false) {
920 softime 9395 //
921 softime 9402 if ($this->f->get_submitted_post_value('valid') === null) {
922     // Liste des valeurs à afficher
923     $val = array();
924 softime 9395 //
925 softime 9402 $val_task = array_combine($this->champs, $this->val);
926 softime 9405 foreach ($val_task as $key => $value) {
927     $val_task[$key] = strip_tags($value);
928     }
929 softime 9404 $val_task['timestamp_log'] = json_decode($val_task['timestamp_log'], true);
930 softime 9402 $val['task'] = $val_task;
931     //
932     if ($this->getVal('type') === 'creation_DA') {
933     $val['dossier_autorisation'] = $this->get_dossier_autorisation_data($this->getVal('object_id'));
934     $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_autorisation');
935     $val['dossier_autorisation_parcelle'] = $this->get_parcelles_data('dossier_autorisation', $val['dossier_autorisation']['dossier_autorisation']);
936     $val_external_uid = array();
937     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier_autorisation']['dossier_autorisation'], 'dossier_autorisation');
938 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
939 softime 9402 }
940     //
941     if ($this->getVal('type') === 'creation_DI'
942 softime 9417 || $this->getVal('type') === 'modification_DI'
943     || $this->getVal('type') === 'depot_DI') {
944 softime 9402 //
945     $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
946     $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_instruction');
947     $val['demandeur'] = $this->get_demandeurs_data($val['dossier']['dossier']);
948 softime 9403 $architecte = isset($val['donnees_techniques']['architecte']) === true ? $val['donnees_techniques']['architecte'] : null;
949     $val['architecte'] = $this->get_architecte_data($architecte);
950 softime 9402 $val['dossier_parcelle'] = $this->get_parcelles_data('dossier', $val['dossier']['dossier']);
951     $val_external_uid = array();
952     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
953     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
954 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
955 softime 9402 }
956     //
957     if ($this->getVal('type') === 'qualification_DI') {
958     $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
959     $val_external_uid = array();
960     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
961     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
962 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
963 softime 9402 }
964     //
965     if ($this->getVal('type') === 'ajout_piece') {
966     $val['document_numerise'] = $this->get_document_numerise_data($this->getVal('object_id'));
967     $val['dossier'] = $this->get_dossier_data($val['document_numerise']['dossier']);
968     $val_external_uid = array();
969     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
970     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
971     $val_external_uid['document_numerise'] = $this->get_external_uid($val['document_numerise']['document_numerise'], 'document_numerise');
972 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
973 softime 9402 }
974 softime 9414 //
975     if ($this->getVal('type') === 'decision_DI') {
976     $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
977     $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier']);
978     $val_external_uid = array();
979     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
980     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
981 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
982 softime 9414 }
983 softime 9457 //
984     if ($this->getVal('type') === 'incompletude_DI') {
985     $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
986     $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'incompletude');
987     $val_external_uid = array();
988     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
989     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
990 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
991 softime 9457 }
992 softime 9479 //
993 softime 9458 if ($this->getVal('type') === 'completude_DI') {
994     $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
995     $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'completude');
996     $val_external_uid = array();
997     $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
998     $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
999 gmalvolti 9751 $val['external_uids'] = $val_external_uid;
1000 softime 9458 }
1001 softime 9402
1002 gmalvolti 9604 if ($in_field === true) {
1003 gmalvolti 9746 return json_encode($val, JSON_PRETTY_PRINT | JSON_UNESCAPED_SLASHES);
1004 gmalvolti 9604 } else {
1005     // Liste des valeurs affichée en JSON
1006     printf(json_encode($val, JSON_UNESCAPED_SLASHES));
1007     }
1008 softime 9395 }
1009 softime 9293 }
1010 softime 9385
1011 gmalvolti 9765 function post_update_task() {
1012 gmalvolti 9721 // Mise à jour des valeurs
1013     //
1014     $params = array(
1015     'val' => array(
1016     'state' => $this->f->get_submitted_post_value('state')
1017     ),
1018     );
1019     $update = $this->update_task($params);
1020     $message_class = "valid";
1021     $message = $this->msg;
1022     if ($update === false) {
1023     $this->addToLog($this->msg, DEBUG_MODE);
1024     $message_class = "error";
1025     $message = sprintf(
1026     '%s %s',
1027     __('Impossible de mettre à jour la tâche.'),
1028     __('Veuillez contacter votre administrateur.')
1029     );
1030     }
1031     $this->f->displayMessage($message_class, $message);
1032     //
1033     $inst_lien = $this->f->get_inst__om_dbform(array(
1034     "obj" => "lien_id_interne_uid_externe",
1035     "idx" => ']',
1036     ));
1037     $valF = array(
1038     'lien_id_interne_uid_externe' => '',
1039     'object' => $this->get_lien_objet_by_type($this->getVal('type')),
1040     'object_id' => $this->getVal('object_id'),
1041     'external_uid' => $this->f->get_submitted_post_value('external_uid'),
1042     );
1043     $add = $inst_lien->ajouter($valF);
1044     $message_class = "valid";
1045     $message = $inst_lien->msg;
1046     if ($add === false) {
1047     $this->addToLog($inst_lien->msg, DEBUG_MODE);
1048     $message_class = "error";
1049     $message = sprintf(
1050     '%s %s',
1051     __("Impossible de mettre à jour le lien entre l'identifiant interne et l'identifiant de l'application externe."),
1052     __('Veuillez contacter votre administrateur.')
1053     );
1054     }
1055     $this->f->displayMessage($message_class, $message);
1056     }
1057    
1058 gmalvolti 9765 function post_add_task() {
1059 mbroquet 9776 // TODO Tester de remplacer la ligne de json_payload par un $_POST
1060 gmalvolti 9765 $result = $this->add_task(array(
1061     'val' => array(
1062     'stream' => 'input',
1063     'json_payload' => html_entity_decode($this->f->get_submitted_post_value('json_payload')),
1064     'type' => $this->f->get_submitted_post_value('type'),
1065     )
1066     ));
1067 gmalvolti 9751 $message = $this->msg;
1068     $message_class = "valid";
1069     if ($result === false){
1070     $this->addToLog($this->msg, DEBUG_MODE);
1071     $message_class = "error";
1072     $message = sprintf(
1073     '%s %s',
1074     __('Impossible d\'ajouter la tâche.'),
1075     __('Veuillez contacter votre administrateur.')
1076 gmalvolti 9746 );
1077     }
1078 gmalvolti 9751 $this->f->displayMessage($message_class, $message);
1079 gmalvolti 9721 }
1080    
1081 gmalvolti 9765 function get_lien_objet_by_type($type) {
1082 softime 9385 //
1083     $objet = '';
1084     if ($type === 'creation_DA') {
1085     $objet = 'dossier_autorisation';
1086     }
1087 softime 9414 if ($type === 'creation_DI'
1088 mbroquet 9776 || $type === 'create_DI_for_consultation'
1089 softime 9417 || $type === 'depot_DI'
1090 softime 9414 || $type === 'modification_DI'
1091     || $type === 'qualification_DI'
1092 softime 9457 || $type === 'decision_DI'
1093 softime 9458 || $type === 'incompletude_DI'
1094     || $type === 'completude_DI') {
1095 softime 9414 //
1096 softime 9385 $objet = 'dossier';
1097     }
1098     if ($type === 'ajout_piece') {
1099     $objet = 'document_numerise';
1100     }
1101 mbideau 9798 // La tâche entrante se nomme add_piece
1102     if ($type === 'add_piece') {
1103     $objet = 'piece';
1104     }
1105 softime 9385 return $objet;
1106     }
1107 gmalvolti 9604
1108     function setLayout(&$form, $maj) {
1109 mbideau 9813
1110     // Récupération du mode de l'action
1111     $crud = $this->get_action_crud($maj);
1112    
1113     // MODE different de CREER
1114     if ($maj != 0 || $crud != 'create') {
1115     $form->setBloc('json_payload', 'D', '', 'col_6');
1116     $form->setFieldset('json_payload', 'DF', __("json_payload"), "collapsible, startClosed");
1117     $form->setBloc('json_payload', 'F');
1118     }
1119 gmalvolti 9604 $form->setBloc('timestamp_log', 'DF', '', 'col_9');
1120     }
1121    
1122 softime 9293 }

Properties

Name Value
svn:executable *

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26