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 |
|
|
"numDemandeAutor" => "getDossierAutorisation", |
18 |
|
|
"anneemoisDemandeAutori" => "getDateDemandeInitiale", |
19 |
|
|
"typeInstructionAutorisation" => "getDossierInstructionType", |
20 |
|
|
"statutAutorisation" => "getStatut", |
21 |
|
|
"typeAutorisation" => "getDossierAutorisationType", |
22 |
|
|
"dateEvenementDocument" => "getDateEvenement", |
23 |
|
|
"groupeInstruction" => 'getGroupeInstruction', |
24 |
|
|
"title" => 'getTypeDoc', |
25 |
nhaye |
1935 |
), |
26 |
softime |
2002 |
"fichier" => array( |
27 |
|
|
"dossier" => "getDossier", |
28 |
softime |
2016 |
"dossier_version" => "getDossierVersion", |
29 |
|
|
"numDemandeAutor" => "getDossierAutorisation", |
30 |
|
|
"anneemoisDemandeAutori" => "getDateDemandeInitiale", |
31 |
|
|
"typeInstructionAutorisation" => "getDossierInstructionType", |
32 |
|
|
"statutAutorisation" => "getStatut", |
33 |
|
|
"typeAutorisation" => "getDossierAutorisationType", |
34 |
|
|
"dateEvenementDocument" => "getDateEvenement", |
35 |
|
|
"groupeInstruction" => 'getGroupeInstruction', |
36 |
|
|
"title" => 'getTypeDoc', |
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 |
|
|
$statut = $this->getStatutDossier($idxformulaire); |
106 |
|
|
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 |
|
|
$this->getStatutDossier($this->getParameter("idxformulaire")) == "cloture" && |
151 |
|
|
( |
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 |
softime |
2002 |
|
407 |
|
|
if ($this->retourformulaire == "demande_avis_encours") { |
408 |
|
|
|
409 |
|
|
} |
410 |
fraynaud |
20 |
} |
411 |
fmichon |
1170 |
|
412 |
|
|
// TRIGGER AVANT MODIFICATION DE DONNEES |
413 |
|
|
// trigger before modification data |
414 |
|
|
function triggerajouter($id,&$db,$val,$DEBUG) { |
415 |
|
|
// |
416 |
|
|
$this->calculDateLimite(); |
417 |
vpihour |
1784 |
|
418 |
|
|
// Identifiant du type de courrier |
419 |
|
|
$idTypeCourrier = '12'; |
420 |
|
|
$idCourrier = str_pad($this->valF["consultation"], 10, "0", STR_PAD_LEFT); |
421 |
|
|
// Code barres |
422 |
|
|
$this->valF["code_barres"] = $idTypeCourrier . $idCourrier; |
423 |
fmichon |
1170 |
} |
424 |
|
|
|
425 |
|
|
// |
426 |
|
|
function triggermodifier($id,&$db,$val,$DEBUG) { |
427 |
|
|
// |
428 |
|
|
$this->calculDateLimite(); |
429 |
|
|
} |
430 |
|
|
|
431 |
|
|
// |
432 |
nhaye |
532 |
function triggerajouterapres($id,&$db,$val,$DEBUG) { |
433 |
|
|
|
434 |
|
|
// Verification de la demande de notif par mail |
435 |
fmichon |
1168 |
$sql= "SELECT abrege, libelle, notification_email, email FROM ".DB_PREFIXE. |
436 |
nhaye |
532 |
"service WHERE service ='".$this->valF['service']."'"; |
437 |
|
|
$res=$db->query($sql); |
438 |
|
|
$notif = $res->fetchrow(DB_FETCHMODE_ASSOC); |
439 |
|
|
if (database :: isError($sql))die($res->getMessage()."erreur ".$sql); |
440 |
|
|
if ($notif['notification_email']=='t') { |
441 |
|
|
|
442 |
|
|
// Recuperation des infos du dossier |
443 |
|
|
$sql= "SELECT dossier, terrain_adresse, terrain_adresse_complement, terrain_cp, terrain_ville |
444 |
|
|
FROM ".DB_PREFIXE."dossier WHERE dossier ='".$this->valF['dossier']."'"; |
445 |
|
|
$res=$db->query($sql); |
446 |
|
|
$dossier = $res->fetchrow(DB_FETCHMODE_ASSOC); |
447 |
|
|
|
448 |
|
|
// Definition des parametres d'envoi du mail |
449 |
|
|
$title=_("Consultation de services : dossier no")." ".$dossier['dossier']; |
450 |
|
|
$corps=_("Votre service est consulte concernant le dossier no")." ".$dossier['dossier']."<br/>". |
451 |
|
|
_("Il concerne le terrain situe a l'adresse :")." ".utf8_decode($dossier['terrain_adresse']). |
452 |
|
|
" ".utf8_decode($dossier['terrain_adresse_complement'])." ".utf8_decode($dossier['terrain_cp'])." ".$dossier['terrain_ville']."<br/>". |
453 |
fmichon |
668 |
_("Vous pouvez y acceder et rendre votre avis a l'adresse")." <a href='".$this->f->getParameter('services_consultes_lien_interne'). |
454 |
nhaye |
532 |
"scr/form.php?obj=consultation&action=3&idx=".$this->valF['consultation']."' >". |
455 |
fmichon |
668 |
_("Lien interne (services VDM)")."</a> "._("ou")." <a href='".$this->f->getParameter('services_consultes_lien_externe'). |
456 |
nhaye |
532 |
"scr/form.php?obj=consultation&action=3&idx=".$this->valF['consultation']."' >". |
457 |
|
|
_("Lien externe (hors VDM)")."</a>"; |
458 |
|
|
// Envoi du mail avec message de retour |
459 |
|
|
if($this->f->sendMail($title, $corps, $notif['email'])) { |
460 |
fmichon |
1168 |
$this->addToMessage(_("Envoi d'un mail de notification au service")." \"(".$notif['abrege'].") ".$notif["libelle"]."\""); |
461 |
nhaye |
532 |
} else { |
462 |
|
|
$this->addToMessage(_("L'envoi du mail de notification a echoue")); |
463 |
|
|
} |
464 |
|
|
} |
465 |
|
|
|
466 |
fmichon |
1005 |
|
467 |
|
|
// verification si envoi vers ERP est active |
468 |
|
|
if ($this->f->getParameter('option_erp') != "") { |
469 |
|
|
// s'il s'agit de la consultation ERP Secu, ERP Accessibilite, ou |
470 |
|
|
// deenvoie un |
471 |
|
|
// message a ERP |
472 |
|
|
$dossier_erp = $this->getFromDB("SELECT erp FROM ".DB_PREFIXE. |
473 |
|
|
"dossier WHERE dossier = '" .$this->valF['dossier'] . "'"); |
474 |
nhaye |
1140 |
$dossier_nature = $this->getFromDB("SELECT dossier_autorisation_type_detaille.code FROM ".DB_PREFIXE. |
475 |
|
|
"dossier |
476 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation |
477 |
|
|
ON dossier.dossier_autorisation=dossier_autorisation.dossier_autorisation |
478 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation_type_detaille |
479 |
|
|
ON dossier_autorisation.dossier_autorisation_type_detaille |
480 |
|
|
= dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
481 |
|
|
WHERE dossier = '" . $this->valF['dossier'] . "'"); |
482 |
fmichon |
1005 |
if ($dossier_erp == 't' |
483 |
|
|
&& substr($dossier_nature, 0, 2) == $this->f->getParameter('erp_dossier_nature_pc')) { |
484 |
|
|
// envoi du message "Demande d'instruction d'un dossier PC pour un ERP" |
485 |
|
|
if (($this->valF['service'] == $this->f->getParameter('erp_service_accessibilite') |
486 |
|
|
|| $this->valF['service'] == $this->f->getParameter('erp_service_securite'))) { |
487 |
|
|
$msgenque = new MessageEnqueuer(); |
488 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
489 |
|
|
$msgenque->setConsultationIdentifier($this->valF['consultation']); |
490 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_INSTRUCTION_PC); |
491 |
|
|
} |
492 |
|
|
|
493 |
|
|
// envoi du message "Consultation ERP pour conformite" en cas de creation de la |
494 |
|
|
// consultation du service ERP Conformite |
495 |
|
|
if ($this->valF['service'] == $this->f->getParameter('erp_service_conformite')) { |
496 |
|
|
$msgenque = new MessageEnqueuer(); |
497 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
498 |
|
|
$msgenque->setConsultationIdentifier($this->valF['consultation']); |
499 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_CONSULTATION_CONFORMITE); |
500 |
|
|
} |
501 |
mlimic |
936 |
} |
502 |
fmichon |
1005 |
} // fin de if($this->f->getParameter('option_erp')) |
503 |
vpihour |
1930 |
|
504 |
|
|
// Finalisation du document |
505 |
|
|
$this->finaliserAjouter(); |
506 |
nhaye |
532 |
} |
507 |
mlimic |
843 |
|
508 |
mlimic |
936 |
/** |
509 |
|
|
* Fait une requette sql pour extraire la valeur d'un champ, et retourne |
510 |
|
|
* cette valeur |
511 |
|
|
* @param string $sql La requete sql a executer |
512 |
|
|
* @return La valeur du champs cherche, sinon NULL. En cas d'erreur de la BD |
513 |
|
|
* l'execution s'arrete. |
514 |
|
|
*/ |
515 |
|
|
function getFromDB($sql) { |
516 |
|
|
//$sql = "SELECT libelle FROM ".DB_PREFIXE."dossier WHERE dossier = '" . $dossier . "'"; |
517 |
|
|
$res = $this->db->limitquery($sql, 0, 1); |
518 |
vpihour |
1777 |
$this->f->addToLog("getDossierERPSpecification(): db->limitquery(\"". |
519 |
mlimic |
936 |
str_replace(",",", ",$sql)."\", 0, 1);", VERBOSE_MODE); |
520 |
|
|
// Si une erreur survient on die |
521 |
|
|
if (database::isError($res, true)) { |
522 |
|
|
// Appel de la methode de recuperation des erreurs |
523 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), 'instruction'); |
524 |
|
|
} |
525 |
|
|
// retourne la nature du dossier |
526 |
|
|
while ($row =& $res->fetchRow()) { |
527 |
|
|
return $row[0]; |
528 |
|
|
} |
529 |
|
|
// la nature n'etait pas trouve, ce qui ne devrait pas se passer |
530 |
|
|
return NULL; |
531 |
|
|
|
532 |
|
|
} |
533 |
|
|
|
534 |
fraynaud |
20 |
// ============================================= |
535 |
|
|
// calcul de date avec ajout de mois (delais) |
536 |
|
|
// [add months (delay) and calculation final date] |
537 |
|
|
// limite ? => voir fonction instruction |
538 |
|
|
// ============================================= |
539 |
|
|
function moisdate($date,$delaimois) { |
540 |
|
|
// rajout de mois à une date (moins de 12) |
541 |
|
|
$temp = explode("-" , $date); |
542 |
|
|
$jour = (int) $temp[2]; |
543 |
|
|
$mois = (int) $temp[1]; |
544 |
|
|
$annee = (int) $temp[0]; |
545 |
|
|
$mois=$mois+$delaimois; |
546 |
|
|
// calcul mois annee |
547 |
|
|
if($mois>12){ |
548 |
|
|
$mois=$mois-12; |
549 |
|
|
$annee=$annee+1; |
550 |
|
|
} |
551 |
|
|
// Calcul du nombre de jours dans le mois sélectionné |
552 |
|
|
switch($mois) { |
553 |
|
|
case "2": |
554 |
|
|
if ($annee % 4 == 0 && $annee % 100 != 0 || $annee % 400 == 0) |
555 |
|
|
$jourmax = 29; |
556 |
|
|
else |
557 |
|
|
$jourmax = 28; |
558 |
|
|
break; |
559 |
|
|
case "4": |
560 |
|
|
case "6": |
561 |
|
|
case "9": |
562 |
|
|
case "11": |
563 |
|
|
$jourmax = 30; |
564 |
|
|
break; |
565 |
|
|
default: |
566 |
|
|
$jourmax = 31; |
567 |
|
|
} |
568 |
|
|
if ($jour > $jourmax) |
569 |
|
|
$jour = $jourmax; |
570 |
|
|
return $annee."-".$mois."-".$jour ; |
571 |
|
|
} |
572 |
vpihour |
497 |
|
573 |
nhaye |
569 |
// ============================================= |
574 |
vpihour |
497 |
// Ajout du fielset |
575 |
|
|
// Add fieldset |
576 |
|
|
// ============================================= |
577 |
nhaye |
569 |
function setLayout(&$form, $maj){ |
578 |
fmichon |
671 |
|
579 |
|
|
// Modification layout : écran de retour d'avis permettant |
580 |
|
|
// uniquement la saisie des trois champs : avis, motivation et fichier |
581 |
|
|
if ($this->f->isAccredited('consultation_consulter_autre_que_retour_avis')) { |
582 |
|
|
|
583 |
nhaye |
569 |
//Champs sur lequel s'ouvre le fieldset |
584 |
|
|
$form->setBloc('dossier','D',""); |
585 |
|
|
$form->setFieldset('dossier','D',_('Consultation')); |
586 |
|
|
|
587 |
|
|
//Champs sur lequel se ferme le fieldset |
588 |
|
|
$form->setFieldset('date_envoi','F',''); |
589 |
|
|
$form->setBloc('date_envoi','F'); |
590 |
fmichon |
671 |
|
591 |
nhaye |
569 |
} |
592 |
fmichon |
671 |
|
593 |
|
|
// MODE - autre que AJOUTER alors on affiche un fieldset retour |
594 |
|
|
// d'avis |
595 |
|
|
if ($maj != 0) { |
596 |
|
|
|
597 |
nhaye |
569 |
//Champs sur lequel s'ouvre le fieldset |
598 |
|
|
$form->setBloc('date_reception','D',""); |
599 |
|
|
$form->setFieldset('date_reception','D',_('Retour d\'avis')); |
600 |
fmichon |
671 |
|
601 |
nhaye |
569 |
//Champs sur lequel se ferme le fieldset |
602 |
|
|
$form->setFieldset('lu','F',''); |
603 |
|
|
$form->setBloc('lu','F'); |
604 |
fmichon |
671 |
|
605 |
nhaye |
569 |
} |
606 |
|
|
} |
607 |
nhaye |
595 |
|
608 |
|
|
/** Surcharge de la methode retour afin de retourner sur la page de saisie de |
609 |
|
|
* code barre si besoin |
610 |
|
|
**/ |
611 |
|
|
function retour($premier = 0, $recherche = "", $tricol = "") { |
612 |
|
|
$params ="obj=".get_class($this); |
613 |
|
|
if($this->getParameter("retour")=="form") { |
614 |
|
|
$params .= "&idx=".$this->getParameter("idx"); |
615 |
|
|
$params .= "&action=3"; |
616 |
|
|
} |
617 |
|
|
$params .= "&premier=".$this->getParameter("premier"); |
618 |
|
|
$params .= "&tricol=".$this->getParameter("tricol"); |
619 |
|
|
$params .= "&recherche=".$this->getParameter("recherche"); |
620 |
|
|
$params .= "&selectioncol=".$this->getParameter("selectioncol"); |
621 |
|
|
$params .= "&advs_id=".$this->getParameter("advs_id"); |
622 |
|
|
$params .= "&valide=".$this->getParameter("valide"); |
623 |
|
|
echo "\n<a class=\"retour\" "; |
624 |
|
|
echo "href=\""; |
625 |
|
|
// |
626 |
|
|
|
627 |
|
|
if($this->getParameter("retour")=="form" AND !($this->getParameter("validation")>0 AND $this->getParameter("maj")==2 AND $this->correct)) { |
628 |
|
|
echo "form.php?".$params; |
629 |
fmichon |
1666 |
} elseif($this->getParameter("retour")=="suivi_retours_de_consultation") { |
630 |
|
|
echo "../app/suivi_retours_de_consultation.php"; |
631 |
nhaye |
595 |
} else { |
632 |
|
|
echo "tab.php?".$params; |
633 |
|
|
} |
634 |
|
|
// |
635 |
|
|
echo "\""; |
636 |
|
|
echo ">"; |
637 |
|
|
// |
638 |
|
|
echo _("Retour"); |
639 |
|
|
// |
640 |
|
|
echo "</a>\n"; |
641 |
|
|
} |
642 |
fmichon |
938 |
|
643 |
|
|
/** |
644 |
nhaye |
802 |
* Surcharge du bouton retour pour popup |
645 |
|
|
*/ |
646 |
|
|
function retoursousformulaire($idxformulaire, $retourformulaire, $val, |
647 |
|
|
$objsf, $premiersf, $tricolsf, $validation, |
648 |
|
|
$idx, $maj, $retour) { |
649 |
|
|
if($retourformulaire === "demande_avis_encours") { |
650 |
|
|
echo "\n<a class=\"retour\" "; |
651 |
|
|
echo "href=\""; |
652 |
|
|
echo "#"; |
653 |
|
|
echo "\" "; |
654 |
|
|
echo ">"; |
655 |
|
|
// |
656 |
|
|
echo _("Retour"); |
657 |
|
|
// |
658 |
|
|
echo "</a>\n"; |
659 |
|
|
} else { |
660 |
|
|
parent::retoursousformulaire($idxformulaire, $retourformulaire, $val, |
661 |
|
|
$objsf, $premiersf, $tricolsf, $validation, |
662 |
|
|
$idx, $maj, $retour); |
663 |
|
|
} |
664 |
|
|
} |
665 |
vpihour |
1784 |
|
666 |
vpihour |
1881 |
/** |
667 |
|
|
* Ajout des contraintes spécifiques pour l'ajout d'un fichier en retour de |
668 |
|
|
* consultation |
669 |
|
|
*/ |
670 |
|
|
function setSelect(&$form, $maj,&$db,$debug) { |
671 |
|
|
parent::setSelect($form, $maj,$db,$debug); |
672 |
|
|
|
673 |
|
|
//Seulement dans le cas d'un retour d'avis |
674 |
|
|
if($this->retourformulaire == "demande_avis_encours") { |
675 |
|
|
|
676 |
|
|
//Tableau des contraintes spécifiques |
677 |
|
|
$params = array( |
678 |
|
|
"constraint" => array( |
679 |
|
|
"size_max" => 2, |
680 |
|
|
"extension" => ".pdf" |
681 |
|
|
), |
682 |
|
|
); |
683 |
|
|
|
684 |
|
|
$form->setSelect("fichier", $params); |
685 |
|
|
} |
686 |
|
|
} |
687 |
vpihour |
1930 |
|
688 |
|
|
/** |
689 |
|
|
* Finalisation du document lors de l'ajout d'une consultation |
690 |
|
|
*/ |
691 |
|
|
function finaliserAjouter(){ |
692 |
|
|
|
693 |
|
|
//Génération du PDF |
694 |
|
|
$_GET['output'] = "string"; |
695 |
|
|
$_GET['obj'] = "consultation"; |
696 |
|
|
$_GET['idx'] = $this->valF[$this->clePrimaire]; |
697 |
|
|
$f = $this->f; |
698 |
|
|
include '../app/pdf_consultation.php'; |
699 |
|
|
|
700 |
|
|
//Métadonnées du document |
701 |
|
|
$metadata = array( |
702 |
|
|
'filename' => 'consultation_'.$idx.'.pdf', |
703 |
|
|
'mimetype' => 'application/pdf', |
704 |
|
|
'size' => strlen($pdf_output) |
705 |
|
|
); |
706 |
|
|
|
707 |
nhaye |
1935 |
// Récupération des métadonnées calculées après validation |
708 |
nhaye |
1938 |
$spe_metadata = $this->getMetadata("om_fichier_consultation"); |
709 |
nhaye |
1935 |
|
710 |
|
|
$metadata = array_merge($metadata, $spe_metadata); |
711 |
|
|
|
712 |
vpihour |
1930 |
//On ajoute le document et on récupère son uid |
713 |
|
|
$uid = $this->f->storage->create($pdf_output, $metadata); |
714 |
|
|
|
715 |
|
|
//Mise à jour des données |
716 |
|
|
if ( $uid != '' ){ |
717 |
|
|
// Logger |
718 |
|
|
$this->addToLog("finaliserAjouter() - begin", EXTRA_VERBOSE_MODE); |
719 |
|
|
|
720 |
|
|
$valF = array( |
721 |
|
|
"om_final_consultation"=> TRUE, |
722 |
|
|
"om_fichier_consultation"=>$uid); |
723 |
|
|
|
724 |
|
|
// Execution de la requête de modification des donnees de l'attribut |
725 |
|
|
// valF de l'objet dans l'attribut table de l'objet |
726 |
|
|
$res = $this->db->autoExecute(DB_PREFIXE.$this->table, $valF, |
727 |
|
|
DB_AUTOQUERY_UPDATE, $this->getCle($idx)); |
728 |
|
|
$this->addToLog("finaliserAjouter() : db->autoExecute(\"".DB_PREFIXE.$this->table."\", ".print_r($valF, true).", DB_AUTOQUERY_UPDATE, \"".$this->getCle($idx)."\")", VERBOSE_MODE); |
729 |
|
|
// Si une erreur survient |
730 |
|
|
if (database::isError($res)) { |
731 |
|
|
// Appel de la methode de recuperation des erreurs |
732 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), ''); |
733 |
|
|
} else { |
734 |
|
|
// Log |
735 |
|
|
$this->addToLog(_("Requete executee"), VERBOSE_MODE); |
736 |
|
|
// Log |
737 |
|
|
$message = _("Enregistrement")." ".$idx." "; |
738 |
|
|
$message .= _("de la table")." \"".$this->table."\" "; |
739 |
|
|
$message .= "[ ".$this->db->affectedRows()." "; |
740 |
|
|
$message .= _("enregistrement(s) mis a jour")." ]"; |
741 |
|
|
$this->addToLog($message, VERBOSE_MODE); |
742 |
|
|
} |
743 |
|
|
} |
744 |
|
|
} |
745 |
nhaye |
1935 |
|
746 |
|
|
|
747 |
|
|
/** |
748 |
|
|
* Récupération du numéro de dossier d'instruction à ajouter aux métadonnées |
749 |
nhaye |
1949 |
* @return string numéro de dossier d'instruction |
750 |
nhaye |
1935 |
*/ |
751 |
|
|
protected function getDossier() { |
752 |
|
|
if(empty($this->specificMetadata)) { |
753 |
|
|
$this->getSpecificMetadata(); |
754 |
|
|
} |
755 |
|
|
return $this->specificMetadata->dossier; |
756 |
|
|
} |
757 |
|
|
/** |
758 |
softime |
2016 |
* Récupération la version du dossier d'instruction à ajouter aux métadonnées |
759 |
|
|
* @return int Version |
760 |
|
|
*/ |
761 |
|
|
protected function getDossierVersion() { |
762 |
|
|
if(empty($this->specificMetadata)) { |
763 |
|
|
$this->getSpecificMetadata(); |
764 |
|
|
} |
765 |
|
|
return $this->specificMetadata->version; |
766 |
|
|
} |
767 |
|
|
/** |
768 |
nhaye |
1935 |
* Récupération du numéro de dossier d'autorisation à ajouter aux métadonnées |
769 |
nhaye |
1949 |
* @return string numéro de dossier d'autorisation |
770 |
nhaye |
1935 |
*/ |
771 |
|
|
protected function getDossierAutorisation() { |
772 |
|
|
if(empty($this->specificMetadata)) { |
773 |
|
|
$this->getSpecificMetadata(); |
774 |
|
|
} |
775 |
|
|
return $this->specificMetadata->dossier_autorisation; |
776 |
|
|
} |
777 |
|
|
/** |
778 |
|
|
* Récupération de la date de demande initiale du dossier à ajouter aux métadonnées |
779 |
nhaye |
1949 |
* @return date demande initiale |
780 |
nhaye |
1935 |
*/ |
781 |
|
|
protected function getDateDemandeInitiale() { |
782 |
|
|
if(empty($this->specificMetadata)) { |
783 |
|
|
$this->getSpecificMetadata(); |
784 |
|
|
} |
785 |
|
|
return $this->specificMetadata->date_demande_initiale; |
786 |
|
|
} |
787 |
|
|
/** |
788 |
|
|
* Récupération du type de dossier d'instruction à ajouter aux métadonnées |
789 |
nhaye |
1949 |
* @return string type de dossier d'instruction |
790 |
nhaye |
1935 |
*/ |
791 |
|
|
protected function getDossierInstructionType() { |
792 |
|
|
if(empty($this->specificMetadata)) { |
793 |
|
|
$this->getSpecificMetadata(); |
794 |
|
|
} |
795 |
|
|
return $this->specificMetadata->dossier_instruction_type; |
796 |
|
|
} |
797 |
|
|
/** |
798 |
|
|
* Récupération du statut du dossier d'autorisation à ajouter aux métadonnées |
799 |
nhaye |
1949 |
* @return string avis |
800 |
nhaye |
1935 |
*/ |
801 |
|
|
protected function getStatut() { |
802 |
|
|
if(empty($this->specificMetadata)) { |
803 |
|
|
$this->getSpecificMetadata(); |
804 |
|
|
} |
805 |
|
|
return $this->specificMetadata->statut; |
806 |
|
|
} |
807 |
|
|
/** |
808 |
|
|
* Récupération du type de dossier d'autorisation à ajouter aux métadonnées |
809 |
nhaye |
1949 |
* @return string type d'autorisation |
810 |
nhaye |
1935 |
*/ |
811 |
|
|
protected function getDossierAutorisationType() { |
812 |
|
|
if(empty($this->specificMetadata)) { |
813 |
|
|
$this->getSpecificMetadata(); |
814 |
|
|
} |
815 |
|
|
return $this->specificMetadata->dossier_autorisation_type; |
816 |
|
|
} |
817 |
|
|
/** |
818 |
|
|
* Récupération de la date d'ajout de document à ajouter aux métadonnées |
819 |
nhaye |
1949 |
* @return date de l'évènement |
820 |
nhaye |
1935 |
*/ |
821 |
|
|
protected function getDateEvenement() { |
822 |
|
|
return date("d/m/Y"); |
823 |
|
|
} |
824 |
|
|
/** |
825 |
|
|
* Récupération du groupe d'instruction à ajouter aux métadonnées |
826 |
|
|
* @return string Groupe d'instruction |
827 |
|
|
*/ |
828 |
|
|
protected function getGroupeInstruction() { |
829 |
|
|
if(empty($this->specificMetadata)) { |
830 |
|
|
$this->getSpecificMetadata(); |
831 |
|
|
} |
832 |
|
|
return $this->specificMetadata->groupe_instruction; |
833 |
|
|
} |
834 |
softime |
2002 |
/** |
835 |
|
|
* Récupération du type de document à ajouter aux métadonnées |
836 |
|
|
* @return string Type de document |
837 |
|
|
*/ |
838 |
|
|
protected function getTypeDoc() { |
839 |
|
|
if ($this->retourformulaire == "demande_avis_encours") { |
840 |
|
|
return 'Retour de consultation'; |
841 |
|
|
} else { |
842 |
|
|
return 'Demande de consultation'; |
843 |
|
|
} |
844 |
|
|
} |
845 |
nhaye |
1935 |
|
846 |
|
|
/** |
847 |
|
|
* Cette méthode permet de stocker en attribut toutes les métadonnées |
848 |
|
|
* nécessaire à l'ajout d'un document. |
849 |
|
|
*/ |
850 |
|
|
public function getSpecificMetadata() { |
851 |
|
|
if (isset($this->valF["dossier"]) AND $this->valF["dossier"] != "") { |
852 |
|
|
$dossier = $this->valF["dossier"]; |
853 |
|
|
} else { |
854 |
|
|
$dossier = $this->getVal("dossier"); |
855 |
|
|
} |
856 |
|
|
//Requête pour récupérer les informations essentiels sur le dossier d'instruction |
857 |
|
|
$sql = "SELECT dossier.dossier as dossier, |
858 |
|
|
dossier_autorisation.dossier_autorisation as dossier_autorisation, |
859 |
|
|
to_char(dossier.date_demande, 'YYYY/MM') as date_demande_initiale, |
860 |
softime |
2016 |
dossier.version as version, |
861 |
nhaye |
1935 |
dossier_instruction_type.code as dossier_instruction_type, |
862 |
|
|
etat_dossier_autorisation.libelle as statut, |
863 |
|
|
dossier_autorisation_type.code as dossier_autorisation_type, |
864 |
|
|
groupe.code as groupe_instruction |
865 |
|
|
FROM ".DB_PREFIXE."dossier |
866 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_instruction_type |
867 |
|
|
ON dossier.dossier_instruction_type = dossier_instruction_type.dossier_instruction_type |
868 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation |
869 |
|
|
ON dossier.dossier_autorisation = dossier_autorisation.dossier_autorisation |
870 |
|
|
LEFT JOIN ".DB_PREFIXE."etat_dossier_autorisation |
871 |
|
|
ON dossier_autorisation.etat_dossier_autorisation = etat_dossier_autorisation.etat_dossier_autorisation |
872 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation_type_detaille |
873 |
|
|
ON dossier_autorisation.dossier_autorisation_type_detaille = dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
874 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation_type |
875 |
|
|
ON dossier_autorisation_type_detaille.dossier_autorisation_type = dossier_autorisation_type.dossier_autorisation_type |
876 |
|
|
LEFT JOIN ".DB_PREFIXE."groupe |
877 |
|
|
ON dossier_autorisation_type.groupe = groupe.groupe |
878 |
|
|
WHERE dossier.dossier = '".$dossier."'"; |
879 |
|
|
$res = $this->db->query($sql); |
880 |
|
|
$this->f->addToLog("obj/document_numerise.class.php : db->query(".$sql.")", VERBOSE_MODE); |
881 |
|
|
if ( database::isError($res)){ |
882 |
|
|
die(); |
883 |
|
|
} |
884 |
|
|
|
885 |
|
|
//Le résultat est récupéré dans un objet |
886 |
|
|
$row =& $res->fetchRow(DB_FETCHMODE_OBJECT); |
887 |
|
|
|
888 |
|
|
//Si il y a un résultat |
889 |
|
|
if ($row !== null) { |
890 |
|
|
|
891 |
|
|
//Alors on créé l'objet dossier_instruction |
892 |
|
|
$this->specificMetadata = $row; |
893 |
|
|
|
894 |
|
|
} |
895 |
|
|
} |
896 |
vpihour |
1978 |
|
897 |
|
|
/** |
898 |
|
|
* Retourne le statut du dossier d'instruction |
899 |
|
|
* @param string $idx Identifiant du dossier d'instruction |
900 |
|
|
* @return string Le statut du dossier d'instruction |
901 |
|
|
*/ |
902 |
|
|
function getStatutDossier($idx){ |
903 |
|
|
|
904 |
|
|
$statut = ''; |
905 |
|
|
|
906 |
|
|
//Si l'identifiant du dossier d'instruction fourni est correct |
907 |
|
|
if ( $idx != '' ){ |
908 |
|
|
|
909 |
|
|
//On récupère le statut de l'état du dossier à partir de l'identifiant du |
910 |
|
|
//dossier d'instruction |
911 |
|
|
$sql = "SELECT etat.statut |
912 |
|
|
FROM ".DB_PREFIXE."dossier |
913 |
|
|
LEFT JOIN |
914 |
|
|
".DB_PREFIXE."etat |
915 |
|
|
ON |
916 |
|
|
dossier.etat = etat.etat |
917 |
|
|
WHERE dossier ='".$idx."'"; |
918 |
|
|
$statut = $this->db->getOne($sql); |
919 |
|
|
$this->f->addToLog("getStatutDossier() : db->getOne(\"".$sql."\")", VERBOSE_MODE); |
920 |
|
|
if ( database::isError($statut)){ |
921 |
|
|
die(); |
922 |
|
|
} |
923 |
|
|
} |
924 |
|
|
return $statut; |
925 |
|
|
} |
926 |
fraynaud |
3 |
}// fin classe |
927 |
nhaye |
509 |
?> |