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 |
vpihour |
2104 |
$this->parameters["actions"]["modifier"] = NULL; |
59 |
|
|
$this->parameters["actions"]["supprimer"] = NULL; |
60 |
|
|
$this->actions_sup["finalisation"] = NULL; |
61 |
|
|
$this->actions_sup["definalisation"] = NULL; |
62 |
|
|
$this->actions_sup["lu"] = NULL; |
63 |
fmichon |
943 |
} |
64 |
|
|
// Si une action 'lu' est présente et que le champ lu est à true |
65 |
|
|
// on supprime l'action |
66 |
|
|
if (isset($this->actions_sup["lu"]) |
67 |
|
|
&& isset($this->val[array_search("lu", $this->champs)]) |
68 |
|
|
&& $this->val[array_search("lu", $this->champs)]== "t") { |
69 |
|
|
unset($this->actions_sup["lu"]); |
70 |
|
|
} |
71 |
vpihour |
1974 |
|
72 |
|
|
//Si le document est déjà finalisé, le lien de l'édition est celui du stockage |
73 |
vpihour |
2603 |
$om_final_consultation = $this->getVal("om_final_consultation"); |
74 |
|
|
if ( $om_final_consultation== "t" ){ |
75 |
|
|
|
76 |
vpihour |
1974 |
//On affiche le bon lien pour l'édition |
77 |
|
|
$this->actions_sup["pdfetat"]["lien"] = "../spg/file.php?id="; |
78 |
|
|
$this->actions_sup["pdfetat"]["id"] = |
79 |
|
|
"&obj=consultation&champ=om_fichier_consultation"; |
80 |
vpihour |
2603 |
//On cache les liens d'action |
81 |
vpihour |
1986 |
$this->parameters["actions"]["modifier"] = NULL; |
82 |
|
|
$this->parameters["actions"]["supprimer"] = NULL; |
83 |
vpihour |
2603 |
$this->actions_sup["finalisation"] = NULL; |
84 |
vpihour |
1974 |
} |
85 |
|
|
//Si le document n'est pas finalisé, le lien de l'édition est le lien de |
86 |
|
|
//génération à la volée |
87 |
vpihour |
2603 |
if ( $om_final_consultation!= "t" ){ |
88 |
vpihour |
1974 |
|
89 |
|
|
//On affiche le bon lien pour l'édition |
90 |
|
|
$this->actions_sup["pdfetat"]["lien"] = "../app/pdf_consultation.php?idx="; |
91 |
|
|
$this->actions_sup["pdfetat"]["id"] = "&obj=consultation"; |
92 |
vpihour |
2603 |
$this->actions_sup["definalisation"] = NULL; |
93 |
|
|
if( $this->f->isUserInstructeur() ){ |
94 |
|
|
$this->parameters["actions"]["modifier"] = NULL; |
95 |
|
|
} |
96 |
vpihour |
1974 |
} |
97 |
vpihour |
1978 |
|
98 |
|
|
$idxformulaire = $this->getParameter("idxformulaire"); |
99 |
|
|
$retourformulaire = $this->getParameter("retourformulaire"); |
100 |
|
|
//Si le dossier d'instruction auquel est rattachée la consultation est |
101 |
|
|
//cloturé, on affiche pas les liens du portlet |
102 |
|
|
if ( $idxformulaire != '' && |
103 |
|
|
( |
104 |
|
|
$retourformulaire == 'dossier' || |
105 |
|
|
$retourformulaire == 'dossier_instruction' || |
106 |
|
|
$retourformulaire == 'dossier_instruction_mes_encours' || |
107 |
|
|
$retourformulaire == 'dossier_instruction_tous_encours' || |
108 |
|
|
$retourformulaire == 'dossier_instruction_mes_clotures' || |
109 |
|
|
$retourformulaire == 'dossier_instruction_tous_clotures' |
110 |
|
|
)){ |
111 |
|
|
|
112 |
|
|
//On récuppère le statut du dossier d'instruction |
113 |
vpihour |
2039 |
$statut = $this->f->getStatutDossier($idxformulaire); |
114 |
vpihour |
1978 |
if ( $this->f->isUserInstructeur() && $statut == "cloture" ){ |
115 |
|
|
|
116 |
|
|
//On cache le lien de modification |
117 |
|
|
$this->parameters["actions"]["modifier"] = NULL; |
118 |
|
|
$this->parameters["actions"]["supprimer"] = NULL; |
119 |
|
|
$this->actions_sup["finalisation"] = NULL; |
120 |
|
|
$this->actions_sup["definalisation"] = NULL; |
121 |
|
|
$this->actions_sup["lu"] = NULL; |
122 |
|
|
} |
123 |
|
|
} |
124 |
fmichon |
943 |
} |
125 |
|
|
|
126 |
|
|
/** |
127 |
|
|
* Cette methode est à surcharger elle permet de tester dans chaque classe |
128 |
|
|
* des droits des droits spécifiques en fonction des données |
129 |
|
|
*/ |
130 |
|
|
function canAccess() { |
131 |
|
|
// Si l'utilisateur est un utilisateur de service externe |
132 |
|
|
// on vérifie qu'il peut accéder à la consultation |
133 |
softime |
2120 |
if ($this->f->isUserService()) { |
134 |
fmichon |
943 |
// On compare l'id du service de la consultation |
135 |
|
|
// aux id des services de utilisateur connecté |
136 |
|
|
foreach($this->f->om_utilisateur['service'] as $service) { |
137 |
|
|
if($this->val[array_search("service",$this->champs)]===$service['service']) { |
138 |
|
|
return true; |
139 |
|
|
} |
140 |
|
|
} |
141 |
fmichon |
1088 |
// |
142 |
|
|
$this->f->addToLog("canAccess(): utilisateur de service sur une consultation d'un autre service", EXTRA_VERBOSE_MODE); |
143 |
fmichon |
943 |
return false; |
144 |
|
|
} |
145 |
|
|
// Si l'utilisateur est un intructeur qui ne correspond pas à la |
146 |
|
|
// division du dossier |
147 |
|
|
if ($this->f->isUserInstructeur() |
148 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier() |
149 |
|
|
&& $this->getParameter("maj") != 3) { |
150 |
|
|
// |
151 |
fmichon |
1088 |
$this->f->addToLog("canAccess(): utilisateur instructeur sur un dossier d'une autre division", EXTRA_VERBOSE_MODE); |
152 |
fmichon |
943 |
return false; |
153 |
|
|
} |
154 |
vpihour |
1978 |
|
155 |
|
|
$retourformulaire = $this->getParameter("retourformulaire"); |
156 |
|
|
// Si l'utilisateur est un instructeur et que le dossier est cloturé |
157 |
|
|
if ( $this->f->isUserInstructeur() && |
158 |
vpihour |
2039 |
$this->f->getStatutDossier($this->getParameter("idxformulaire")) == "cloture" && |
159 |
vpihour |
1978 |
( |
160 |
|
|
$retourformulaire == 'dossier' || |
161 |
|
|
$retourformulaire == 'dossier_instruction' || |
162 |
|
|
$retourformulaire == 'dossier_instruction_mes_encours' || |
163 |
|
|
$retourformulaire == 'dossier_instruction_tous_encours' || |
164 |
|
|
$retourformulaire == 'dossier_instruction_mes_clotures' || |
165 |
|
|
$retourformulaire == 'dossier_instruction_tous_clotures' |
166 |
|
|
) && |
167 |
|
|
$this->getParameter("maj") != 3) { |
168 |
|
|
|
169 |
|
|
return false; |
170 |
|
|
} |
171 |
fmichon |
943 |
// |
172 |
|
|
return true; |
173 |
|
|
} |
174 |
|
|
|
175 |
|
|
/** |
176 |
fmichon |
1908 |
* Cette variable permet de stocker le résultat de la méthode |
177 |
|
|
* getDivisionFromDossier() afin de ne pas effectuer le recalcul à chacun de |
178 |
|
|
* ces appels. |
179 |
|
|
* @var string Code de la division du dossier en cours |
180 |
fmichon |
943 |
*/ |
181 |
fmichon |
1908 |
var $_division_from_dossier = NULL; |
182 |
|
|
|
183 |
|
|
/** |
184 |
|
|
* Cette méthode permet de récupérer le code de division correspondant |
185 |
|
|
* au dossier sur lequel on se trouve. |
186 |
|
|
* |
187 |
|
|
* @return string Code de la division du dossier en cours |
188 |
|
|
*/ |
189 |
fmichon |
943 |
function getDivisionFromDossier() { |
190 |
fmichon |
1908 |
|
191 |
|
|
// Cette méthode peut être appelée plusieurs fois lors d'une requête. |
192 |
|
|
// Pour éviter de refaire le traitement de recherche de la division |
193 |
|
|
// alors on vérifie si nous ne l'avons pas déjà calculé. |
194 |
|
|
if ($this->_division_from_dossier != NULL) { |
195 |
|
|
// Logger |
196 |
|
|
$this->addToLog("getDivisionFromDossier(): retour de la valeur déjà calculée - '".$this->_division_from_dossier."'", EXTRA_VERBOSE_MODE); |
197 |
|
|
// On retourne la valeur déjà calculée |
198 |
|
|
return $this->_division_from_dossier; |
199 |
|
|
} |
200 |
|
|
|
201 |
|
|
// Par défaut, on définit la valeur du dossier à NULL |
202 |
|
|
$dossier = NULL; |
203 |
|
|
// Test sur le mode et le contexte du formulaire |
204 |
|
|
if ($this->getParameter("maj") == 0 |
205 |
|
|
&& ($this->getParameter("retourformulaire") == "dossier" |
206 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction" |
207 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_encours" |
208 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_encours" |
209 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_clotures" |
210 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_clotures")) { |
211 |
|
|
// Si on se trouve en mode AJOUT (seul mode où l'enregistrement |
212 |
|
|
// n'existe pas en base de données) ET que nous nous trouvons |
213 |
|
|
// dans le contexte d'un dossier d'instruction alors on récupère |
214 |
|
|
// le numéro de dossier depuis le paramètre 'idxformulaire' |
215 |
|
|
$dossier = $this->getParameter("idxformulaire"); |
216 |
fmichon |
1088 |
} else { |
217 |
fmichon |
1908 |
// Sinon on récupère le numéro de dossier dans le champs dossier de |
218 |
|
|
// l'enregistrement (en base de données) |
219 |
|
|
$dossier = $this->getVal("dossier"); |
220 |
fmichon |
943 |
} |
221 |
fmichon |
1088 |
|
222 |
fmichon |
1908 |
// On appelle la méthode de la classe utils qui renvoi le code de la |
223 |
|
|
// division d'un dossier, on la stocke pour ne pas refaire le calcul au |
224 |
|
|
// prochain appel de cette méthode |
225 |
|
|
$this->_division_from_dossier = $this->f->getDivisionFromDossier($dossier); |
226 |
|
|
// Logger |
227 |
|
|
$this->addToLog("getDivisionFromDossier(): retour de la valeur nouvellement calculée - '".$this->_division_from_dossier."'", EXTRA_VERBOSE_MODE); |
228 |
|
|
// On retourne la valeur retournée |
229 |
|
|
return $this->_division_from_dossier; |
230 |
|
|
|
231 |
fmichon |
943 |
} |
232 |
|
|
|
233 |
|
|
// }}} |
234 |
|
|
|
235 |
fraynaud |
20 |
function setValsousformulaire(&$form,$maj,$validation,$idxformulaire,$retourformulaire,$typeformulaire){ |
236 |
nhaye |
1683 |
// ajout du retourformulaire aux attributs de l'objet |
237 |
|
|
$this->retourformulaire = $retourformulaire; |
238 |
fraynaud |
20 |
if ($validation==0) { |
239 |
|
|
if ($maj == 0){ |
240 |
nhaye |
569 |
$form->setVal("dossier", $idxformulaire); |
241 |
|
|
$form->setVal("date_envoi",date('d/m/Y')); |
242 |
fraynaud |
20 |
} |
243 |
nhaye |
587 |
if($maj == 1) { |
244 |
nhaye |
594 |
if($this->f->isAccredited('consultation_retour_avis_suivi') OR |
245 |
|
|
$this->f->isAccredited('consultation_retour_avis_service')) { |
246 |
|
|
$form->setVal("date_retour",date('d/m/Y')); |
247 |
|
|
} |
248 |
nhaye |
587 |
} |
249 |
fraynaud |
20 |
} |
250 |
|
|
} |
251 |
nhaye |
587 |
|
252 |
|
|
function setVal(&$form, $maj, $validation, &$db) { |
253 |
|
|
if($maj == 1) { |
254 |
|
|
$form->setVal("date_retour",date('d/m/Y')); |
255 |
|
|
} |
256 |
|
|
} |
257 |
fraynaud |
20 |
|
258 |
nhaye |
561 |
function setvalF($val) { |
259 |
fmichon |
1730 |
// |
260 |
nhaye |
561 |
parent::setValF($val); |
261 |
fmichon |
1730 |
// |
262 |
|
|
if ($this->getParameter('maj') == 0) { |
263 |
|
|
// |
264 |
|
|
if (isset($this->valF["date_envoi"])) { |
265 |
|
|
$this->valF["date_reception"] = $this->valF["date_envoi"]; |
266 |
|
|
} |
267 |
|
|
// |
268 |
fmichon |
1172 |
$this->valF["lu"] = true; |
269 |
nhaye |
587 |
} |
270 |
nhaye |
598 |
|
271 |
nhaye |
561 |
// Si un retour d'avis est modifie on passe "lu" a false |
272 |
nhaye |
598 |
if($this->getParameter('maj')==1 AND ( |
273 |
|
|
$this->val[array_search("avis_consultation",$this->champs)] != $val["avis_consultation"] OR |
274 |
|
|
$this->val[array_search("date_retour",$this->champs)] != $val["date_retour"] OR |
275 |
|
|
$this->val[array_search("motivation",$this->champs)] != $val["motivation"] OR |
276 |
nhaye |
674 |
$this->val[array_search("fichier",$this->champs)] != $val["fichier"]) |
277 |
nhaye |
598 |
) { |
278 |
|
|
$this->valF["lu"]=false; |
279 |
nhaye |
561 |
} |
280 |
nhaye |
675 |
} |
281 |
fmichon |
1730 |
|
282 |
|
|
function setLib(&$form, $maj) { |
283 |
|
|
// |
284 |
|
|
parent::setLib($form, $maj); |
285 |
|
|
// |
286 |
|
|
$form->setLib($this->clePrimaire, _("id")); |
287 |
|
|
} |
288 |
|
|
|
289 |
fraynaud |
20 |
function setType(&$form,$maj) { |
290 |
fmichon |
671 |
// Appel du parent |
291 |
nhaye |
459 |
parent::setType($form,$maj); |
292 |
softime |
2112 |
$form->setType('dossier', 'hidden'); |
293 |
fmichon |
671 |
// MODE - AJOUTER |
294 |
|
|
if ($maj == 0) { |
295 |
|
|
// On cache alors tous les champs que nous ne voulons pas voir |
296 |
|
|
// apparaître dans le formulaire d'ajout (principalement les |
297 |
|
|
// informations sur le retour d'avis) |
298 |
nmeucci |
2857 |
$form->setType('date_retour', 'hiddendate'); |
299 |
|
|
$form->setType('date_reception', 'hiddendate'); |
300 |
|
|
$form->setType('date_limite', 'hiddendate'); |
301 |
fmichon |
671 |
$form->setType('avis_consultation', 'hidden'); |
302 |
|
|
$form->setType('motivation', 'hidden'); |
303 |
|
|
$form->setType('fichier', 'hidden'); |
304 |
|
|
$form->setType('lu', 'hidden'); |
305 |
|
|
// On permet la modification de certains champs |
306 |
softime |
2112 |
$form->setType('dossier_libelle', 'hiddenstatic'); |
307 |
fmichon |
671 |
$form->setType('service', 'select'); |
308 |
|
|
$form->setType('date_envoi', 'date2'); |
309 |
|
|
} |
310 |
|
|
// MODE - MODIFIER |
311 |
|
|
if ($maj == 1) { |
312 |
|
|
|
313 |
|
|
// On affiche en statique les informations qui ne sont plus |
314 |
|
|
// modifiables |
315 |
softime |
2112 |
$form->setType('dossier_libelle', 'hiddenstatic'); |
316 |
fmichon |
671 |
$form->setType('date_envoi', 'hiddenstaticdate'); |
317 |
|
|
$form->setType('date_limite', 'hiddenstaticdate'); |
318 |
|
|
$form->setType('service', 'selecthiddenstatic'); |
319 |
|
|
|
320 |
|
|
// La date de réception ne peut être modifiée que par un |
321 |
|
|
// utilisateur en ayant spécifiquement la permission |
322 |
|
|
if($this->f->isAccredited('consultation_modifier_date_reception')) { |
323 |
|
|
$form->setType('date_reception', 'date2'); |
324 |
|
|
} else { |
325 |
|
|
$form->setType('date_reception', 'hiddenstaticdate'); |
326 |
|
|
} |
327 |
|
|
|
328 |
|
|
// Le marqueur lu/non lu ne peut être modifié que par un |
329 |
|
|
// utilisateur en ayant spécifiquement la permission |
330 |
|
|
if ($this->f->isAccredited('consultation_modifier_lu')) { |
331 |
|
|
$form->setType('lu', 'checkbox'); |
332 |
|
|
} else { |
333 |
|
|
$form->setType('lu', 'hidden'); |
334 |
|
|
} |
335 |
|
|
|
336 |
|
|
// Gestion du type du widget sur le champ fichier |
337 |
nhaye |
1683 |
if($this->getVal("fichier") == "" OR |
338 |
fmichon |
671 |
$this->f->isAccredited('consultation_modifier_fichier')) { |
339 |
|
|
// Si il n'y a jamais eu de fichier enregistré ou que |
340 |
|
|
// l'utilisateur a spécifiquement les droits pour modifier |
341 |
|
|
// un fichier déjà enregistré alors on positionne un type |
342 |
|
|
// de widget modifiable |
343 |
nmeucci |
2972 |
if ($this->retourformulaire == "demande_avis_encours" |
344 |
|
|
|| $this->retourformulaire == "dossier_qualifier" |
345 |
|
|
|| $this->retourformulaire == "dossier" |
346 |
|
|
|| $this->retourformulaire == "dossier_instruction" |
347 |
|
|
|| $this->retourformulaire == "dossier_instruction_mes_encours" |
348 |
|
|
|| $this->retourformulaire == "dossier_instruction_tous_encours" |
349 |
|
|
|| $this->retourformulaire == "dossier_instruction_mes_clotures" |
350 |
|
|
|| $this->retourformulaire == "dossier_instruction_tous_clotures") { |
351 |
nhaye |
1683 |
$form->setType('fichier', 'upload2'); |
352 |
|
|
} else { |
353 |
|
|
$form->setType('fichier', 'upload'); |
354 |
|
|
} |
355 |
fmichon |
671 |
} else { |
356 |
|
|
// Si non on affiche uniquement le nom du fichier |
357 |
nhaye |
1683 |
$form->setType('fichier', 'file'); |
358 |
fmichon |
671 |
} |
359 |
|
|
|
360 |
|
|
// Modification layout : écran de retour d'avis permettant |
361 |
|
|
// uniquement la saisie des trois champs : avis, motivation et fichier |
362 |
|
|
if (!$this->f->isAccredited('consultation_consulter_autre_que_retour_avis')) { |
363 |
|
|
|
364 |
|
|
// On cache alors tous les champs que nous ne voulons pas voir |
365 |
softime |
2112 |
$form->setType('dossier_libelle', 'hidden'); |
366 |
fmichon |
671 |
$form->setType('service', 'hidden'); |
367 |
nmeucci |
2857 |
$form->setType('date_envoi', 'hiddendate'); |
368 |
|
|
$form->setType('date_retour', 'hiddendate'); |
369 |
|
|
$form->setType('date_reception', 'hiddendate'); |
370 |
|
|
$form->setType('date_limite', 'hiddendate'); |
371 |
nhaye |
561 |
$form->setType('lu', 'hidden'); |
372 |
fmichon |
671 |
|
373 |
fraynaud |
20 |
} |
374 |
vpihour |
1784 |
|
375 |
fraynaud |
20 |
} |
376 |
nhaye |
1895 |
// Mode supprimer |
377 |
|
|
if ($maj == 2) { |
378 |
|
|
$form->setType('fichier', 'filestatic'); |
379 |
|
|
} |
380 |
nhaye |
674 |
// MODE - CONSULTER |
381 |
|
|
if ( $maj == 3 ) { |
382 |
nhaye |
1683 |
$form->setType('fichier', 'file'); |
383 |
nhaye |
674 |
} |
384 |
fmichon |
671 |
//// On cache la clé primaire |
385 |
|
|
//$form->setType('consultation', 'hidden'); |
386 |
fmichon |
1730 |
// |
387 |
|
|
if ($this->getParameter("retourformulaire") == "dossier" |
388 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction" |
389 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_encours" |
390 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_encours" |
391 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_clotures" |
392 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_clotures") { |
393 |
|
|
// |
394 |
softime |
2112 |
$form->setType('dossier_libelle', 'hidden'); |
395 |
fmichon |
1730 |
} |
396 |
vpihour |
1784 |
|
397 |
|
|
$form->setType('code_barres', 'hidden'); |
398 |
vpihour |
1899 |
|
399 |
|
|
//Cache les champs pour la finalisation |
400 |
|
|
$form->setType('om_fichier_consultation', 'hidden'); |
401 |
|
|
$form->setType('om_final_consultation', 'hidden'); |
402 |
fraynaud |
20 |
} |
403 |
|
|
|
404 |
fmichon |
1170 |
// Cette méthode permet de calculer la date limite en fonction de la date |
405 |
|
|
// de réception et du délai de consultation du service consulté |
406 |
|
|
function calculDateLimite() { |
407 |
fraynaud |
20 |
// mise a jour instruction avec evenement [return delay] |
408 |
fmichon |
1170 |
if ($this->valF["date_reception"] != "") { |
409 |
|
|
// |
410 |
|
|
$sql = " select delai from ".DB_PREFIXE."service "; |
411 |
|
|
$sql .= " where service='".$this->valF["service"]."' "; |
412 |
|
|
// |
413 |
|
|
$delai = $this->db->getOne($sql); |
414 |
|
|
$this->addToLog("triggerajouter(): db->getone(\"".$sql."\")", VERBOSE_MODE); |
415 |
|
|
// |
416 |
softime |
2771 |
$this->valF["date_limite"] = $this->f->mois_date($this->valF["date_reception"], $delai); |
417 |
fmichon |
1170 |
// |
418 |
nhaye |
532 |
$this->addToMessage(_("delai")." ". |
419 |
fraynaud |
41 |
_("retour")." ".$delai." "._("mois")." -> ". |
420 |
fmichon |
1170 |
_("retour")." ".date("d/m/Y", strtotime($this->valF["date_limite"]))); |
421 |
fraynaud |
41 |
} |
422 |
fraynaud |
20 |
} |
423 |
fmichon |
1170 |
|
424 |
|
|
// TRIGGER AVANT MODIFICATION DE DONNEES |
425 |
|
|
// trigger before modification data |
426 |
|
|
function triggerajouter($id,&$db,$val,$DEBUG) { |
427 |
|
|
// |
428 |
|
|
$this->calculDateLimite(); |
429 |
vpihour |
1784 |
|
430 |
|
|
// Identifiant du type de courrier |
431 |
|
|
$idTypeCourrier = '12'; |
432 |
|
|
$idCourrier = str_pad($this->valF["consultation"], 10, "0", STR_PAD_LEFT); |
433 |
|
|
// Code barres |
434 |
|
|
$this->valF["code_barres"] = $idTypeCourrier . $idCourrier; |
435 |
fmichon |
1170 |
} |
436 |
|
|
|
437 |
|
|
// |
438 |
|
|
function triggermodifier($id,&$db,$val,$DEBUG) { |
439 |
|
|
// |
440 |
|
|
$this->calculDateLimite(); |
441 |
|
|
} |
442 |
|
|
|
443 |
|
|
// |
444 |
nhaye |
532 |
function triggerajouterapres($id,&$db,$val,$DEBUG) { |
445 |
|
|
|
446 |
|
|
// Verification de la demande de notif par mail |
447 |
fmichon |
1168 |
$sql= "SELECT abrege, libelle, notification_email, email FROM ".DB_PREFIXE. |
448 |
nhaye |
532 |
"service WHERE service ='".$this->valF['service']."'"; |
449 |
|
|
$res=$db->query($sql); |
450 |
|
|
$notif = $res->fetchrow(DB_FETCHMODE_ASSOC); |
451 |
|
|
if (database :: isError($sql))die($res->getMessage()."erreur ".$sql); |
452 |
|
|
if ($notif['notification_email']=='t') { |
453 |
|
|
|
454 |
|
|
// Recuperation des infos du dossier |
455 |
softime |
2081 |
$sql= "SELECT dossier, terrain_adresse_voie_numero, terrain_adresse_voie, terrain_adresse_code_postal, terrain_adresse_localite |
456 |
nhaye |
532 |
FROM ".DB_PREFIXE."dossier WHERE dossier ='".$this->valF['dossier']."'"; |
457 |
|
|
$res=$db->query($sql); |
458 |
|
|
$dossier = $res->fetchrow(DB_FETCHMODE_ASSOC); |
459 |
|
|
|
460 |
|
|
// Definition des parametres d'envoi du mail |
461 |
|
|
$title=_("Consultation de services : dossier no")." ".$dossier['dossier']; |
462 |
|
|
$corps=_("Votre service est consulte concernant le dossier no")." ".$dossier['dossier']."<br/>". |
463 |
softime |
2081 |
_("Il concerne le terrain situe a l'adresse :")." ".$dossier['terrain_adresse_voie_numero']. |
464 |
|
|
" ".$dossier['terrain_adresse_voie']." ".$dossier['terrain_adresse_code_postal']." ".$dossier['terrain_adresse_localite']."<br/>". |
465 |
fmichon |
668 |
_("Vous pouvez y acceder et rendre votre avis a l'adresse")." <a href='".$this->f->getParameter('services_consultes_lien_interne'). |
466 |
nhaye |
532 |
"scr/form.php?obj=consultation&action=3&idx=".$this->valF['consultation']."' >". |
467 |
fmichon |
668 |
_("Lien interne (services VDM)")."</a> "._("ou")." <a href='".$this->f->getParameter('services_consultes_lien_externe'). |
468 |
nhaye |
532 |
"scr/form.php?obj=consultation&action=3&idx=".$this->valF['consultation']."' >". |
469 |
|
|
_("Lien externe (hors VDM)")."</a>"; |
470 |
|
|
// Envoi du mail avec message de retour |
471 |
softime |
2084 |
if($this->f->sendMail(iconv("UTF-8", "CP1252", $title), iconv("UTF-8", "CP1252", $corps), iconv("UTF-8", "CP1252", $notif['email']))) { |
472 |
fmichon |
1168 |
$this->addToMessage(_("Envoi d'un mail de notification au service")." \"(".$notif['abrege'].") ".$notif["libelle"]."\""); |
473 |
nhaye |
532 |
} else { |
474 |
|
|
$this->addToMessage(_("L'envoi du mail de notification a echoue")); |
475 |
|
|
} |
476 |
|
|
} |
477 |
|
|
|
478 |
fmichon |
1005 |
|
479 |
|
|
// verification si envoi vers ERP est active |
480 |
|
|
if ($this->f->getParameter('option_erp') != "") { |
481 |
|
|
// s'il s'agit de la consultation ERP Secu, ERP Accessibilite, ou |
482 |
|
|
// deenvoie un |
483 |
|
|
// message a ERP |
484 |
|
|
$dossier_erp = $this->getFromDB("SELECT erp FROM ".DB_PREFIXE. |
485 |
|
|
"dossier WHERE dossier = '" .$this->valF['dossier'] . "'"); |
486 |
nhaye |
1140 |
$dossier_nature = $this->getFromDB("SELECT dossier_autorisation_type_detaille.code FROM ".DB_PREFIXE. |
487 |
|
|
"dossier |
488 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation |
489 |
|
|
ON dossier.dossier_autorisation=dossier_autorisation.dossier_autorisation |
490 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation_type_detaille |
491 |
|
|
ON dossier_autorisation.dossier_autorisation_type_detaille |
492 |
|
|
= dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
493 |
|
|
WHERE dossier = '" . $this->valF['dossier'] . "'"); |
494 |
fmichon |
1005 |
if ($dossier_erp == 't' |
495 |
|
|
&& substr($dossier_nature, 0, 2) == $this->f->getParameter('erp_dossier_nature_pc')) { |
496 |
|
|
// envoi du message "Demande d'instruction d'un dossier PC pour un ERP" |
497 |
|
|
if (($this->valF['service'] == $this->f->getParameter('erp_service_accessibilite') |
498 |
|
|
|| $this->valF['service'] == $this->f->getParameter('erp_service_securite'))) { |
499 |
|
|
$msgenque = new MessageEnqueuer(); |
500 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
501 |
|
|
$msgenque->setConsultationIdentifier($this->valF['consultation']); |
502 |
vpihour |
2842 |
$return = $msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_INSTRUCTION_PC); |
503 |
|
|
//Si une erreur s'est produite on arrête le traitement et on |
504 |
|
|
//retourne une erreur |
505 |
|
|
if ($return !== 0){ |
506 |
|
|
|
507 |
|
|
$this->addToMessage(_("Une erreur s'est produite lors de ". |
508 |
|
|
"l'envoi du message au referentiel ERP. Merci de ". |
509 |
|
|
"contacter votre administrateur")); |
510 |
|
|
//On ne valide pas le formulaire |
511 |
vpihour |
2877 |
$this->addToMessage("<br/>"._("SAISIE NON ENREGISTREE")."<br/>"); |
512 |
|
|
$this->correct = false; |
513 |
|
|
return false; |
514 |
vpihour |
2842 |
} |
515 |
|
|
else { |
516 |
|
|
$this->addToMessage(_("Le message a ete transmis au ". |
517 |
|
|
"referentiel ERP.")); |
518 |
|
|
} |
519 |
fmichon |
1005 |
} |
520 |
|
|
|
521 |
|
|
// envoi du message "Consultation ERP pour conformite" en cas de creation de la |
522 |
|
|
// consultation du service ERP Conformite |
523 |
|
|
if ($this->valF['service'] == $this->f->getParameter('erp_service_conformite')) { |
524 |
|
|
$msgenque = new MessageEnqueuer(); |
525 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
526 |
|
|
$msgenque->setConsultationIdentifier($this->valF['consultation']); |
527 |
vpihour |
2842 |
$return = $msgenque->enqueueMessage($msgenque::$ERP_CONSULTATION_CONFORMITE); |
528 |
|
|
//Si une erreur s'est produite on arrête le traitement et on |
529 |
|
|
//retourne une erreur |
530 |
|
|
if ($return !== 0){ |
531 |
|
|
|
532 |
|
|
$this->addToMessage(_("Une erreur s'est produite lors de ". |
533 |
|
|
"l'envoi du message au referentiel ERP. Merci de ". |
534 |
|
|
"contacter votre administrateur")); |
535 |
|
|
//On ne valide pas le formulaire |
536 |
vpihour |
2877 |
$this->addToMessage("<br/>"._("SAISIE NON ENREGISTREE")."<br/>"); |
537 |
|
|
$this->correct = false; |
538 |
|
|
return false; |
539 |
vpihour |
2842 |
} |
540 |
|
|
else { |
541 |
|
|
$this->addToMessage(_("Le message a ete transmis au ". |
542 |
|
|
"referentiel ERP.")); |
543 |
|
|
} |
544 |
fmichon |
1005 |
} |
545 |
mlimic |
936 |
} |
546 |
fmichon |
1005 |
} // fin de if($this->f->getParameter('option_erp')) |
547 |
vpihour |
1930 |
|
548 |
|
|
// Finalisation du document |
549 |
|
|
$this->finaliserAjouter(); |
550 |
nhaye |
532 |
} |
551 |
mlimic |
843 |
|
552 |
mlimic |
936 |
/** |
553 |
|
|
* Fait une requette sql pour extraire la valeur d'un champ, et retourne |
554 |
|
|
* cette valeur |
555 |
|
|
* @param string $sql La requete sql a executer |
556 |
|
|
* @return La valeur du champs cherche, sinon NULL. En cas d'erreur de la BD |
557 |
|
|
* l'execution s'arrete. |
558 |
|
|
*/ |
559 |
|
|
function getFromDB($sql) { |
560 |
|
|
//$sql = "SELECT libelle FROM ".DB_PREFIXE."dossier WHERE dossier = '" . $dossier . "'"; |
561 |
|
|
$res = $this->db->limitquery($sql, 0, 1); |
562 |
vpihour |
1777 |
$this->f->addToLog("getDossierERPSpecification(): db->limitquery(\"". |
563 |
mlimic |
936 |
str_replace(",",", ",$sql)."\", 0, 1);", VERBOSE_MODE); |
564 |
|
|
// Si une erreur survient on die |
565 |
|
|
if (database::isError($res, true)) { |
566 |
|
|
// Appel de la methode de recuperation des erreurs |
567 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), 'instruction'); |
568 |
|
|
} |
569 |
|
|
// retourne la nature du dossier |
570 |
|
|
while ($row =& $res->fetchRow()) { |
571 |
|
|
return $row[0]; |
572 |
|
|
} |
573 |
|
|
// la nature n'etait pas trouve, ce qui ne devrait pas se passer |
574 |
|
|
return NULL; |
575 |
|
|
|
576 |
|
|
} |
577 |
|
|
|
578 |
fraynaud |
20 |
// ============================================= |
579 |
vpihour |
497 |
// Ajout du fielset |
580 |
|
|
// Add fieldset |
581 |
|
|
// ============================================= |
582 |
nhaye |
569 |
function setLayout(&$form, $maj){ |
583 |
fmichon |
671 |
|
584 |
|
|
// Modification layout : écran de retour d'avis permettant |
585 |
|
|
// uniquement la saisie des trois champs : avis, motivation et fichier |
586 |
|
|
if ($this->f->isAccredited('consultation_consulter_autre_que_retour_avis')) { |
587 |
|
|
|
588 |
nhaye |
569 |
//Champs sur lequel s'ouvre le fieldset |
589 |
|
|
$form->setBloc('dossier','D',""); |
590 |
|
|
$form->setFieldset('dossier','D',_('Consultation')); |
591 |
|
|
|
592 |
|
|
//Champs sur lequel se ferme le fieldset |
593 |
|
|
$form->setFieldset('date_envoi','F',''); |
594 |
|
|
$form->setBloc('date_envoi','F'); |
595 |
fmichon |
671 |
|
596 |
nhaye |
569 |
} |
597 |
fmichon |
671 |
|
598 |
|
|
// MODE - autre que AJOUTER alors on affiche un fieldset retour |
599 |
|
|
// d'avis |
600 |
|
|
if ($maj != 0) { |
601 |
|
|
|
602 |
nhaye |
569 |
//Champs sur lequel s'ouvre le fieldset |
603 |
|
|
$form->setBloc('date_reception','D',""); |
604 |
|
|
$form->setFieldset('date_reception','D',_('Retour d\'avis')); |
605 |
fmichon |
671 |
|
606 |
nhaye |
569 |
//Champs sur lequel se ferme le fieldset |
607 |
|
|
$form->setFieldset('lu','F',''); |
608 |
|
|
$form->setBloc('lu','F'); |
609 |
fmichon |
671 |
|
610 |
nhaye |
569 |
} |
611 |
|
|
} |
612 |
nhaye |
595 |
|
613 |
|
|
/** Surcharge de la methode retour afin de retourner sur la page de saisie de |
614 |
|
|
* code barre si besoin |
615 |
|
|
**/ |
616 |
|
|
function retour($premier = 0, $recherche = "", $tricol = "") { |
617 |
|
|
$params ="obj=".get_class($this); |
618 |
|
|
if($this->getParameter("retour")=="form") { |
619 |
|
|
$params .= "&idx=".$this->getParameter("idx"); |
620 |
|
|
$params .= "&action=3"; |
621 |
|
|
} |
622 |
|
|
$params .= "&premier=".$this->getParameter("premier"); |
623 |
|
|
$params .= "&tricol=".$this->getParameter("tricol"); |
624 |
|
|
$params .= "&recherche=".$this->getParameter("recherche"); |
625 |
|
|
$params .= "&selectioncol=".$this->getParameter("selectioncol"); |
626 |
|
|
$params .= "&advs_id=".$this->getParameter("advs_id"); |
627 |
|
|
$params .= "&valide=".$this->getParameter("valide"); |
628 |
|
|
echo "\n<a class=\"retour\" "; |
629 |
|
|
echo "href=\""; |
630 |
|
|
// |
631 |
|
|
|
632 |
|
|
if($this->getParameter("retour")=="form" AND !($this->getParameter("validation")>0 AND $this->getParameter("maj")==2 AND $this->correct)) { |
633 |
|
|
echo "form.php?".$params; |
634 |
fmichon |
1666 |
} elseif($this->getParameter("retour")=="suivi_retours_de_consultation") { |
635 |
|
|
echo "../app/suivi_retours_de_consultation.php"; |
636 |
nhaye |
595 |
} else { |
637 |
|
|
echo "tab.php?".$params; |
638 |
|
|
} |
639 |
|
|
// |
640 |
|
|
echo "\""; |
641 |
|
|
echo ">"; |
642 |
|
|
// |
643 |
|
|
echo _("Retour"); |
644 |
|
|
// |
645 |
|
|
echo "</a>\n"; |
646 |
|
|
} |
647 |
fmichon |
938 |
|
648 |
|
|
/** |
649 |
nhaye |
802 |
* Surcharge du bouton retour pour popup |
650 |
|
|
*/ |
651 |
|
|
function retoursousformulaire($idxformulaire, $retourformulaire, $val, |
652 |
|
|
$objsf, $premiersf, $tricolsf, $validation, |
653 |
|
|
$idx, $maj, $retour) { |
654 |
|
|
if($retourformulaire === "demande_avis_encours") { |
655 |
|
|
echo "\n<a class=\"retour\" "; |
656 |
|
|
echo "href=\""; |
657 |
|
|
echo "#"; |
658 |
|
|
echo "\" "; |
659 |
|
|
echo ">"; |
660 |
|
|
// |
661 |
|
|
echo _("Retour"); |
662 |
|
|
// |
663 |
|
|
echo "</a>\n"; |
664 |
|
|
} else { |
665 |
|
|
parent::retoursousformulaire($idxformulaire, $retourformulaire, $val, |
666 |
|
|
$objsf, $premiersf, $tricolsf, $validation, |
667 |
|
|
$idx, $maj, $retour); |
668 |
|
|
} |
669 |
|
|
} |
670 |
vpihour |
1784 |
|
671 |
vpihour |
1881 |
/** |
672 |
|
|
* Ajout des contraintes spécifiques pour l'ajout d'un fichier en retour de |
673 |
|
|
* consultation |
674 |
|
|
*/ |
675 |
|
|
function setSelect(&$form, $maj,&$db,$debug) { |
676 |
atreal |
2731 |
if(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc.php")) |
677 |
|
|
include ("../sql/".$db->phptype."/".$this->table.".form.inc.php"); |
678 |
|
|
elseif(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc")) |
679 |
|
|
include ("../sql/".$db->phptype."/".$this->table.".form.inc"); |
680 |
|
|
|
681 |
|
|
// avis_consultation |
682 |
|
|
$this->init_select($form, $db, $maj, $debug, "avis_consultation", |
683 |
|
|
$sql_avis_consultation, $sql_avis_consultation_by_id, true); |
684 |
|
|
|
685 |
|
|
// service |
686 |
|
|
$this->init_select($form, $db, $maj, $debug, "service", |
687 |
|
|
$sql_service, $sql_service_by_id, true); |
688 |
|
|
|
689 |
vpihour |
1881 |
//Seulement dans le cas d'un retour d'avis |
690 |
|
|
if($this->retourformulaire == "demande_avis_encours") { |
691 |
|
|
|
692 |
|
|
//Tableau des contraintes spécifiques |
693 |
|
|
$params = array( |
694 |
|
|
"constraint" => array( |
695 |
|
|
"size_max" => 2, |
696 |
|
|
"extension" => ".pdf" |
697 |
|
|
), |
698 |
|
|
); |
699 |
|
|
|
700 |
|
|
$form->setSelect("fichier", $params); |
701 |
|
|
} |
702 |
|
|
} |
703 |
vpihour |
2603 |
|
704 |
vpihour |
1930 |
/** |
705 |
|
|
* Finalisation du document lors de l'ajout d'une consultation |
706 |
|
|
*/ |
707 |
|
|
function finaliserAjouter(){ |
708 |
|
|
|
709 |
|
|
//Génération du PDF |
710 |
|
|
$_GET['output'] = "string"; |
711 |
|
|
$_GET['obj'] = "consultation"; |
712 |
|
|
$_GET['idx'] = $this->valF[$this->clePrimaire]; |
713 |
|
|
$f = $this->f; |
714 |
|
|
include '../app/pdf_consultation.php'; |
715 |
|
|
|
716 |
|
|
//Métadonnées du document |
717 |
|
|
$metadata = array( |
718 |
|
|
'filename' => 'consultation_'.$idx.'.pdf', |
719 |
|
|
'mimetype' => 'application/pdf', |
720 |
|
|
'size' => strlen($pdf_output) |
721 |
|
|
); |
722 |
|
|
|
723 |
nhaye |
1935 |
// Récupération des métadonnées calculées après validation |
724 |
nhaye |
1938 |
$spe_metadata = $this->getMetadata("om_fichier_consultation"); |
725 |
nhaye |
1935 |
|
726 |
|
|
$metadata = array_merge($metadata, $spe_metadata); |
727 |
|
|
|
728 |
vpihour |
1930 |
//On ajoute le document et on récupère son uid |
729 |
|
|
$uid = $this->f->storage->create($pdf_output, $metadata); |
730 |
|
|
|
731 |
|
|
//Mise à jour des données |
732 |
vpihour |
2789 |
if ( $uid != '' && $uid != 'OP_FAILURE' ){ |
733 |
vpihour |
1930 |
// Logger |
734 |
|
|
$this->addToLog("finaliserAjouter() - begin", EXTRA_VERBOSE_MODE); |
735 |
|
|
|
736 |
|
|
$valF = array( |
737 |
|
|
"om_final_consultation"=> TRUE, |
738 |
|
|
"om_fichier_consultation"=>$uid); |
739 |
|
|
|
740 |
|
|
// Execution de la requête de modification des donnees de l'attribut |
741 |
|
|
// valF de l'objet dans l'attribut table de l'objet |
742 |
|
|
$res = $this->db->autoExecute(DB_PREFIXE.$this->table, $valF, |
743 |
|
|
DB_AUTOQUERY_UPDATE, $this->getCle($idx)); |
744 |
|
|
$this->addToLog("finaliserAjouter() : db->autoExecute(\"".DB_PREFIXE.$this->table."\", ".print_r($valF, true).", DB_AUTOQUERY_UPDATE, \"".$this->getCle($idx)."\")", VERBOSE_MODE); |
745 |
|
|
// Si une erreur survient |
746 |
|
|
if (database::isError($res)) { |
747 |
|
|
// Appel de la methode de recuperation des erreurs |
748 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), ''); |
749 |
|
|
} else { |
750 |
|
|
// Log |
751 |
|
|
$this->addToLog(_("Requete executee"), VERBOSE_MODE); |
752 |
|
|
// Log |
753 |
|
|
$message = _("Enregistrement")." ".$idx." "; |
754 |
|
|
$message .= _("de la table")." \"".$this->table."\" "; |
755 |
|
|
$message .= "[ ".$this->db->affectedRows()." "; |
756 |
|
|
$message .= _("enregistrement(s) mis a jour")." ]"; |
757 |
|
|
$this->addToLog($message, VERBOSE_MODE); |
758 |
|
|
} |
759 |
|
|
} |
760 |
|
|
} |
761 |
nhaye |
1935 |
|
762 |
vpihour |
2603 |
/** |
763 |
|
|
* Finalisation des documents. |
764 |
|
|
* @param string $champ champ du fichier à finaliser |
765 |
|
|
* @param booleen $status permet de définir si on finalise ou définalise |
766 |
|
|
* @param string $sousform permet de savoir si se trouve dans un sousformulaire (passé au javascript) |
767 |
|
|
*/ |
768 |
|
|
function finaliser($champ = '', $status, $sousform, $retourformulaire) { |
769 |
nhaye |
1935 |
|
770 |
vpihour |
2603 |
// Si on finalise le document |
771 |
|
|
if ($status == 1) { |
772 |
|
|
|
773 |
|
|
// Génération du PDF |
774 |
|
|
$_GET['output'] = "string"; |
775 |
|
|
$f = $this->f; |
776 |
|
|
include '../app/pdf_consultation.php'; |
777 |
|
|
|
778 |
|
|
// Métadonnées du document |
779 |
|
|
$metadata = array( |
780 |
|
|
'filename' => 'consultation_'.$idx.'.pdf', |
781 |
|
|
'mimetype' => 'application/pdf', |
782 |
|
|
'size' => strlen($pdf_output) |
783 |
|
|
); |
784 |
|
|
|
785 |
|
|
// Récupération des métadonnées calculées après validation |
786 |
|
|
$spe_metadata = $this->getMetadata("om_fichier_consultation"); |
787 |
|
|
|
788 |
|
|
$metadata = array_merge($metadata, $spe_metadata); |
789 |
|
|
|
790 |
|
|
// Si le document a déjà été finalisé |
791 |
|
|
if ( $this->getVal("om_fichier_consultation") != '' ){ |
792 |
|
|
|
793 |
|
|
// Met à jour le document mais pas son uid |
794 |
|
|
$uid = $this->f->storage->update( |
795 |
|
|
$this->getVal("om_fichier_consultation"), $pdf_output, $metadata); |
796 |
|
|
} |
797 |
|
|
// Sinon, ajoute le document et récupère son uid |
798 |
|
|
else { |
799 |
|
|
|
800 |
|
|
// Stockage du PDF |
801 |
|
|
$uid = $this->f->storage->create($pdf_output, $metadata); |
802 |
|
|
} |
803 |
|
|
|
804 |
|
|
} |
805 |
|
|
// |
806 |
|
|
else { |
807 |
|
|
|
808 |
|
|
//Récupération de l'uid du document finalisé |
809 |
|
|
$uid = $this->getVal("om_fichier_consultation"); |
810 |
|
|
|
811 |
|
|
//On dé-finalise avant de finaliser |
812 |
|
|
if ( $uid == '' || $uid == 'OP_FAILURE' ){ |
813 |
|
|
return -1; |
814 |
|
|
} |
815 |
|
|
} |
816 |
|
|
|
817 |
nhaye |
3021 |
// Recuperation de la valeur de la cle primaire de l'objet |
818 |
|
|
if ($this->getVal($this->clePrimaire) != '') { |
819 |
|
|
// |
820 |
|
|
$id = $this->getVal($this->clePrimaire); |
821 |
|
|
} |
822 |
|
|
else { |
823 |
|
|
// |
824 |
|
|
$id=$this->id; |
825 |
|
|
} |
826 |
vpihour |
2603 |
//Mise à jour des données |
827 |
vpihour |
2789 |
if ($uid != '' && $uid != 'OP_FAILURE') { |
828 |
vpihour |
2603 |
|
829 |
|
|
// Logger |
830 |
|
|
$this->addToLog("finaliser() - begin", EXTRA_VERBOSE_MODE); |
831 |
|
|
|
832 |
|
|
$actions = array(); |
833 |
|
|
|
834 |
|
|
// Tableau contenant le lien vers le PDF et lien du portlet pour la |
835 |
|
|
// mise à jour de l'interface |
836 |
|
|
if ($status == 0) { |
837 |
|
|
|
838 |
|
|
// Lien pour ouvrir le PDF |
839 |
|
|
$lien = '../app/pdf_consultation.php?idx='.$id; |
840 |
|
|
|
841 |
|
|
// |
842 |
|
|
if ($this->f->isAccredited('consultation') || |
843 |
|
|
$this->f->isAccredited('consultation_modifier')) { |
844 |
|
|
|
845 |
|
|
$actions["modifier"] = ($sousform!='')? |
846 |
|
|
'<li><a href="#" onclick="ajaxIt(\'consultation\', |
847 |
|
|
\'../scr/sousform.php?obj=consultation&action=1&idx='. |
848 |
|
|
$this->getVal($this->clePrimaire). |
849 |
|
|
'&premiersf=0&trisf=&retourformulaire='.$retourformulaire.'&idxformulaire='. |
850 |
|
|
$this->getVal("dossier"). |
851 |
|
|
'&retour=form\');"> |
852 |
|
|
<span class="om-prev-icon om-icon-16 edit-16" title="'. |
853 |
|
|
_('Modifier').'">'. |
854 |
|
|
_('Modifier'). |
855 |
|
|
'</span></a></li>': |
856 |
|
|
'<li> |
857 |
|
|
<a href="form.php?obj=consultation&action=1'.'&idx='. |
858 |
|
|
$this->getVal($this->clePrimaire). |
859 |
|
|
'&premier=&advs_id=&recherche=&tricol=&selectioncol=&valide=&retour=form"> |
860 |
|
|
<span class="om-prev-icon om-icon-16 edit-16" title="'. |
861 |
|
|
_('Modifier').'">'. |
862 |
|
|
_('Modifier'). |
863 |
|
|
'</span></a></li>'; |
864 |
|
|
} |
865 |
|
|
|
866 |
|
|
//Si l'utilisateur a le droit de supprimer l'objet |
867 |
|
|
if ( $this->f->isAccredited('consultation') || |
868 |
|
|
$this->f->isAccredited('consultation_supprimer') ){ |
869 |
|
|
|
870 |
|
|
$actions["supprimer"] = ($sousform!='')? |
871 |
|
|
'<li><a href="#" onclick="ajaxIt(\'consultation\', |
872 |
|
|
\'../scr/sousform.php?obj=consultation&action=2&idx='. |
873 |
|
|
$this->getVal($this->clePrimaire). |
874 |
|
|
'&premiersf=0&trisf=&retourformulaire='.$retourformulaire.'&idxformulaire='. |
875 |
|
|
$this->getVal("dossier"). |
876 |
|
|
'&retour=form\');"> |
877 |
|
|
<span class="om-prev-icon om-icon-16 delete-16" title="'. |
878 |
|
|
_('Supprimer').'">'. |
879 |
|
|
_('Supprimer'). |
880 |
|
|
'</span></a></li>': |
881 |
|
|
'<li> |
882 |
|
|
<a href="form.php?obj=consultation&action=1'.'&idx='. |
883 |
|
|
$this->getVal($this->clePrimaire). |
884 |
|
|
'&premier=&advs_id=&recherche=&tricol=&selectioncol=&valide=&retour=form"> |
885 |
|
|
<span class="om-prev-icon om-icon-16 delete-16" title="'. |
886 |
|
|
_('Supprimer').'">'. |
887 |
|
|
_('Supprimer'). |
888 |
|
|
'</span></a></li>'; |
889 |
|
|
} |
890 |
|
|
} |
891 |
|
|
else { |
892 |
|
|
|
893 |
|
|
// Lien permettant d'afficher le PDF |
894 |
|
|
$lien = '../spg/file.php?obj=consultation&'. |
895 |
|
|
'champ=om_fichier_consultation&id='.$id; |
896 |
|
|
} |
897 |
|
|
|
898 |
|
|
// |
899 |
|
|
$retour = array( |
900 |
|
|
"portlet"=> "<a href=\"#\" onclick=\"finalizeDocument(". |
901 |
|
|
$id.", 'consultation', '".$sousform."', ".(($status==0)?1:0).")\"> |
902 |
|
|
<span class=\"om-prev-icon om-icon-16 om-icon-fix " |
903 |
|
|
.(($status==1)?"de":"")."finalise\" title=\"". |
904 |
|
|
(($status==1)?_("Reprendre la redaction du document"):_("Finaliser le document"))."\">". |
905 |
|
|
(($status==1)?_("Reprendre la redaction du document"):_("Finaliser le document"))."</span> |
906 |
|
|
</a>", |
907 |
|
|
"pdf" => $lien, |
908 |
|
|
"actions" => $actions |
909 |
|
|
); |
910 |
|
|
|
911 |
|
|
foreach ($this->champs as $key => $value) { |
912 |
|
|
// |
913 |
|
|
$val[$value] = $this->val[$key]; |
914 |
|
|
} |
915 |
|
|
|
916 |
|
|
$this->setvalF($val); |
917 |
|
|
|
918 |
|
|
// Verification de la validite des donnees |
919 |
|
|
$this->verifier($this->val, $this->db, DEBUG); |
920 |
|
|
// Verification du verrou |
921 |
|
|
$this->testverrou(); |
922 |
|
|
// Si les verifications precedentes sont correctes, on procede a |
923 |
|
|
// la modification, sinon on ne fait rien et on retourne une erreur |
924 |
|
|
if ($this->correct) { |
925 |
|
|
|
926 |
|
|
// Execution du trigger 'before' specifique au MODE 'update' |
927 |
|
|
$this->triggermodifier( $id, $this->db, $this->val, DEBUG); |
928 |
|
|
|
929 |
|
|
// |
930 |
|
|
$valF = ''; |
931 |
|
|
$valF["om_final_consultation"] = ($status==1)?TRUE:FALSE; |
932 |
|
|
$valF["om_fichier_consultation"] = $uid; |
933 |
|
|
|
934 |
|
|
// Execution de la requête de modification des donnees de l'attribut |
935 |
|
|
// valF de l'objet dans l'attribut table de l'objet |
936 |
|
|
$res = $this->db->autoExecute(DB_PREFIXE.$this->table, $valF, |
937 |
|
|
DB_AUTOQUERY_UPDATE, $this->getCle($id)); |
938 |
|
|
$this->addToLog("finaliser() : db->autoExecute(\"".DB_PREFIXE.$this->table."\", ".print_r($valF, true).", DB_AUTOQUERY_UPDATE, \"".$this->getCle($id)."\")", VERBOSE_MODE); |
939 |
|
|
|
940 |
|
|
// Si une erreur survient |
941 |
|
|
if (database::isError($res)) { |
942 |
|
|
|
943 |
|
|
// Appel de la methode de recuperation des erreurs |
944 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), ''); |
945 |
|
|
} else { |
946 |
|
|
|
947 |
|
|
// Log |
948 |
|
|
$this->addToLog(_("Requete executee"), VERBOSE_MODE); |
949 |
|
|
// Log |
950 |
|
|
$message = _("Enregistrement")." ".$id." "; |
951 |
|
|
$message .= _("de la table")." \"".$this->table."\" "; |
952 |
|
|
$message .= "[ ".$this->db->affectedRows()." "; |
953 |
|
|
$message .= _("enregistrement(s) mis a jour")." ]"; |
954 |
|
|
$this->addToLog($message, VERBOSE_MODE); |
955 |
|
|
// Mise en place du verrou pour ne pas finaliser plusieurs fois |
956 |
|
|
// le meme document |
957 |
|
|
$this->verrouille(); |
958 |
|
|
// Execution du trigger 'after' specifique au MODE 'update' |
959 |
|
|
$this->triggermodifierapres($id, $this->db, $this->val, DEBUG); |
960 |
|
|
|
961 |
|
|
return $retour; |
962 |
|
|
} |
963 |
|
|
// |
964 |
|
|
} else { |
965 |
|
|
|
966 |
|
|
// Message d'echec (saut d'une ligne supplementaire avant le |
967 |
|
|
// message pour qu'il soit mis en evidence) |
968 |
nhaye |
3021 |
$this->addToLog( |
969 |
|
|
_("Finalisation non enregistree")." - ". |
970 |
|
|
_("id instruction")." = ".$id." - ". |
971 |
|
|
_("uid fichier")." = ".$uid |
972 |
|
|
); |
973 |
vpihour |
2603 |
return -1; |
974 |
|
|
} |
975 |
|
|
} |
976 |
|
|
// Si le document n'a pas été stocké |
977 |
|
|
else{ |
978 |
nhaye |
3021 |
$this->addToLog( |
979 |
|
|
_("Finalisation non enregistree")." - ". |
980 |
|
|
_("id instruction")." = ".$id." - ". |
981 |
|
|
_("uid fichier")." = ".$uid |
982 |
|
|
); |
983 |
vpihour |
2603 |
return -1; |
984 |
|
|
} |
985 |
|
|
} |
986 |
|
|
|
987 |
|
|
|
988 |
nhaye |
1935 |
/** |
989 |
|
|
* Récupération du numéro de dossier d'instruction à ajouter aux métadonnées |
990 |
nhaye |
1949 |
* @return string numéro de dossier d'instruction |
991 |
nhaye |
1935 |
*/ |
992 |
|
|
protected function getDossier() { |
993 |
|
|
if(empty($this->specificMetadata)) { |
994 |
|
|
$this->getSpecificMetadata(); |
995 |
|
|
} |
996 |
|
|
return $this->specificMetadata->dossier; |
997 |
|
|
} |
998 |
|
|
/** |
999 |
softime |
2016 |
* Récupération la version du dossier d'instruction à ajouter aux métadonnées |
1000 |
|
|
* @return int Version |
1001 |
|
|
*/ |
1002 |
|
|
protected function getDossierVersion() { |
1003 |
|
|
if(empty($this->specificMetadata)) { |
1004 |
|
|
$this->getSpecificMetadata(); |
1005 |
|
|
} |
1006 |
|
|
return $this->specificMetadata->version; |
1007 |
|
|
} |
1008 |
|
|
/** |
1009 |
nhaye |
1935 |
* Récupération du numéro de dossier d'autorisation à ajouter aux métadonnées |
1010 |
nhaye |
1949 |
* @return string numéro de dossier d'autorisation |
1011 |
nhaye |
1935 |
*/ |
1012 |
softime |
2025 |
protected function getNumDemandeAutor() { |
1013 |
nhaye |
1935 |
if(empty($this->specificMetadata)) { |
1014 |
|
|
$this->getSpecificMetadata(); |
1015 |
|
|
} |
1016 |
|
|
return $this->specificMetadata->dossier_autorisation; |
1017 |
|
|
} |
1018 |
|
|
/** |
1019 |
|
|
* Récupération de la date de demande initiale du dossier à ajouter aux métadonnées |
1020 |
nhaye |
1949 |
* @return date demande initiale |
1021 |
nhaye |
1935 |
*/ |
1022 |
softime |
2025 |
protected function getAnneemoisDemandeAutor() { |
1023 |
nhaye |
1935 |
if(empty($this->specificMetadata)) { |
1024 |
|
|
$this->getSpecificMetadata(); |
1025 |
|
|
} |
1026 |
|
|
return $this->specificMetadata->date_demande_initiale; |
1027 |
|
|
} |
1028 |
|
|
/** |
1029 |
|
|
* Récupération du type de dossier d'instruction à ajouter aux métadonnées |
1030 |
nhaye |
1949 |
* @return string type de dossier d'instruction |
1031 |
nhaye |
1935 |
*/ |
1032 |
softime |
2025 |
protected function getTypeInstruction() { |
1033 |
nhaye |
1935 |
if(empty($this->specificMetadata)) { |
1034 |
|
|
$this->getSpecificMetadata(); |
1035 |
|
|
} |
1036 |
|
|
return $this->specificMetadata->dossier_instruction_type; |
1037 |
|
|
} |
1038 |
|
|
/** |
1039 |
|
|
* Récupération du statut du dossier d'autorisation à ajouter aux métadonnées |
1040 |
nhaye |
1949 |
* @return string avis |
1041 |
nhaye |
1935 |
*/ |
1042 |
softime |
2025 |
protected function getStatutAutorisation() { |
1043 |
nhaye |
1935 |
if(empty($this->specificMetadata)) { |
1044 |
|
|
$this->getSpecificMetadata(); |
1045 |
|
|
} |
1046 |
|
|
return $this->specificMetadata->statut; |
1047 |
|
|
} |
1048 |
|
|
/** |
1049 |
|
|
* Récupération du type de dossier d'autorisation à ajouter aux métadonnées |
1050 |
nhaye |
1949 |
* @return string type d'autorisation |
1051 |
nhaye |
1935 |
*/ |
1052 |
softime |
2025 |
protected function getTypeAutorisation() { |
1053 |
nhaye |
1935 |
if(empty($this->specificMetadata)) { |
1054 |
|
|
$this->getSpecificMetadata(); |
1055 |
|
|
} |
1056 |
|
|
return $this->specificMetadata->dossier_autorisation_type; |
1057 |
|
|
} |
1058 |
|
|
/** |
1059 |
|
|
* Récupération de la date d'ajout de document à ajouter aux métadonnées |
1060 |
nhaye |
1949 |
* @return date de l'évènement |
1061 |
nhaye |
1935 |
*/ |
1062 |
softime |
2025 |
protected function getDateEvenementDocument() { |
1063 |
softime |
2046 |
return date("Y-m-d"); |
1064 |
nhaye |
1935 |
} |
1065 |
|
|
/** |
1066 |
|
|
* Récupération du groupe d'instruction à ajouter aux métadonnées |
1067 |
|
|
* @return string Groupe d'instruction |
1068 |
|
|
*/ |
1069 |
|
|
protected function getGroupeInstruction() { |
1070 |
|
|
if(empty($this->specificMetadata)) { |
1071 |
|
|
$this->getSpecificMetadata(); |
1072 |
|
|
} |
1073 |
|
|
return $this->specificMetadata->groupe_instruction; |
1074 |
|
|
} |
1075 |
softime |
2002 |
/** |
1076 |
|
|
* Récupération du type de document à ajouter aux métadonnées |
1077 |
|
|
* @return string Type de document |
1078 |
|
|
*/ |
1079 |
softime |
2025 |
protected function getTitle() { |
1080 |
softime |
2002 |
if ($this->retourformulaire == "demande_avis_encours") { |
1081 |
|
|
return 'Retour de consultation'; |
1082 |
|
|
} else { |
1083 |
|
|
return 'Demande de consultation'; |
1084 |
|
|
} |
1085 |
|
|
} |
1086 |
nhaye |
1935 |
|
1087 |
|
|
/** |
1088 |
|
|
* Cette méthode permet de stocker en attribut toutes les métadonnées |
1089 |
|
|
* nécessaire à l'ajout d'un document. |
1090 |
|
|
*/ |
1091 |
|
|
public function getSpecificMetadata() { |
1092 |
|
|
if (isset($this->valF["dossier"]) AND $this->valF["dossier"] != "") { |
1093 |
|
|
$dossier = $this->valF["dossier"]; |
1094 |
|
|
} else { |
1095 |
|
|
$dossier = $this->getVal("dossier"); |
1096 |
|
|
} |
1097 |
|
|
//Requête pour récupérer les informations essentiels sur le dossier d'instruction |
1098 |
|
|
$sql = "SELECT dossier.dossier as dossier, |
1099 |
|
|
dossier_autorisation.dossier_autorisation as dossier_autorisation, |
1100 |
|
|
to_char(dossier.date_demande, 'YYYY/MM') as date_demande_initiale, |
1101 |
|
|
dossier_instruction_type.code as dossier_instruction_type, |
1102 |
|
|
etat_dossier_autorisation.libelle as statut, |
1103 |
|
|
dossier_autorisation_type.code as dossier_autorisation_type, |
1104 |
|
|
groupe.code as groupe_instruction |
1105 |
|
|
FROM ".DB_PREFIXE."dossier |
1106 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_instruction_type |
1107 |
|
|
ON dossier.dossier_instruction_type = dossier_instruction_type.dossier_instruction_type |
1108 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation |
1109 |
|
|
ON dossier.dossier_autorisation = dossier_autorisation.dossier_autorisation |
1110 |
|
|
LEFT JOIN ".DB_PREFIXE."etat_dossier_autorisation |
1111 |
|
|
ON dossier_autorisation.etat_dossier_autorisation = etat_dossier_autorisation.etat_dossier_autorisation |
1112 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation_type_detaille |
1113 |
|
|
ON dossier_autorisation.dossier_autorisation_type_detaille = dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
1114 |
|
|
LEFT JOIN ".DB_PREFIXE."dossier_autorisation_type |
1115 |
|
|
ON dossier_autorisation_type_detaille.dossier_autorisation_type = dossier_autorisation_type.dossier_autorisation_type |
1116 |
|
|
LEFT JOIN ".DB_PREFIXE."groupe |
1117 |
|
|
ON dossier_autorisation_type.groupe = groupe.groupe |
1118 |
|
|
WHERE dossier.dossier = '".$dossier."'"; |
1119 |
|
|
$res = $this->db->query($sql); |
1120 |
|
|
$this->f->addToLog("obj/document_numerise.class.php : db->query(".$sql.")", VERBOSE_MODE); |
1121 |
|
|
if ( database::isError($res)){ |
1122 |
|
|
die(); |
1123 |
|
|
} |
1124 |
|
|
|
1125 |
|
|
//Le résultat est récupéré dans un objet |
1126 |
|
|
$row =& $res->fetchRow(DB_FETCHMODE_OBJECT); |
1127 |
|
|
|
1128 |
|
|
//Si il y a un résultat |
1129 |
|
|
if ($row !== null) { |
1130 |
vpihour |
2119 |
|
1131 |
|
|
//Génération du numéro de version |
1132 |
|
|
$sql = "SELECT |
1133 |
|
|
count(*) |
1134 |
|
|
FROM |
1135 |
|
|
".DB_PREFIXE."dossier |
1136 |
|
|
LEFT JOIN |
1137 |
|
|
".DB_PREFIXE."dossier_autorisation |
1138 |
|
|
ON |
1139 |
|
|
dossier_autorisation.dossier_autorisation = dossier.dossier_autorisation |
1140 |
|
|
LEFT JOIN |
1141 |
|
|
".DB_PREFIXE."dossier_instruction_type |
1142 |
|
|
ON |
1143 |
|
|
dossier_instruction_type.dossier_instruction_type = dossier.dossier_instruction_type |
1144 |
|
|
WHERE |
1145 |
softime |
2120 |
dossier_autorisation.dossier_autorisation = '".$row->dossier_autorisation."' |
1146 |
vpihour |
2119 |
AND |
1147 |
softime |
2120 |
dossier_instruction_type.code = '".$row->dossier_instruction_type."'"; |
1148 |
|
|
$row->version = $this->db->getOne($sql); |
1149 |
vpihour |
2119 |
$this->f->addToLog("getInfosForFoldername(): db->getOne(\"".$sql."\")", VERBOSE_MODE); |
1150 |
softime |
2120 |
if ( database::isError($row->version)){ |
1151 |
|
|
$this->f->addToError("", $row->version, $row->version); |
1152 |
vpihour |
2119 |
return false; |
1153 |
|
|
} |
1154 |
|
|
|
1155 |
|
|
//Formatage du numéro de version |
1156 |
softime |
2120 |
$row->version = str_pad($row->version, 2, "0", STR_PAD_LEFT); |
1157 |
nhaye |
1935 |
|
1158 |
|
|
//Alors on créé l'objet dossier_instruction |
1159 |
|
|
$this->specificMetadata = $row; |
1160 |
|
|
|
1161 |
|
|
} |
1162 |
|
|
} |
1163 |
softime |
2112 |
|
1164 |
fraynaud |
3 |
}// fin classe |
1165 |
vpihour |
2603 |
?> |