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

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

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 9414 by softime, Mon Jun 22 16:59:22 2020 UTC revision 9604 by gmalvolti, Fri Oct 16 15:45:09 2020 UTC
# Line 21  class task extends task_gen { Line 21  class task extends task_gen {
21          );          );
22      }      }
23    
24        public function setvalF($val = array()) {
25            parent::setvalF($val);
26            //
27            if (array_key_exists('timestamp_log', $val) === true) {
28                $this->valF['timestamp_log'] = str_replace("'", '"', $val['timestamp_log']);
29            }
30        }
31    
32        /**
33         *
34         * @return array
35         */
36        function get_var_sql_forminc__champs() {
37            return array(
38                "task",
39                "type",
40                "state",
41                "object_id",
42                "dossier",
43                "json_payload",
44                "timestamp_log",
45            );
46        }
47    
48        function setType(&$form, $maj) {
49            parent::setType($form, $maj);
50            // Récupération du mode de l'action
51            $crud = $this->get_action_crud($maj);
52    
53            if ($maj < 2) {
54                $form->setType("state", "select");
55                $form->setType("json_payload", "textarea");
56            }
57            if ($maj == 3){
58                $form->setType('dossier', 'link');
59                $form->setType('json_payload', 'jsonprettyprint');
60            }
61    
62        }
63    
64        /**
65         *
66         */
67        function setSelect(&$form, $maj, &$dnu1 = null, $dnu2 = null) {
68            if($maj < 2) {
69                $contenu=array();
70    
71                $contenu[0][0]="draft";
72                $contenu[1][0]=_('draft');
73                $contenu[0][1]="new";
74                $contenu[1][1]=_('new');
75                $contenu[0][2]="pending";
76                $contenu[1][2]=_('pending');
77                $contenu[0][3]="done";
78                $contenu[1][3]=_('done');
79                $contenu[0][4]="archived";
80                $contenu[1][4]=_('archived');
81                $contenu[0][5]="error";
82                $contenu[1][5]=_('error');
83                $contenu[0][6]="debug";
84                $contenu[1][6]=_('debug');
85    
86                $form->setSelect("state", $contenu);
87            }
88    
89            if ($maj == 3) {
90                $inst_dossier = $this->f->get_inst__om_dbform(array(
91                    "obj" => "dossier",
92                    "idx" => $form->val['dossier'],
93                ));
94                
95                if($form->val['type'] == "creation_DA"){
96                    $obj_link = 'dossier_autorisation';
97                } else {
98                    $obj_link = 'dossier_instruction';
99                }
100    
101                $params = array();
102                $params['obj'] = $obj_link;
103                $params['libelle'] = $inst_dossier->getVal('dossier');
104                $params['title'] = "Consulter le dossier";
105                $params['idx'] = $form->val['dossier'];
106                $form->setSelect("dossier", $params);
107            }
108        }
109    
110        /**
111         * SETTER_FORM - setVal (setVal).
112         *
113         * @return void
114         */
115        function setVal(&$form, $maj, $validation, &$dnu1 = null, $dnu2 = null) {
116            // parent::setVal($form, $maj, $validation);
117            //
118            $form->setVal('json_payload', $this->view_form_json(true));
119        }
120    
121        public function verifier($val = array(), &$dnu1 = null, $dnu2 = null) {
122            parent::verifier($val, $dnu1, $dnu2);
123            //
124            if (array_key_exists('timestamp_log', $this->valF) === true
125                && is_array(json_decode($this->valF['timestamp_log'], true)) === false) {
126                //
127                $this->correct = false;
128                $this->addToMessage(sprintf(
129                    __("Le champ %s doit être dans un format JSON valide."),
130                    sprintf('<span class="bold">%s</span>', $this->getLibFromField('timestamp_log'))
131                ));
132            }
133        }
134    
135      protected function task_exists(string $type, string $object_id) {      protected function task_exists(string $type, string $object_id) {
136          $query = sprintf('          $query = sprintf('
137              SELECT task              SELECT task
# Line 60  class task extends task_gen { Line 171  class task extends task_gen {
171              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
172              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : 'new',              'state' => isset($params['val']['state']) === true ? $params['val']['state'] : 'new',
173              'object_id' => $params['val']['object_id'],              'object_id' => $params['val']['object_id'],
174                'dossier' => $params['val']['dossier'],
175          );          );
176          $task_exists = $this->task_exists($valF['type'], $valF['object_id']);          $task_exists = $this->task_exists($valF['type'], $valF['object_id']);
177            if ($valF['type'] === 'modification_DI' && $task_exists === false) {
178                $task_exists = $this->task_exists('creation_DI', $valF['object_id']);
179            }
180          if ($task_exists !== false) {          if ($task_exists !== false) {
181              $inst_task = $this->f->get_inst__om_dbform(array(              $inst_task = $this->f->get_inst__om_dbform(array(
182                  "obj" => "task",                  "obj" => "task",
# Line 112  class task extends task_gen { Line 227  class task extends task_gen {
227              'timestamp_log' => $timestamp_log,              'timestamp_log' => $timestamp_log,
228              'state' => $params['val']['state'],              'state' => $params['val']['state'],
229              'object_id' => $this->getVal('object_id'),              'object_id' => $this->getVal('object_id'),
230                'dossier' => $this->getVal('dossier'),
231          );          );
232          $update = $this->modifier($valF);          $update = $this->modifier($valF);
233          if ($update === false) {          if ($update === false) {
# Line 170  class task extends task_gen { Line 286  class task extends task_gen {
286                  *                  *
287              FROM %1$stask              FROM %1$stask
288              %2$s              %2$s
289                ORDER BY task ASC
290              ',              ',
291              DB_PREFIXE,              DB_PREFIXE,
292              $where              $where
# Line 181  class task extends task_gen { Line 298  class task extends task_gen {
298          $list_tasks = array();          $list_tasks = array();
299          foreach ($res['result'] as $task) {          foreach ($res['result'] as $task) {
300              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);              $task['timestamp_log'] = json_decode($task['timestamp_log'], true);
301                $task['dossier'] = $task['object_id'];
302                if ($this->get_lien_objet_by_type($task['type']) === 'document_numerise') {
303                    $val_dn = $this->get_document_numerise_data($task['object_id']);
304                    $task['dossier'] = $val_dn['dossier'];
305                }
306              $list_tasks[$task['task']] = $task;              $list_tasks[$task['task']] = $task;
307          }          }
308          printf(json_encode($list_tasks));          printf(json_encode($list_tasks));
# Line 270  class task extends task_gen { Line 392  class task extends task_gen {
392          $particular_case = false;          $particular_case = false;
393          $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();          $fields_tab_crea_loc_hab = $inst_dt->get_fields_tab_crea_loc_hab();
394          foreach ($fields_tab_crea_loc_hab as $field) {          foreach ($fields_tab_crea_loc_hab as $field) {
395              if (isset($field) === false              if (isset($val_dt[$field]) === false
396                  || (isset($field) === true                  || (isset($val_dt[$field]) === true
397                      && $field !== null                      && ($val_dt[$field] === null
398                      && $field !== '')) {                          || $val_dt[$field] === ''))) {
399                  //                  //
400                  $particular_case = true;                  $particular_case = true;
401              }              }
# Line 347  class task extends task_gen { Line 469  class task extends task_gen {
469              ));              ));
470              $val_demandeur[$demandeur['demandeur']] = $inst_demandeur->get_json_data();              $val_demandeur[$demandeur['demandeur']] = $inst_demandeur->get_json_data();
471              $val_demandeur[$demandeur['demandeur']]['petitionnaire_principal'] = $demandeur['petitionnaire_principal'];              $val_demandeur[$demandeur['demandeur']]['petitionnaire_principal'] = $demandeur['petitionnaire_principal'];
             // Valeur par défaut pour expériementation sequence 1  
             $val_demandeur[$demandeur['demandeur']]['commerciale'] = 'f';  
472          }          }
473          return $val_demandeur;          return $val_demandeur;
474      }      }
# Line 367  class task extends task_gen { Line 487  class task extends task_gen {
487          return $val_architecte;          return $val_architecte;
488      }      }
489    
490      protected function get_instruction_data(string $dossier) {      protected function get_instruction_data(string $dossier, $type = 'decision') {
491          $val_instruction = null;          $val_instruction = null;
492            $instruction_with_doc = null;
493          $inst_di = $this->f->get_inst__om_dbform(array(          $inst_di = $this->f->get_inst__om_dbform(array(
494              "obj" => "dossier",              "obj" => "dossier",
495              "idx" => $dossier,              "idx" => $dossier,
496          ));          ));
497            $idx = null;
498            if ($type === 'decision') {
499                $idx = $inst_di->get_last_instruction_decision();
500            }
501            if ($type === 'incompletude') {
502                $idx = $inst_di->get_last_instruction_incompletude();
503            }
504          $inst_instruction = $this->f->get_inst__om_dbform(array(          $inst_instruction = $this->f->get_inst__om_dbform(array(
505              "obj" => "instruction",              "obj" => "instruction",
506              "idx" => $inst_di->get_last_instruction_decision(),              "idx" => $idx,
507          ));          ));
508          if (count($inst_instruction->val) > 0) {          if (count($inst_instruction->val) > 0) {
509              $val_instruction[$inst_instruction->getVal($inst_instruction->clePrimaire)] = $inst_instruction->get_json_data();              $val_instruction = array();
510                $instruction_data = $inst_instruction->get_json_data();
511                $val_instruction = $this->sort_instruction_data($instruction_data, $val_instruction);
512                if ($instruction_data['om_fichier_instruction'] !== null
513                    && $instruction_data['om_fichier_instruction'] !== '') {
514                    //
515                    $instruction_with_doc = $inst_instruction->getVal($inst_instruction->clePrimaire);
516                }
517              $inst_ev = $this->f->get_inst__om_dbform(array(              $inst_ev = $this->f->get_inst__om_dbform(array(
518                  "obj" => "evenement",                  "obj" => "evenement",
519                  "idx" => $inst_instruction->getVal('evenement'),                  "idx" => $inst_instruction->getVal('evenement'),
# Line 386  class task extends task_gen { Line 521  class task extends task_gen {
521              if ($inst_ev->getVal('retour') === 't') {              if ($inst_ev->getVal('retour') === 't') {
522                  $instructions_related = $inst_instruction->get_related_instructions();                  $instructions_related = $inst_instruction->get_related_instructions();
523                  foreach ($instructions_related as $instruction) {                  foreach ($instructions_related as $instruction) {
524                      $inst_related_instruction = $this->f->get_inst__om_dbform(array(                      if ($instruction !== null && $instruction !== '') {
525                          "obj" => "instruction",                          $inst_related_instruction = $this->f->get_inst__om_dbform(array(
526                          "idx" => $instruction,                              "obj" => "instruction",
527                      ));                              "idx" => $instruction,
528                      $val_instruction[$instruction] = $inst_related_instruction->get_json_data();                          ));
529                            $instruction_data = $inst_related_instruction->get_json_data();
530                            $val_instruction = $this->sort_instruction_data($instruction_data, $val_instruction);
531                            if ($instruction_data['om_fichier_instruction'] !== null
532                                && $instruction_data['om_fichier_instruction'] !== '') {
533                                //
534                                $instruction_with_doc = $inst_related_instruction->getVal($inst_related_instruction->clePrimaire);
535                            }
536                        }
537                  }                  }
538              }              }
539                if ($instruction_with_doc !== null) {
540                    //
541                    $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);
542                }
543          }          }
544          return $val_instruction;          return $val_instruction;
545      }      }
546    
547        protected function sort_instruction_data(array $values, array $res) {
548            $fields = array(
549                "date_envoi_signature",
550                "date_retour_signature",
551                "date_envoi_rar",
552                "date_retour_rar",
553                "date_envoi_controle_legalite",
554                "date_retour_controle_legalite",
555                "signataire_arrete",
556                "om_fichier_instruction",
557                "tacite",
558            );
559            foreach ($values as $key => $value) {
560                if (in_array($key, $fields) === true) {
561                    if (array_key_exists($key, $res) === false
562                        && $value !== null
563                        && $value !== '') {
564                        //
565                        $res[$key] = $value;
566                    } elseif ($key === 'tacite'
567                        && $value === 't') {
568                        //
569                        $res[$key] = $value;
570                    }
571                }
572            }
573            return $res;
574        }
575    
576      protected function get_document_numerise_data(string $dn) {      protected function get_document_numerise_data(string $dn) {
577          $val_dn = array();          $val_dn = array();
578          $inst_dn = $this->f->get_inst__om_dbform(array(          $inst_dn = $this->f->get_inst__om_dbform(array(
# Line 404  class task extends task_gen { Line 580  class task extends task_gen {
580              "idx" => $dn,              "idx" => $dn,
581          ));          ));
582          $val_dn = $inst_dn->get_json_data();          $val_dn = $inst_dn->get_json_data();
583          $val_dn['path'] = sprintf('%s/%s&snippet=%s&obj=%s&champ=%s&id=%s', $_SERVER['HTTP_HOST'], 'openads/app/index.php?module=form', 'file', 'document_numerise', 'uid', $this->getVal('object_id'));          $val_dn['path'] = sprintf('%s&snippet=%s&obj=%s&champ=%s&id=%s', 'app/index.php?module=form', 'file', 'document_numerise', 'uid', $this->getVal('object_id'));
584          // Correspond à la nomenclature Plat'AU NATURE_PIECE          // Correspond à la nomenclature Plat'AU NATURE_PIECE
585          $val_dn['nature'] = 'Initiale';          $val_dn['nature'] = $val_dn['document_numerise_nature_libelle'];
586          return $val_dn;          return $val_dn;
587      }      }
588    
# Line 429  class task extends task_gen { Line 605  class task extends task_gen {
605          return $val_dp;          return $val_dp;
606      }      }
607    
608      protected function view_form_json() {      protected function view_form_json($in_field = false) {
609          // Mise à jour des valeurs          // Mise à jour des valeurs
610          if ($this->f->get_submitted_post_value('valid') === 'true'          if ($this->f->get_submitted_post_value('valid') === 'true'
611              && $this->f->get_submitted_post_value('state') !== null) {              && $this->f->get_submitted_post_value('state') !== null) {
# Line 504  class task extends task_gen { Line 680  class task extends task_gen {
680              }              }
681              //              //
682              if ($this->getVal('type') === 'creation_DI'              if ($this->getVal('type') === 'creation_DI'
683                  || $this->getVal('type') === 'modification_DI') {                  || $this->getVal('type') === 'modification_DI'
684                    || $this->getVal('type') === 'depot_DI') {
685                  //                  //
686                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));                  $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
687                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_instruction');                  $val['donnees_techniques'] = $this->get_donnees_techniques_data($this->getVal('object_id'), 'dossier_instruction');
# Line 544  class task extends task_gen { Line 721  class task extends task_gen {
721                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');                  $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
722                  $val['external_uid'] = $val_external_uid;                  $val['external_uid'] = $val_external_uid;
723              }              }
724                //
725                if ($this->getVal('type') === 'incompletude_DI') {
726                    $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
727                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'incompletude');
728                    $val_external_uid = array();
729                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
730                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
731                    $val['external_uid'] = $val_external_uid;
732                }
733                //
734                if ($this->getVal('type') === 'completude_DI') {
735                    $val['dossier'] = $this->get_dossier_data($this->getVal('object_id'));
736                    $val['instruction'] = $this->get_instruction_data($val['dossier']['dossier'], 'completude');
737                    $val_external_uid = array();
738                    $val_external_uid['dossier_autorisation'] = $this->get_external_uid($val['dossier']['dossier_autorisation'], 'dossier_autorisation');
739                    $val_external_uid['dossier'] = $this->get_external_uid($val['dossier']['dossier'], 'dossier');
740                    $val['external_uid'] = $val_external_uid;
741                }
742    
743              // Liste des valeurs affichée en JSON              if ($in_field === true) {
744              printf(json_encode($val));                  return json_encode($val, JSON_PRETTY_PRINT ,JSON_UNESCAPED_SLASHES);
745                } else {
746                    // Liste des valeurs affichée en JSON
747                    printf(json_encode($val, JSON_UNESCAPED_SLASHES));
748                }
749          }          }
750      }      }
751    
# Line 557  class task extends task_gen { Line 756  class task extends task_gen {
756              $objet = 'dossier_autorisation';              $objet = 'dossier_autorisation';
757          }          }
758          if ($type === 'creation_DI'          if ($type === 'creation_DI'
759                || $type === 'depot_DI'
760              || $type === 'modification_DI'              || $type === 'modification_DI'
761              || $type === 'qualification_DI'              || $type === 'qualification_DI'
762              || $type === 'decision_DI') {              || $type === 'decision_DI'
763                || $type === 'incompletude_DI'
764                || $type === 'completude_DI') {
765              //              //
766              $objet = 'dossier';              $objet = 'dossier';
767          }          }
# Line 568  class task extends task_gen { Line 770  class task extends task_gen {
770          }          }
771          return $objet;          return $objet;
772      }      }
773    
774        function setLayout(&$form, $maj) {
775            $form->setBloc('json_payload', 'D', '', 'col_6');
776                $form->setFieldset('json_payload', 'DF', _("json_payload"), "collapsible, startClosed");
777            $form->setBloc('json_payload', 'F');
778            $form->setBloc('timestamp_log', 'DF', '', 'col_9');
779        }
780    
781  }  }

Legend:
Removed from v.9414  
changed lines
  Added in v.9604

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26