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