1 |
fraynaud |
3 |
<?php |
2 |
|
|
//$Id$ |
3 |
|
|
//gen openMairie le 10/02/2011 20:32 |
4 |
|
|
require_once ("../gen/obj/consultation.class.php"); |
5 |
mlimic |
843 |
require_once("../services/outgoing/messageenqueuer.php"); |
6 |
fraynaud |
3 |
|
7 |
|
|
class consultation extends consultation_gen { |
8 |
nhaye |
601 |
|
9 |
nhaye |
1917 |
var $abstract_type = array( |
10 |
|
|
"fichier" => "file", |
11 |
|
|
); |
12 |
|
|
|
13 |
nhaye |
1935 |
var $metadata = array( |
14 |
nhaye |
1938 |
"om_fichier_consultation" => array( |
15 |
nhaye |
1935 |
"dossier" => "getDossier", |
16 |
softime |
2016 |
"dossier_version" => "getDossierVersion", |
17 |
softime |
2025 |
"numDemandeAutor" => "getNumDemandeAutor", |
18 |
|
|
"anneemoisDemandeAutor" => "getAnneemoisDemandeAutor", |
19 |
|
|
"typeInstruction" => "getTypeInstruction", |
20 |
|
|
"statutAutorisation" => "getStatutAutorisation", |
21 |
|
|
"typeAutorisation" => "getTypeAutorisation", |
22 |
|
|
"dateEvenementDocument" => "getDateEvenementDocument", |
23 |
softime |
2016 |
"groupeInstruction" => 'getGroupeInstruction', |
24 |
softime |
2025 |
"title" => 'getTitle', |
25 |
nhaye |
1935 |
), |
26 |
softime |
2002 |
"fichier" => array( |
27 |
|
|
"dossier" => "getDossier", |
28 |
softime |
2016 |
"dossier_version" => "getDossierVersion", |
29 |
softime |
2025 |
"numDemandeAutor" => "getNumDemandeAutor", |
30 |
|
|
"anneemoisDemandeAutor" => "getAnneemoisDemandeAutor", |
31 |
|
|
"typeInstruction" => "getTypeInstruction", |
32 |
|
|
"statutAutorisation" => "getStatutAutorisation", |
33 |
|
|
"typeAutorisation" => "getTypeAutorisation", |
34 |
|
|
"dateEvenementDocument" => "getDateEvenementDocument", |
35 |
softime |
2016 |
"groupeInstruction" => 'getGroupeInstruction', |
36 |
softime |
2025 |
"title" => 'getTitle', |
37 |
softime |
2002 |
), |
38 |
nhaye |
1935 |
); |
39 |
|
|
|
40 |
fraynaud |
20 |
function consultation($id,&$db,$debug) { |
41 |
|
|
$this->constructeur($id,$db,$debug); |
42 |
|
|
}// fin constructeur |
43 |
fmichon |
943 |
|
44 |
|
|
// {{{ Gestion de la confidentialité des données spécifiques |
45 |
|
|
|
46 |
|
|
/** |
47 |
|
|
* Surcharge pour gérer les actions disponibles dans le portlet |
48 |
|
|
*/ |
49 |
|
|
function checkAccessibility() { |
50 |
|
|
// |
51 |
|
|
parent::checkAccessibility(); |
52 |
|
|
// Si l'utilisateur est un intructeur qui en correspond pas à la |
53 |
|
|
// division du dossier |
54 |
|
|
if ($this->f->isUserInstructeur() |
55 |
|
|
&& isset($this->f->om_utilisateur["division"]) |
56 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier()) { |
57 |
|
|
// |
58 |
|
|
$this->actions_sup = array(); |
59 |
|
|
$this->setParameter("actions", array()); |
60 |
|
|
} |
61 |
|
|
// Si une action 'lu' est présente et que le champ lu est à true |
62 |
|
|
// on supprime l'action |
63 |
|
|
if (isset($this->actions_sup["lu"]) |
64 |
|
|
&& isset($this->val[array_search("lu", $this->champs)]) |
65 |
|
|
&& $this->val[array_search("lu", $this->champs)]== "t") { |
66 |
|
|
unset($this->actions_sup["lu"]); |
67 |
|
|
} |
68 |
vpihour |
1974 |
|
69 |
|
|
//Si le document est déjà finalisé, le lien de l'édition est celui du stockage |
70 |
|
|
$om_final_instruction = $this->getVal("om_final_consultation"); |
71 |
|
|
if ( $om_final_instruction== "t" ){ |
72 |
|
|
|
73 |
|
|
//On affiche le bon lien pour l'édition |
74 |
|
|
$this->actions_sup["pdfetat"]["lien"] = "../spg/file.php?id="; |
75 |
|
|
$this->actions_sup["pdfetat"]["id"] = |
76 |
|
|
"&obj=consultation&champ=om_fichier_consultation"; |
77 |
vpihour |
1986 |
//On cache les liens d'action |
78 |
|
|
$this->parameters["actions"]["modifier"] = NULL; |
79 |
|
|
$this->parameters["actions"]["supprimer"] = NULL; |
80 |
vpihour |
1974 |
} |
81 |
|
|
//Si le document n'est pas finalisé, le lien de l'édition est le lien de |
82 |
|
|
//génération à la volée |
83 |
|
|
if ( $om_final_instruction!= "t" ){ |
84 |
|
|
|
85 |
|
|
//On affiche le bon lien pour l'édition |
86 |
|
|
$this->actions_sup["pdfetat"]["lien"] = "../app/pdf_consultation.php?idx="; |
87 |
|
|
$this->actions_sup["pdfetat"]["id"] = "&obj=consultation"; |
88 |
|
|
} |
89 |
vpihour |
1978 |
|
90 |
|
|
$idxformulaire = $this->getParameter("idxformulaire"); |
91 |
|
|
$retourformulaire = $this->getParameter("retourformulaire"); |
92 |
|
|
//Si le dossier d'instruction auquel est rattachée la consultation est |
93 |
|
|
//cloturé, on affiche pas les liens du portlet |
94 |
|
|
if ( $idxformulaire != '' && |
95 |
|
|
( |
96 |
|
|
$retourformulaire == 'dossier' || |
97 |
|
|
$retourformulaire == 'dossier_instruction' || |
98 |
|
|
$retourformulaire == 'dossier_instruction_mes_encours' || |
99 |
|
|
$retourformulaire == 'dossier_instruction_tous_encours' || |
100 |
|
|
$retourformulaire == 'dossier_instruction_mes_clotures' || |
101 |
|
|
$retourformulaire == 'dossier_instruction_tous_clotures' |
102 |
|
|
)){ |
103 |
|
|
|
104 |
|
|
//On récuppère le statut du dossier d'instruction |
105 |
softime |
2025 |
$statut = $this->getStatutAutorisationDossier($idxformulaire); |
106 |
vpihour |
1978 |
if ( $this->f->isUserInstructeur() && $statut == "cloture" ){ |
107 |
|
|
|
108 |
|
|
//On cache le lien de modification |
109 |
|
|
$this->parameters["actions"]["modifier"] = NULL; |
110 |
|
|
$this->parameters["actions"]["supprimer"] = NULL; |
111 |
|
|
$this->actions_sup["finalisation"] = NULL; |
112 |
|
|
$this->actions_sup["definalisation"] = NULL; |
113 |
|
|
$this->actions_sup["lu"] = NULL; |
114 |
|
|
} |
115 |
|
|
} |
116 |
fmichon |
943 |
} |
117 |
|
|
|
118 |
|
|
/** |
119 |
|
|
* Cette methode est à surcharger elle permet de tester dans chaque classe |
120 |
|
|
* des droits des droits spécifiques en fonction des données |
121 |
|
|
*/ |
122 |
|
|
function canAccess() { |
123 |
|
|
// Si l'utilisateur est un utilisateur de service externe |
124 |
|
|
// on vérifie qu'il peut accéder à la consultation |
125 |
|
|
if ($this->f->isUserServiceExt()) { |
126 |
|
|
// On compare l'id du service de la consultation |
127 |
|
|
// aux id des services de utilisateur connecté |
128 |
|
|
foreach($this->f->om_utilisateur['service'] as $service) { |
129 |
|
|
if($this->val[array_search("service",$this->champs)]===$service['service']) { |
130 |
|
|
return true; |
131 |
|
|
} |
132 |
|
|
} |
133 |
fmichon |
1088 |
// |
134 |
|
|
$this->f->addToLog("canAccess(): utilisateur de service sur une consultation d'un autre service", EXTRA_VERBOSE_MODE); |
135 |
fmichon |
943 |
return false; |
136 |
|
|
} |
137 |
|
|
// Si l'utilisateur est un intructeur qui ne correspond pas à la |
138 |
|
|
// division du dossier |
139 |
|
|
if ($this->f->isUserInstructeur() |
140 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier() |
141 |
|
|
&& $this->getParameter("maj") != 3) { |
142 |
|
|
// |
143 |
fmichon |
1088 |
$this->f->addToLog("canAccess(): utilisateur instructeur sur un dossier d'une autre division", EXTRA_VERBOSE_MODE); |
144 |
fmichon |
943 |
return false; |
145 |
|
|
} |
146 |
vpihour |
1978 |
|
147 |
|
|
$retourformulaire = $this->getParameter("retourformulaire"); |
148 |
|
|
// Si l'utilisateur est un instructeur et que le dossier est cloturé |
149 |
|
|
if ( $this->f->isUserInstructeur() && |
150 |
softime |
2025 |
$this->getStatutAutorisationDossier($this->getParameter("idxformulaire")) == "cloture" && |
151 |
vpihour |
1978 |
( |
152 |
|
|
$retourformulaire == 'dossier' || |
153 |
|
|
$retourformulaire == 'dossier_instruction' || |
154 |
|
|
$retourformulaire == 'dossier_instruction_mes_encours' || |
155 |
|
|
$retourformulaire == 'dossier_instruction_tous_encours' || |
156 |
|
|
$retourformulaire == 'dossier_instruction_mes_clotures' || |
157 |
|
|
$retourformulaire == 'dossier_instruction_tous_clotures' |
158 |
|
|
) && |
159 |
|
|
$this->getParameter("maj") != 3) { |
160 |
|
|
|
161 |
|
|
return false; |
162 |
|
|
} |
163 |
fmichon |
943 |
// |
164 |
|
|
return true; |
165 |
|
|
} |
166 |
|
|
|
167 |
|
|
/** |
168 |
fmichon |
1908 |
* Cette variable permet de stocker le résultat de la méthode |
169 |
|
|
* getDivisionFromDossier() afin de ne pas effectuer le recalcul à chacun de |
170 |
|
|
* ces appels. |
171 |
|
|
* @var string Code de la division du dossier en cours |
172 |
fmichon |
943 |
*/ |
173 |
fmichon |
1908 |
var $_division_from_dossier = NULL; |
174 |
|
|
|
175 |
|
|
/** |
176 |
|
|
* Cette méthode permet de récupérer le code de division correspondant |
177 |
|
|
* au dossier sur lequel on se trouve. |
178 |
|
|
* |
179 |
|
|
* @return string Code de la division du dossier en cours |
180 |
|
|
*/ |
181 |
fmichon |
943 |
function getDivisionFromDossier() { |
182 |
fmichon |
1908 |
|
183 |
|
|
// Cette méthode peut être appelée plusieurs fois lors d'une requête. |
184 |
|
|
// Pour éviter de refaire le traitement de recherche de la division |
185 |
|
|
// alors on vérifie si nous ne l'avons pas déjà calculé. |
186 |
|
|
if ($this->_division_from_dossier != NULL) { |
187 |
|
|
// Logger |
188 |
|
|
$this->addToLog("getDivisionFromDossier(): retour de la valeur déjà calculée - '".$this->_division_from_dossier."'", EXTRA_VERBOSE_MODE); |
189 |
|
|
// On retourne la valeur déjà calculée |
190 |
|
|
return $this->_division_from_dossier; |
191 |
|
|
} |
192 |
|
|
|
193 |
|
|
// Par défaut, on définit la valeur du dossier à NULL |
194 |
|
|
$dossier = NULL; |
195 |
|
|
// Test sur le mode et le contexte du formulaire |
196 |
|
|
if ($this->getParameter("maj") == 0 |
197 |
|
|
&& ($this->getParameter("retourformulaire") == "dossier" |
198 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction" |
199 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_encours" |
200 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_encours" |
201 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_clotures" |
202 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_clotures")) { |
203 |
|
|
// Si on se trouve en mode AJOUT (seul mode où l'enregistrement |
204 |
|
|
// n'existe pas en base de données) ET que nous nous trouvons |
205 |
|
|
// dans le contexte d'un dossier d'instruction alors on récupère |
206 |
|
|
// le numéro de dossier depuis le paramètre 'idxformulaire' |
207 |
|
|
$dossier = $this->getParameter("idxformulaire"); |
208 |
fmichon |
1088 |
} else { |
209 |
fmichon |
1908 |
// Sinon on récupère le numéro de dossier dans le champs dossier de |
210 |
|
|
// l'enregistrement (en base de données) |
211 |
|
|
$dossier = $this->getVal("dossier"); |
212 |
fmichon |
943 |
} |
213 |
fmichon |
1088 |
|
214 |
fmichon |
1908 |
// On appelle la méthode de la classe utils qui renvoi le code de la |
215 |
|
|
// division d'un dossier, on la stocke pour ne pas refaire le calcul au |
216 |
|
|
// prochain appel de cette méthode |
217 |
|
|
$this->_division_from_dossier = $this->f->getDivisionFromDossier($dossier); |
218 |
|
|
// Logger |
219 |
|
|
$this->addToLog("getDivisionFromDossier(): retour de la valeur nouvellement calculée - '".$this->_division_from_dossier."'", EXTRA_VERBOSE_MODE); |
220 |
|
|
// On retourne la valeur retournée |
221 |
|
|
return $this->_division_from_dossier; |
222 |
|
|
|
223 |
fmichon |
943 |
} |
224 |
|
|
|
225 |
|
|
// }}} |
226 |
|
|
|
227 |
fraynaud |
20 |
function setValsousformulaire(&$form,$maj,$validation,$idxformulaire,$retourformulaire,$typeformulaire){ |
228 |
nhaye |
1683 |
// ajout du retourformulaire aux attributs de l'objet |
229 |
|
|
$this->retourformulaire = $retourformulaire; |
230 |
fraynaud |
20 |
if ($validation==0) { |
231 |
|
|
if ($maj == 0){ |
232 |
nhaye |
569 |
$form->setVal("dossier", $idxformulaire); |
233 |
|
|
$form->setVal("date_envoi",date('d/m/Y')); |
234 |
fraynaud |
20 |
} |
235 |
nhaye |
587 |
if($maj == 1) { |
236 |
nhaye |
594 |
if($this->f->isAccredited('consultation_retour_avis_suivi') OR |
237 |
|
|
$this->f->isAccredited('consultation_retour_avis_service')) { |
238 |
|
|
$form->setVal("date_retour",date('d/m/Y')); |
239 |
|
|
} |
240 |
nhaye |
587 |
} |
241 |
fraynaud |
20 |
} |
242 |
|
|
} |
243 |
nhaye |
587 |
|
244 |
|
|
function setVal(&$form, $maj, $validation, &$db) { |
245 |
|
|
if($maj == 1) { |
246 |
|
|
$form->setVal("date_retour",date('d/m/Y')); |
247 |
|
|
} |
248 |
|
|
} |
249 |
fraynaud |
20 |
|
250 |
nhaye |
561 |
function setvalF($val) { |
251 |
fmichon |
1730 |
// |
252 |
nhaye |
561 |
parent::setValF($val); |
253 |
fmichon |
1730 |
// |
254 |
|
|
if ($this->getParameter('maj') == 0) { |
255 |
|
|
// |
256 |
|
|
if (isset($this->valF["date_envoi"])) { |
257 |
|
|
$this->valF["date_reception"] = $this->valF["date_envoi"]; |
258 |
|
|
} |
259 |
|
|
// |
260 |
fmichon |
1172 |
$this->valF["lu"] = true; |
261 |
nhaye |
587 |
} |
262 |
nhaye |
598 |
|
263 |
nhaye |
561 |
// Si un retour d'avis est modifie on passe "lu" a false |
264 |
nhaye |
598 |
if($this->getParameter('maj')==1 AND ( |
265 |
|
|
$this->val[array_search("avis_consultation",$this->champs)] != $val["avis_consultation"] OR |
266 |
|
|
$this->val[array_search("date_retour",$this->champs)] != $val["date_retour"] OR |
267 |
|
|
$this->val[array_search("motivation",$this->champs)] != $val["motivation"] OR |
268 |
nhaye |
674 |
$this->val[array_search("fichier",$this->champs)] != $val["fichier"]) |
269 |
nhaye |
598 |
) { |
270 |
|
|
$this->valF["lu"]=false; |
271 |
nhaye |
561 |
} |
272 |
nhaye |
675 |
} |
273 |
fmichon |
1730 |
|
274 |
|
|
function setLib(&$form, $maj) { |
275 |
|
|
// |
276 |
|
|
parent::setLib($form, $maj); |
277 |
|
|
// |
278 |
|
|
$form->setLib($this->clePrimaire, _("id")); |
279 |
|
|
} |
280 |
|
|
|
281 |
fraynaud |
20 |
function setType(&$form,$maj) { |
282 |
fmichon |
671 |
// Appel du parent |
283 |
nhaye |
459 |
parent::setType($form,$maj); |
284 |
fmichon |
671 |
// MODE - AJOUTER |
285 |
|
|
if ($maj == 0) { |
286 |
|
|
// On cache alors tous les champs que nous ne voulons pas voir |
287 |
|
|
// apparaître dans le formulaire d'ajout (principalement les |
288 |
|
|
// informations sur le retour d'avis) |
289 |
|
|
$form->setType('date_retour', 'hidden'); |
290 |
|
|
$form->setType('date_reception', 'hidden'); |
291 |
|
|
$form->setType('date_limite', 'hidden'); |
292 |
|
|
$form->setType('avis_consultation', 'hidden'); |
293 |
|
|
$form->setType('motivation', 'hidden'); |
294 |
|
|
$form->setType('fichier', 'hidden'); |
295 |
|
|
$form->setType('lu', 'hidden'); |
296 |
|
|
// On permet la modification de certains champs |
297 |
|
|
$form->setType('dossier', 'hiddenstatic'); |
298 |
|
|
$form->setType('service', 'select'); |
299 |
|
|
$form->setType('date_envoi', 'date2'); |
300 |
|
|
} |
301 |
|
|
// MODE - MODIFIER |
302 |
|
|
if ($maj == 1) { |
303 |
|
|
|
304 |
|
|
// On affiche en statique les informations qui ne sont plus |
305 |
|
|
// modifiables |
306 |
|
|
$form->setType('dossier', 'hiddenstatic'); |
307 |
|
|
$form->setType('date_envoi', 'hiddenstaticdate'); |
308 |
|
|
$form->setType('date_limite', 'hiddenstaticdate'); |
309 |
|
|
$form->setType('service', 'selecthiddenstatic'); |
310 |
|
|
|
311 |
|
|
// La date de réception ne peut être modifiée que par un |
312 |
|
|
// utilisateur en ayant spécifiquement la permission |
313 |
|
|
if($this->f->isAccredited('consultation_modifier_date_reception')) { |
314 |
|
|
$form->setType('date_reception', 'date2'); |
315 |
|
|
} else { |
316 |
|
|
$form->setType('date_reception', 'hiddenstaticdate'); |
317 |
|
|
} |
318 |
|
|
|
319 |
|
|
// Le marqueur lu/non lu ne peut être modifié que par un |
320 |
|
|
// utilisateur en ayant spécifiquement la permission |
321 |
|
|
if ($this->f->isAccredited('consultation_modifier_lu')) { |
322 |
|
|
$form->setType('lu', 'checkbox'); |
323 |
|
|
} else { |
324 |
|
|
$form->setType('lu', 'hidden'); |
325 |
|
|
} |
326 |
|
|
|
327 |
|
|
// Gestion du type du widget sur le champ fichier |
328 |
nhaye |
1683 |
if($this->getVal("fichier") == "" OR |
329 |
fmichon |
671 |
$this->f->isAccredited('consultation_modifier_fichier')) { |
330 |
|
|
// Si il n'y a jamais eu de fichier enregistré ou que |
331 |
|
|
// l'utilisateur a spécifiquement les droits pour modifier |
332 |
|
|
// un fichier déjà enregistré alors on positionne un type |
333 |
|
|
// de widget modifiable |
334 |
nhaye |
1683 |
if($this->retourformulaire == "demande_avis_encours") { |
335 |
|
|
$form->setType('fichier', 'upload2'); |
336 |
|
|
} else { |
337 |
|
|
$form->setType('fichier', 'upload'); |
338 |
|
|
} |
339 |
fmichon |
671 |
} else { |
340 |
|
|
// Si non on affiche uniquement le nom du fichier |
341 |
nhaye |
1683 |
$form->setType('fichier', 'file'); |
342 |
fmichon |
671 |
} |
343 |
|
|
|
344 |
|
|
// Modification layout : écran de retour d'avis permettant |
345 |
|
|
// uniquement la saisie des trois champs : avis, motivation et fichier |
346 |
|
|
if (!$this->f->isAccredited('consultation_consulter_autre_que_retour_avis')) { |
347 |
|
|
|
348 |
|
|
// On cache alors tous les champs que nous ne voulons pas voir |
349 |
|
|
$form->setType('dossier', 'hidden'); |
350 |
|
|
$form->setType('service', 'hidden'); |
351 |
|
|
$form->setType('date_envoi', 'hidden'); |
352 |
|
|
$form->setType('date_retour', 'hidden'); |
353 |
|
|
$form->setType('date_reception', 'hidden'); |
354 |
fraynaud |
20 |
$form->setType('date_limite', 'hidden'); |
355 |
nhaye |
561 |
$form->setType('lu', 'hidden'); |
356 |
fmichon |
671 |
|
357 |
fraynaud |
20 |
} |
358 |
vpihour |
1784 |
|
359 |
fraynaud |
20 |
} |
360 |
nhaye |
1895 |
// Mode supprimer |
361 |
|
|
if ($maj == 2) { |
362 |
|
|
$form->setType('fichier', 'filestatic'); |
363 |
|
|
} |
364 |
nhaye |
674 |
// MODE - CONSULTER |
365 |
|
|
if ( $maj == 3 ) { |
366 |
nhaye |
1683 |
$form->setType('fichier', 'file'); |
367 |
nhaye |
674 |
} |
368 |
fmichon |
671 |
//// On cache la clé primaire |
369 |
|
|
//$form->setType('consultation', 'hidden'); |
370 |
fmichon |
1730 |
// |
371 |
|
|
if ($this->getParameter("retourformulaire") == "dossier" |
372 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction" |
373 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_encours" |
374 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_encours" |
375 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_clotures" |
376 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_clotures") { |
377 |
|
|
// |
378 |
|
|
$form->setType('dossier', 'hidden'); |
379 |
|
|
} |
380 |
vpihour |
1784 |
|
381 |
|
|
$form->setType('code_barres', 'hidden'); |
382 |
vpihour |
1899 |
|
383 |
|
|
//Cache les champs pour la finalisation |
384 |
|
|
$form->setType('om_fichier_consultation', 'hidden'); |
385 |
|
|
$form->setType('om_final_consultation', 'hidden'); |
386 |
fraynaud |
20 |
} |
387 |
|
|
|
388 |
fmichon |
1170 |
// Cette méthode permet de calculer la date limite en fonction de la date |
389 |
|
|
// de réception et du délai de consultation du service consulté |
390 |
|
|
function calculDateLimite() { |
391 |
fraynaud |
20 |
// mise a jour instruction avec evenement [return delay] |
392 |
fmichon |
1170 |
if ($this->valF["date_reception"] != "") { |
393 |
|
|
// |
394 |
|
|
$sql = " select delai from ".DB_PREFIXE."service "; |
395 |
|
|
$sql .= " where service='".$this->valF["service"]."' "; |
396 |
|
|
// |
397 |
|
|
$delai = $this->db->getOne($sql); |
398 |
|
|
$this->addToLog("triggerajouter(): db->getone(\"".$sql."\")", VERBOSE_MODE); |
399 |
|
|
// |
400 |
|
|
$this->valF["date_limite"] = $this->moisdate($this->valF["date_reception"], $delai); |
401 |
|
|
// |
402 |
nhaye |
532 |
$this->addToMessage(_("delai")." ". |
403 |
fraynaud |
41 |
_("retour")." ".$delai." "._("mois")." -> ". |
404 |
fmichon |
1170 |
_("retour")." ".date("d/m/Y", strtotime($this->valF["date_limite"]))); |
405 |
fraynaud |
41 |
} |
406 |
fraynaud |
20 |
} |
407 |
fmichon |
1170 |
|
408 |
|
|
// TRIGGER AVANT MODIFICATION DE DONNEES |
409 |
|
|
// trigger before modification data |
410 |
|
|
function triggerajouter($id,&$db,$val,$DEBUG) { |
411 |
|
|
// |
412 |
|
|
$this->calculDateLimite(); |
413 |
vpihour |
1784 |
|
414 |
|
|
// Identifiant du type de courrier |
415 |
|
|
$idTypeCourrier = '12'; |
416 |
|
|
$idCourrier = str_pad($this->valF["consultation"], 10, "0", STR_PAD_LEFT); |
417 |
|
|
// Code barres |
418 |
|
|
$this->valF["code_barres"] = $idTypeCourrier . $idCourrier; |
419 |
fmichon |
1170 |
} |
420 |
|
|
|
421 |
|
|
// |
422 |
|
|
function triggermodifier($id,&$db,$val,$DEBUG) { |
423 |
|
|
// |
424 |
|
|
$this->calculDateLimite(); |
425 |
|
|
} |
426 |
|
|
|
427 |
|
|
// |
428 |
nhaye |
532 |
function triggerajouterapres($id,&$db,$val,$DEBUG) { |
429 |
|
|
|
430 |
|
|
// Verification de la demande de notif par mail |
431 |
fmichon |
1168 |
$sql= "SELECT abrege, libelle, notification_email, email FROM ".DB_PREFIXE. |
432 |
nhaye |
532 |
"service WHERE service ='".$this->valF['service']."'"; |
433 |
|
|
$res=$db->query($sql); |
434 |
|
|
$notif = $res->fetchrow(DB_FETCHMODE_ASSOC); |
435 |
|
|
if (database :: isError($sql))die($res->getMessage()."erreur ".$sql); |
436 |
|
|
if ($notif['notification_email']=='t') { |
437 |
|
|
|
438 |
|
|
// Recuperation des infos du dossier |
439 |
|
|
$sql= "SELECT dossier, terrain_adresse, terrain_adresse_complement, terrain_cp, terrain_ville |
440 |
|
|
FROM ".DB_PREFIXE."dossier WHERE dossier ='".$this->valF['dossier']."'"; |
441 |
|
|
$res=$db->query($sql); |
442 |
|
|
$dossier = $res->fetchrow(DB_FETCHMODE_ASSOC); |
443 |
|
|
|
444 |
|
|
// Definition des parametres d'envoi du mail |
445 |
|
|
$title=_("Consultation de services : dossier no")." ".$dossier['dossier']; |
446 |
|
|
$corps=_("Votre service est consulte concernant le dossier no")." ".$dossier['dossier']."<br/>". |
447 |
|
|
_("Il concerne le terrain situe a l'adresse :")." ".utf8_decode($dossier['terrain_adresse']). |
448 |
|
|
" ".utf8_decode($dossier['terrain_adresse_complement'])." ".utf8_decode($dossier['terrain_cp'])." ".$dossier['terrain_ville']."<br/>". |
449 |
fmichon |
668 |
_("Vous pouvez y acceder et rendre votre avis a l'adresse")." <a href='".$this->f->getParameter('services_consultes_lien_interne'). |
450 |
nhaye |
532 |
"scr/form.php?obj=consultation&action=3&idx=".$this->valF['consultation']."' >". |
451 |
fmichon |
668 |
_("Lien interne (services VDM)")."</a> "._("ou")." <a href='".$this->f->getParameter('services_consultes_lien_externe'). |
452 |
nhaye |
532 |
"scr/form.php?obj=consultation&action=3&idx=".$this->valF['consultation']."' >". |
453 |
|
|
_("Lien externe (hors VDM)")."</a>"; |
454 |
|
|
// Envoi du mail avec message de retour |
455 |
|
|
if($this->f->sendMail($title, $corps, $notif['email'])) { |
456 |
fmichon |
1168 |
$this->addToMessage(_("Envoi d'un mail de notification au service")." \"(".$notif['abrege'].") ".$notif["libelle"]."\""); |
457 |
nhaye |
532 |
} else { |
458 |
|
|
$this->addToMessage(_("L'envoi du mail de notification a echoue")); |
459 |
|
|
} |
460 |
|
|
} |
461 |
|
|
|
462 |
fmichon |
1005 |
|
463 |
|
|
// verification si envoi vers ERP est active |
464 |
|
|
if ($this->f->getParameter('option_erp') != "") { |
465 |
|
|
// s'il s'agit de la consultation ERP Secu, ERP Accessibilite, ou |
466 |
|
|
// deenvoie un |
467 |
|
|
// message a ERP |
468 |
|
|
$dossier_erp = $this->getFromDB("SELECT erp FROM ".DB_PREFIXE. |
469 |
|
|
"dossier WHERE dossier = '" .$this->valF['dossier'] . "'"); |
470 |
nhaye |
1140 |
$dossier_nature = $this->getFromDB("SELECT dossier_autorisation_type_detaille.code FROM ".DB_PREFIXE. |
471 |
|
|
"dossier |
472 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation |
473 |
|
|
ON dossier.dossier_autorisation=dossier_autorisation.dossier_autorisation |
474 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation_type_detaille |
475 |
|
|
ON dossier_autorisation.dossier_autorisation_type_detaille |
476 |
|
|
= dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
477 |
|
|
WHERE dossier = '" . $this->valF['dossier'] . "'"); |
478 |
fmichon |
1005 |
if ($dossier_erp == 't' |
479 |
|
|
&& substr($dossier_nature, 0, 2) == $this->f->getParameter('erp_dossier_nature_pc')) { |
480 |
|
|
// envoi du message "Demande d'instruction d'un dossier PC pour un ERP" |
481 |
|
|
if (($this->valF['service'] == $this->f->getParameter('erp_service_accessibilite') |
482 |
|
|
|| $this->valF['service'] == $this->f->getParameter('erp_service_securite'))) { |
483 |
|
|
$msgenque = new MessageEnqueuer(); |
484 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
485 |
|
|
$msgenque->setConsultationIdentifier($this->valF['consultation']); |
486 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_INSTRUCTION_PC); |
487 |
|
|
} |
488 |
|
|
|
489 |
|
|
// envoi du message "Consultation ERP pour conformite" en cas de creation de la |
490 |
|
|
// consultation du service ERP Conformite |
491 |
|
|
if ($this->valF['service'] == $this->f->getParameter('erp_service_conformite')) { |
492 |
|
|
$msgenque = new MessageEnqueuer(); |
493 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
494 |
|
|
$msgenque->setConsultationIdentifier($this->valF['consultation']); |
495 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_CONSULTATION_CONFORMITE); |
496 |
|
|
} |
497 |
mlimic |
936 |
} |
498 |
fmichon |
1005 |
} // fin de if($this->f->getParameter('option_erp')) |
499 |
vpihour |
1930 |
|
500 |
|
|
// Finalisation du document |
501 |
|
|
$this->finaliserAjouter(); |
502 |
nhaye |
532 |
} |
503 |
mlimic |
843 |
|
504 |
mlimic |
936 |
/** |
505 |
|
|
* Fait une requette sql pour extraire la valeur d'un champ, et retourne |
506 |
|
|
* cette valeur |
507 |
|
|
* @param string $sql La requete sql a executer |
508 |
|
|
* @return La valeur du champs cherche, sinon NULL. En cas d'erreur de la BD |
509 |
|
|
* l'execution s'arrete. |
510 |
|
|
*/ |
511 |
|
|
function getFromDB($sql) { |
512 |
|
|
//$sql = "SELECT libelle FROM ".DB_PREFIXE."dossier WHERE dossier = '" . $dossier . "'"; |
513 |
|
|
$res = $this->db->limitquery($sql, 0, 1); |
514 |
vpihour |
1777 |
$this->f->addToLog("getDossierERPSpecification(): db->limitquery(\"". |
515 |
mlimic |
936 |
str_replace(",",", ",$sql)."\", 0, 1);", VERBOSE_MODE); |
516 |
|
|
// Si une erreur survient on die |
517 |
|
|
if (database::isError($res, true)) { |
518 |
|
|
// Appel de la methode de recuperation des erreurs |
519 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), 'instruction'); |
520 |
|
|
} |
521 |
|
|
// retourne la nature du dossier |
522 |
|
|
while ($row =& $res->fetchRow()) { |
523 |
|
|
return $row[0]; |
524 |
|
|
} |
525 |
|
|
// la nature n'etait pas trouve, ce qui ne devrait pas se passer |
526 |
|
|
return NULL; |
527 |
|
|
|
528 |
|
|
} |
529 |
|
|
|
530 |
fraynaud |
20 |
// ============================================= |
531 |
|
|
// calcul de date avec ajout de mois (delais) |
532 |
|
|
// [add months (delay) and calculation final date] |
533 |
|
|
// limite ? => voir fonction instruction |
534 |
|
|
// ============================================= |
535 |
|
|
function moisdate($date,$delaimois) { |
536 |
|
|
// rajout de mois à une date (moins de 12) |
537 |
|
|
$temp = explode("-" , $date); |
538 |
|
|
$jour = (int) $temp[2]; |
539 |
|
|
$mois = (int) $temp[1]; |
540 |
|
|
$annee = (int) $temp[0]; |
541 |
|
|
$mois=$mois+$delaimois; |
542 |
|
|
// calcul mois annee |
543 |
|
|
if($mois>12){ |
544 |
|
|
$mois=$mois-12; |
545 |
|
|
$annee=$annee+1; |
546 |
|
|
} |
547 |
|
|
// Calcul du nombre de jours dans le mois sélectionné |
548 |
|
|
switch($mois) { |
549 |
|
|
case "2": |
550 |
|
|
if ($annee % 4 == 0 && $annee % 100 != 0 || $annee % 400 == 0) |
551 |
|
|
$jourmax = 29; |
552 |
|
|
else |
553 |
|
|
$jourmax = 28; |
554 |
|
|
break; |
555 |
|
|
case "4": |
556 |
|
|
case "6": |
557 |
|
|
case "9": |
558 |
|
|
case "11": |
559 |
|
|
$jourmax = 30; |
560 |
|
|
break; |
561 |
|
|
default: |
562 |
|
|
$jourmax = 31; |
563 |
|
|
} |
564 |
|
|
if ($jour > $jourmax) |
565 |
|
|
$jour = $jourmax; |
566 |
|
|
return $annee."-".$mois."-".$jour ; |
567 |
|
|
} |
568 |
vpihour |
497 |
|
569 |
nhaye |
569 |
// ============================================= |
570 |
vpihour |
497 |
// Ajout du fielset |
571 |
|
|
// Add fieldset |
572 |
|
|
// ============================================= |
573 |
nhaye |
569 |
function setLayout(&$form, $maj){ |
574 |
fmichon |
671 |
|
575 |
|
|
// Modification layout : écran de retour d'avis permettant |
576 |
|
|
// uniquement la saisie des trois champs : avis, motivation et fichier |
577 |
|
|
if ($this->f->isAccredited('consultation_consulter_autre_que_retour_avis')) { |
578 |
|
|
|
579 |
nhaye |
569 |
//Champs sur lequel s'ouvre le fieldset |
580 |
|
|
$form->setBloc('dossier','D',""); |
581 |
|
|
$form->setFieldset('dossier','D',_('Consultation')); |
582 |
|
|
|
583 |
|
|
//Champs sur lequel se ferme le fieldset |
584 |
|
|
$form->setFieldset('date_envoi','F',''); |
585 |
|
|
$form->setBloc('date_envoi','F'); |
586 |
fmichon |
671 |
|
587 |
nhaye |
569 |
} |
588 |
fmichon |
671 |
|
589 |
|
|
// MODE - autre que AJOUTER alors on affiche un fieldset retour |
590 |
|
|
// d'avis |
591 |
|
|
if ($maj != 0) { |
592 |
|
|
|
593 |
nhaye |
569 |
//Champs sur lequel s'ouvre le fieldset |
594 |
|
|
$form->setBloc('date_reception','D',""); |
595 |
|
|
$form->setFieldset('date_reception','D',_('Retour d\'avis')); |
596 |
fmichon |
671 |
|
597 |
nhaye |
569 |
//Champs sur lequel se ferme le fieldset |
598 |
|
|
$form->setFieldset('lu','F',''); |
599 |
|
|
$form->setBloc('lu','F'); |
600 |
fmichon |
671 |
|
601 |
nhaye |
569 |
} |
602 |
|
|
} |
603 |
nhaye |
595 |
|
604 |
|
|
/** Surcharge de la methode retour afin de retourner sur la page de saisie de |
605 |
|
|
* code barre si besoin |
606 |
|
|
**/ |
607 |
|
|
function retour($premier = 0, $recherche = "", $tricol = "") { |
608 |
|
|
$params ="obj=".get_class($this); |
609 |
|
|
if($this->getParameter("retour")=="form") { |
610 |
|
|
$params .= "&idx=".$this->getParameter("idx"); |
611 |
|
|
$params .= "&action=3"; |
612 |
|
|
} |
613 |
|
|
$params .= "&premier=".$this->getParameter("premier"); |
614 |
|
|
$params .= "&tricol=".$this->getParameter("tricol"); |
615 |
|
|
$params .= "&recherche=".$this->getParameter("recherche"); |
616 |
|
|
$params .= "&selectioncol=".$this->getParameter("selectioncol"); |
617 |
|
|
$params .= "&advs_id=".$this->getParameter("advs_id"); |
618 |
|
|
$params .= "&valide=".$this->getParameter("valide"); |
619 |
|
|
echo "\n<a class=\"retour\" "; |
620 |
|
|
echo "href=\""; |
621 |
|
|
// |
622 |
|
|
|
623 |
|
|
if($this->getParameter("retour")=="form" AND !($this->getParameter("validation")>0 AND $this->getParameter("maj")==2 AND $this->correct)) { |
624 |
|
|
echo "form.php?".$params; |
625 |
fmichon |
1666 |
} elseif($this->getParameter("retour")=="suivi_retours_de_consultation") { |
626 |
|
|
echo "../app/suivi_retours_de_consultation.php"; |
627 |
nhaye |
595 |
} else { |
628 |
|
|
echo "tab.php?".$params; |
629 |
|
|
} |
630 |
|
|
// |
631 |
|
|
echo "\""; |
632 |
|
|
echo ">"; |
633 |
|
|
// |
634 |
|
|
echo _("Retour"); |
635 |
|
|
// |
636 |
|
|
echo "</a>\n"; |
637 |
|
|
} |
638 |
fmichon |
938 |
|
639 |
|
|
/** |
640 |
nhaye |
802 |
* Surcharge du bouton retour pour popup |
641 |
|
|
*/ |
642 |
|
|
function retoursousformulaire($idxformulaire, $retourformulaire, $val, |
643 |
|
|
$objsf, $premiersf, $tricolsf, $validation, |
644 |
|
|
$idx, $maj, $retour) { |
645 |
|
|
if($retourformulaire === "demande_avis_encours") { |
646 |
|
|
echo "\n<a class=\"retour\" "; |
647 |
|
|
echo "href=\""; |
648 |
|
|
echo "#"; |
649 |
|
|
echo "\" "; |
650 |
|
|
echo ">"; |
651 |
|
|
// |
652 |
|
|
echo _("Retour"); |
653 |
|
|
// |
654 |
|
|
echo "</a>\n"; |
655 |
|
|
} else { |
656 |
|
|
parent::retoursousformulaire($idxformulaire, $retourformulaire, $val, |
657 |
|
|
$objsf, $premiersf, $tricolsf, $validation, |
658 |
|
|
$idx, $maj, $retour); |
659 |
|
|
} |
660 |
|
|
} |
661 |
vpihour |
1784 |
|
662 |
vpihour |
1881 |
/** |
663 |
|
|
* Ajout des contraintes spécifiques pour l'ajout d'un fichier en retour de |
664 |
|
|
* consultation |
665 |
|
|
*/ |
666 |
|
|
function setSelect(&$form, $maj,&$db,$debug) { |
667 |
|
|
parent::setSelect($form, $maj,$db,$debug); |
668 |
|
|
|
669 |
|
|
//Seulement dans le cas d'un retour d'avis |
670 |
|
|
if($this->retourformulaire == "demande_avis_encours") { |
671 |
|
|
|
672 |
|
|
//Tableau des contraintes spécifiques |
673 |
|
|
$params = array( |
674 |
|
|
"constraint" => array( |
675 |
|
|
"size_max" => 2, |
676 |
|
|
"extension" => ".pdf" |
677 |
|
|
), |
678 |
|
|
); |
679 |
|
|
|
680 |
|
|
$form->setSelect("fichier", $params); |
681 |
|
|
} |
682 |
|
|
} |
683 |
vpihour |
1930 |
|
684 |
|
|
/** |
685 |
|
|
* Finalisation du document lors de l'ajout d'une consultation |
686 |
|
|
*/ |
687 |
|
|
function finaliserAjouter(){ |
688 |
|
|
|
689 |
|
|
//Génération du PDF |
690 |
|
|
$_GET['output'] = "string"; |
691 |
|
|
$_GET['obj'] = "consultation"; |
692 |
|
|
$_GET['idx'] = $this->valF[$this->clePrimaire]; |
693 |
|
|
$f = $this->f; |
694 |
|
|
include '../app/pdf_consultation.php'; |
695 |
|
|
|
696 |
|
|
//Métadonnées du document |
697 |
|
|
$metadata = array( |
698 |
|
|
'filename' => 'consultation_'.$idx.'.pdf', |
699 |
|
|
'mimetype' => 'application/pdf', |
700 |
|
|
'size' => strlen($pdf_output) |
701 |
|
|
); |
702 |
|
|
|
703 |
nhaye |
1935 |
// Récupération des métadonnées calculées après validation |
704 |
nhaye |
1938 |
$spe_metadata = $this->getMetadata("om_fichier_consultation"); |
705 |
nhaye |
1935 |
|
706 |
|
|
$metadata = array_merge($metadata, $spe_metadata); |
707 |
|
|
|
708 |
vpihour |
1930 |
//On ajoute le document et on récupère son uid |
709 |
|
|
$uid = $this->f->storage->create($pdf_output, $metadata); |
710 |
|
|
|
711 |
|
|
//Mise à jour des données |
712 |
|
|
if ( $uid != '' ){ |
713 |
|
|
// Logger |
714 |
|
|
$this->addToLog("finaliserAjouter() - begin", EXTRA_VERBOSE_MODE); |
715 |
|
|
|
716 |
|
|
$valF = array( |
717 |
|
|
"om_final_consultation"=> TRUE, |
718 |
|
|
"om_fichier_consultation"=>$uid); |
719 |
|
|
|
720 |
|
|
// Execution de la requête de modification des donnees de l'attribut |
721 |
|
|
// valF de l'objet dans l'attribut table de l'objet |
722 |
|
|
$res = $this->db->autoExecute(DB_PREFIXE.$this->table, $valF, |
723 |
|
|
DB_AUTOQUERY_UPDATE, $this->getCle($idx)); |
724 |
|
|
$this->addToLog("finaliserAjouter() : db->autoExecute(\"".DB_PREFIXE.$this->table."\", ".print_r($valF, true).", DB_AUTOQUERY_UPDATE, \"".$this->getCle($idx)."\")", VERBOSE_MODE); |
725 |
|
|
// Si une erreur survient |
726 |
|
|
if (database::isError($res)) { |
727 |
|
|
// Appel de la methode de recuperation des erreurs |
728 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), ''); |
729 |
|
|
} else { |
730 |
|
|
// Log |
731 |
|
|
$this->addToLog(_("Requete executee"), VERBOSE_MODE); |
732 |
|
|
// Log |
733 |
|
|
$message = _("Enregistrement")." ".$idx." "; |
734 |
|
|
$message .= _("de la table")." \"".$this->table."\" "; |
735 |
|
|
$message .= "[ ".$this->db->affectedRows()." "; |
736 |
|
|
$message .= _("enregistrement(s) mis a jour")." ]"; |
737 |
|
|
$this->addToLog($message, VERBOSE_MODE); |
738 |
|
|
} |
739 |
|
|
} |
740 |
|
|
} |
741 |
nhaye |
1935 |
|
742 |
|
|
|
743 |
|
|
/** |
744 |
|
|
* Récupération du numéro de dossier d'instruction à ajouter aux métadonnées |
745 |
nhaye |
1949 |
* @return string numéro de dossier d'instruction |
746 |
nhaye |
1935 |
*/ |
747 |
|
|
protected function getDossier() { |
748 |
|
|
if(empty($this->specificMetadata)) { |
749 |
|
|
$this->getSpecificMetadata(); |
750 |
|
|
} |
751 |
|
|
return $this->specificMetadata->dossier; |
752 |
|
|
} |
753 |
|
|
/** |
754 |
softime |
2016 |
* Récupération la version du dossier d'instruction à ajouter aux métadonnées |
755 |
|
|
* @return int Version |
756 |
|
|
*/ |
757 |
|
|
protected function getDossierVersion() { |
758 |
|
|
if(empty($this->specificMetadata)) { |
759 |
|
|
$this->getSpecificMetadata(); |
760 |
|
|
} |
761 |
|
|
return $this->specificMetadata->version; |
762 |
|
|
} |
763 |
|
|
/** |
764 |
nhaye |
1935 |
* Récupération du numéro de dossier d'autorisation à ajouter aux métadonnées |
765 |
nhaye |
1949 |
* @return string numéro de dossier d'autorisation |
766 |
nhaye |
1935 |
*/ |
767 |
softime |
2025 |
protected function getNumDemandeAutor() { |
768 |
nhaye |
1935 |
if(empty($this->specificMetadata)) { |
769 |
|
|
$this->getSpecificMetadata(); |
770 |
|
|
} |
771 |
|
|
return $this->specificMetadata->dossier_autorisation; |
772 |
|
|
} |
773 |
|
|
/** |
774 |
|
|
* Récupération de la date de demande initiale du dossier à ajouter aux métadonnées |
775 |
nhaye |
1949 |
* @return date demande initiale |
776 |
nhaye |
1935 |
*/ |
777 |
softime |
2025 |
protected function getAnneemoisDemandeAutor() { |
778 |
nhaye |
1935 |
if(empty($this->specificMetadata)) { |
779 |
|
|
$this->getSpecificMetadata(); |
780 |
|
|
} |
781 |
|
|
return $this->specificMetadata->date_demande_initiale; |
782 |
|
|
} |
783 |
|
|
/** |
784 |
|
|
* Récupération du type de dossier d'instruction à ajouter aux métadonnées |
785 |
nhaye |
1949 |
* @return string type de dossier d'instruction |
786 |
nhaye |
1935 |
*/ |
787 |
softime |
2025 |
protected function getTypeInstruction() { |
788 |
nhaye |
1935 |
if(empty($this->specificMetadata)) { |
789 |
|
|
$this->getSpecificMetadata(); |
790 |
|
|
} |
791 |
|
|
return $this->specificMetadata->dossier_instruction_type; |
792 |
|
|
} |
793 |
|
|
/** |
794 |
|
|
* Récupération du statut du dossier d'autorisation à ajouter aux métadonnées |
795 |
nhaye |
1949 |
* @return string avis |
796 |
nhaye |
1935 |
*/ |
797 |
softime |
2025 |
protected function getStatutAutorisation() { |
798 |
nhaye |
1935 |
if(empty($this->specificMetadata)) { |
799 |
|
|
$this->getSpecificMetadata(); |
800 |
|
|
} |
801 |
|
|
return $this->specificMetadata->statut; |
802 |
|
|
} |
803 |
|
|
/** |
804 |
|
|
* Récupération du type de dossier d'autorisation à ajouter aux métadonnées |
805 |
nhaye |
1949 |
* @return string type d'autorisation |
806 |
nhaye |
1935 |
*/ |
807 |
softime |
2025 |
protected function getTypeAutorisation() { |
808 |
nhaye |
1935 |
if(empty($this->specificMetadata)) { |
809 |
|
|
$this->getSpecificMetadata(); |
810 |
|
|
} |
811 |
|
|
return $this->specificMetadata->dossier_autorisation_type; |
812 |
|
|
} |
813 |
|
|
/** |
814 |
|
|
* Récupération de la date d'ajout de document à ajouter aux métadonnées |
815 |
nhaye |
1949 |
* @return date de l'évènement |
816 |
nhaye |
1935 |
*/ |
817 |
softime |
2025 |
protected function getDateEvenementDocument() { |
818 |
nhaye |
1935 |
return date("d/m/Y"); |
819 |
|
|
} |
820 |
|
|
/** |
821 |
|
|
* Récupération du groupe d'instruction à ajouter aux métadonnées |
822 |
|
|
* @return string Groupe d'instruction |
823 |
|
|
*/ |
824 |
|
|
protected function getGroupeInstruction() { |
825 |
|
|
if(empty($this->specificMetadata)) { |
826 |
|
|
$this->getSpecificMetadata(); |
827 |
|
|
} |
828 |
|
|
return $this->specificMetadata->groupe_instruction; |
829 |
|
|
} |
830 |
softime |
2002 |
/** |
831 |
|
|
* Récupération du type de document à ajouter aux métadonnées |
832 |
|
|
* @return string Type de document |
833 |
|
|
*/ |
834 |
softime |
2025 |
protected function getTitle() { |
835 |
softime |
2002 |
if ($this->retourformulaire == "demande_avis_encours") { |
836 |
|
|
return 'Retour de consultation'; |
837 |
|
|
} else { |
838 |
|
|
return 'Demande de consultation'; |
839 |
|
|
} |
840 |
|
|
} |
841 |
nhaye |
1935 |
|
842 |
|
|
/** |
843 |
|
|
* Cette méthode permet de stocker en attribut toutes les métadonnées |
844 |
|
|
* nécessaire à l'ajout d'un document. |
845 |
|
|
*/ |
846 |
|
|
public function getSpecificMetadata() { |
847 |
|
|
if (isset($this->valF["dossier"]) AND $this->valF["dossier"] != "") { |
848 |
|
|
$dossier = $this->valF["dossier"]; |
849 |
|
|
} else { |
850 |
|
|
$dossier = $this->getVal("dossier"); |
851 |
|
|
} |
852 |
|
|
//Requête pour récupérer les informations essentiels sur le dossier d'instruction |
853 |
|
|
$sql = "SELECT dossier.dossier as dossier, |
854 |
|
|
dossier_autorisation.dossier_autorisation as dossier_autorisation, |
855 |
|
|
to_char(dossier.date_demande, 'YYYY/MM') as date_demande_initiale, |
856 |
softime |
2016 |
dossier.version as version, |
857 |
nhaye |
1935 |
dossier_instruction_type.code as dossier_instruction_type, |
858 |
|
|
etat_dossier_autorisation.libelle as statut, |
859 |
|
|
dossier_autorisation_type.code as dossier_autorisation_type, |
860 |
|
|
groupe.code as groupe_instruction |
861 |
|
|
FROM ".DB_PREFIXE."dossier |
862 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_instruction_type |
863 |
|
|
ON dossier.dossier_instruction_type = dossier_instruction_type.dossier_instruction_type |
864 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation |
865 |
|
|
ON dossier.dossier_autorisation = dossier_autorisation.dossier_autorisation |
866 |
|
|
LEFT JOIN ".DB_PREFIXE."etat_dossier_autorisation |
867 |
|
|
ON dossier_autorisation.etat_dossier_autorisation = etat_dossier_autorisation.etat_dossier_autorisation |
868 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation_type_detaille |
869 |
|
|
ON dossier_autorisation.dossier_autorisation_type_detaille = dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
870 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation_type |
871 |
|
|
ON dossier_autorisation_type_detaille.dossier_autorisation_type = dossier_autorisation_type.dossier_autorisation_type |
872 |
|
|
LEFT JOIN ".DB_PREFIXE."groupe |
873 |
|
|
ON dossier_autorisation_type.groupe = groupe.groupe |
874 |
|
|
WHERE dossier.dossier = '".$dossier."'"; |
875 |
|
|
$res = $this->db->query($sql); |
876 |
|
|
$this->f->addToLog("obj/document_numerise.class.php : db->query(".$sql.")", VERBOSE_MODE); |
877 |
|
|
if ( database::isError($res)){ |
878 |
|
|
die(); |
879 |
|
|
} |
880 |
|
|
|
881 |
|
|
//Le résultat est récupéré dans un objet |
882 |
|
|
$row =& $res->fetchRow(DB_FETCHMODE_OBJECT); |
883 |
|
|
|
884 |
|
|
//Si il y a un résultat |
885 |
|
|
if ($row !== null) { |
886 |
|
|
|
887 |
|
|
//Alors on créé l'objet dossier_instruction |
888 |
|
|
$this->specificMetadata = $row; |
889 |
|
|
|
890 |
|
|
} |
891 |
|
|
} |
892 |
vpihour |
1978 |
|
893 |
|
|
/** |
894 |
|
|
* Retourne le statut du dossier d'instruction |
895 |
|
|
* @param string $idx Identifiant du dossier d'instruction |
896 |
|
|
* @return string Le statut du dossier d'instruction |
897 |
|
|
*/ |
898 |
softime |
2025 |
function getStatutAutorisationDossier($idx){ |
899 |
vpihour |
1978 |
|
900 |
|
|
$statut = ''; |
901 |
|
|
|
902 |
|
|
//Si l'identifiant du dossier d'instruction fourni est correct |
903 |
|
|
if ( $idx != '' ){ |
904 |
|
|
|
905 |
|
|
//On récupère le statut de l'état du dossier à partir de l'identifiant du |
906 |
|
|
//dossier d'instruction |
907 |
|
|
$sql = "SELECT etat.statut |
908 |
|
|
FROM ".DB_PREFIXE."dossier |
909 |
|
|
LEFT JOIN |
910 |
|
|
".DB_PREFIXE."etat |
911 |
|
|
ON |
912 |
|
|
dossier.etat = etat.etat |
913 |
|
|
WHERE dossier ='".$idx."'"; |
914 |
|
|
$statut = $this->db->getOne($sql); |
915 |
softime |
2025 |
$this->f->addToLog("getStatutAutorisationDossier() : db->getOne(\"".$sql."\")", VERBOSE_MODE); |
916 |
vpihour |
1978 |
if ( database::isError($statut)){ |
917 |
|
|
die(); |
918 |
|
|
} |
919 |
|
|
} |
920 |
|
|
return $statut; |
921 |
|
|
} |
922 |
fraynaud |
3 |
}// fin classe |
923 |
nhaye |
509 |
?> |