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 |
fraynaud |
20 |
function consultation($id,&$db,$debug) { |
10 |
|
|
$this->constructeur($id,$db,$debug); |
11 |
|
|
}// fin constructeur |
12 |
fmichon |
943 |
|
13 |
|
|
// {{{ Gestion de la confidentialité des données spécifiques |
14 |
|
|
|
15 |
|
|
/** |
16 |
|
|
* Surcharge pour gérer les actions disponibles dans le portlet |
17 |
|
|
*/ |
18 |
|
|
function checkAccessibility() { |
19 |
|
|
// |
20 |
|
|
parent::checkAccessibility(); |
21 |
|
|
// Si l'utilisateur est un intructeur qui en correspond pas à la |
22 |
|
|
// division du dossier |
23 |
|
|
if ($this->f->isUserInstructeur() |
24 |
|
|
&& isset($this->f->om_utilisateur["division"]) |
25 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier()) { |
26 |
|
|
// |
27 |
|
|
$this->actions_sup = array(); |
28 |
|
|
$this->setParameter("actions", array()); |
29 |
|
|
} |
30 |
|
|
// Si une action 'lu' est présente et que le champ lu est à true |
31 |
|
|
// on supprime l'action |
32 |
|
|
if (isset($this->actions_sup["lu"]) |
33 |
|
|
&& isset($this->val[array_search("lu", $this->champs)]) |
34 |
|
|
&& $this->val[array_search("lu", $this->champs)]== "t") { |
35 |
|
|
unset($this->actions_sup["lu"]); |
36 |
|
|
} |
37 |
vpihour |
1899 |
|
38 |
|
|
//Si le document est déjà finalisé, on affiche uniquement le lien de |
39 |
|
|
//dé-finalisation |
40 |
|
|
if ( isset($this->actions_sup["finalisation"]) && |
41 |
|
|
isset($this->val[array_search("om_final_consultation", $this->champs)]) |
42 |
|
|
&& $this->val[array_search("om_final_consultation", $this->champs)]== "t" ){ |
43 |
|
|
|
44 |
|
|
//On cache le lien |
45 |
|
|
unset($this->actions_sup["finalisation"]); |
46 |
|
|
} |
47 |
|
|
//Si le document n'est pas finalisé, on affiche uniquement le lien de |
48 |
|
|
//finalisation |
49 |
|
|
if ( isset($this->actions_sup["definalisation"]) && |
50 |
|
|
isset($this->val[array_search("om_final_consultation", $this->champs)]) |
51 |
|
|
&& $this->val[array_search("om_final_consultation", $this->champs)]!= "t" ){ |
52 |
|
|
|
53 |
|
|
//On cache le lien |
54 |
|
|
unset($this->actions_sup["definalisation"]); |
55 |
|
|
} |
56 |
fmichon |
943 |
} |
57 |
|
|
|
58 |
|
|
/** |
59 |
|
|
* Cette methode est à surcharger elle permet de tester dans chaque classe |
60 |
|
|
* des droits des droits spécifiques en fonction des données |
61 |
|
|
*/ |
62 |
|
|
function canAccess() { |
63 |
|
|
// Si l'utilisateur est un utilisateur de service externe |
64 |
|
|
// on vérifie qu'il peut accéder à la consultation |
65 |
|
|
if ($this->f->isUserServiceExt()) { |
66 |
|
|
// On compare l'id du service de la consultation |
67 |
|
|
// aux id des services de utilisateur connecté |
68 |
|
|
foreach($this->f->om_utilisateur['service'] as $service) { |
69 |
|
|
if($this->val[array_search("service",$this->champs)]===$service['service']) { |
70 |
|
|
return true; |
71 |
|
|
} |
72 |
|
|
} |
73 |
fmichon |
1088 |
// |
74 |
|
|
$this->f->addToLog("canAccess(): utilisateur de service sur une consultation d'un autre service", EXTRA_VERBOSE_MODE); |
75 |
fmichon |
943 |
return false; |
76 |
|
|
} |
77 |
|
|
// Si l'utilisateur est un intructeur qui ne correspond pas à la |
78 |
|
|
// division du dossier |
79 |
|
|
if ($this->f->isUserInstructeur() |
80 |
|
|
&& $this->f->om_utilisateur["division"] != $this->getDivisionFromDossier() |
81 |
|
|
&& $this->getParameter("maj") != 3) { |
82 |
|
|
// |
83 |
fmichon |
1088 |
$this->f->addToLog("canAccess(): utilisateur instructeur sur un dossier d'une autre division", EXTRA_VERBOSE_MODE); |
84 |
fmichon |
943 |
return false; |
85 |
|
|
} |
86 |
|
|
// |
87 |
|
|
return true; |
88 |
|
|
} |
89 |
|
|
|
90 |
|
|
/** |
91 |
|
|
* Cette méthode permet de récupérer la division d'un dossier |
92 |
|
|
*/ |
93 |
|
|
function getDivisionFromDossier() { |
94 |
fmichon |
1088 |
// Si on se trouve en mode MODIFIER ou SUPPRIMER ou CONSULTER alors on |
95 |
|
|
// récupère le numéro de dossier dans la consultation et on en retourne |
96 |
|
|
// sa division |
97 |
|
|
if ($this->getParameter("maj") == 1 || $this->getParameter("maj") == 2 |
98 |
|
|
|| $this->getParameter("maj") == 3) { |
99 |
|
|
// |
100 |
|
|
if (!isset($this->val[array_search("dossier", $this->champs)])) { |
101 |
|
|
return NULL; |
102 |
|
|
} |
103 |
|
|
// |
104 |
|
|
$sql = "select division from ".DB_PREFIXE."dossier "; |
105 |
|
|
$sql .= " where dossier='".$this->val[array_search("dossier", $this->champs)]."'"; |
106 |
|
|
// |
107 |
|
|
$division = $this->db->getOne($sql); |
108 |
vpihour |
1777 |
$this->f->addToLog("getDivisionFromDossier(): db->getone(\"".$sql."\")", VERBOSE_MODE); |
109 |
|
|
if (database::isError($division)){ |
110 |
|
|
die(); |
111 |
|
|
} |
112 |
fmichon |
1088 |
// |
113 |
|
|
return $division; |
114 |
|
|
} elseif ($this->getParameter("maj") == 0 |
115 |
|
|
&& ($this->getParameter("retourformulaire") == "dossier" |
116 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction" |
117 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_encours" |
118 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_encours" |
119 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_clotures" |
120 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_clotures")) { |
121 |
|
|
// Si on se trouve en mode AJOUTER et en sous formulaire alors on |
122 |
|
|
// récupère le numéro de dossier dans les paramètres de sous |
123 |
|
|
// formulaires et on en retourne sa division |
124 |
|
|
$sql = "select division from ".DB_PREFIXE."dossier "; |
125 |
|
|
$sql .= " where dossier='".$this->getParameter("idxformulaire")."'"; |
126 |
|
|
// |
127 |
|
|
$division = $this->db->getOne($sql); |
128 |
vpihour |
1777 |
$this->f->addToLog("getDivisionFromDossier(): db->getone(\"".$sql."\")", VERBOSE_MODE); |
129 |
|
|
if (database::isError($division)){ |
130 |
|
|
die(); |
131 |
|
|
} |
132 |
fmichon |
1088 |
// |
133 |
|
|
return $division; |
134 |
|
|
} else { |
135 |
fmichon |
943 |
return NULL; |
136 |
|
|
} |
137 |
fmichon |
1088 |
|
138 |
fmichon |
943 |
} |
139 |
|
|
|
140 |
|
|
// }}} |
141 |
|
|
|
142 |
fraynaud |
20 |
function setValsousformulaire(&$form,$maj,$validation,$idxformulaire,$retourformulaire,$typeformulaire){ |
143 |
nhaye |
1683 |
// ajout du retourformulaire aux attributs de l'objet |
144 |
|
|
$this->retourformulaire = $retourformulaire; |
145 |
fraynaud |
20 |
if ($validation==0) { |
146 |
|
|
if ($maj == 0){ |
147 |
nhaye |
569 |
$form->setVal("dossier", $idxformulaire); |
148 |
|
|
$form->setVal("date_envoi",date('d/m/Y')); |
149 |
fraynaud |
20 |
} |
150 |
nhaye |
587 |
if($maj == 1) { |
151 |
nhaye |
594 |
if($this->f->isAccredited('consultation_retour_avis_suivi') OR |
152 |
|
|
$this->f->isAccredited('consultation_retour_avis_service')) { |
153 |
|
|
$form->setVal("date_retour",date('d/m/Y')); |
154 |
|
|
} |
155 |
nhaye |
587 |
} |
156 |
fraynaud |
20 |
} |
157 |
|
|
} |
158 |
nhaye |
587 |
|
159 |
|
|
function setVal(&$form, $maj, $validation, &$db) { |
160 |
|
|
if($maj == 1) { |
161 |
|
|
$form->setVal("date_retour",date('d/m/Y')); |
162 |
|
|
} |
163 |
|
|
} |
164 |
fraynaud |
20 |
|
165 |
nhaye |
561 |
function setvalF($val) { |
166 |
fmichon |
1730 |
// |
167 |
nhaye |
561 |
parent::setValF($val); |
168 |
fmichon |
1730 |
// |
169 |
|
|
if ($this->getParameter('maj') == 0) { |
170 |
|
|
// |
171 |
|
|
if (isset($this->valF["date_envoi"])) { |
172 |
|
|
$this->valF["date_reception"] = $this->valF["date_envoi"]; |
173 |
|
|
} |
174 |
|
|
// |
175 |
fmichon |
1172 |
$this->valF["lu"] = true; |
176 |
nhaye |
587 |
} |
177 |
nhaye |
598 |
|
178 |
nhaye |
561 |
// Si un retour d'avis est modifie on passe "lu" a false |
179 |
nhaye |
598 |
if($this->getParameter('maj')==1 AND ( |
180 |
|
|
$this->val[array_search("avis_consultation",$this->champs)] != $val["avis_consultation"] OR |
181 |
|
|
$this->val[array_search("date_retour",$this->champs)] != $val["date_retour"] OR |
182 |
|
|
$this->val[array_search("motivation",$this->champs)] != $val["motivation"] OR |
183 |
nhaye |
674 |
$this->val[array_search("fichier",$this->champs)] != $val["fichier"]) |
184 |
nhaye |
598 |
) { |
185 |
|
|
$this->valF["lu"]=false; |
186 |
nhaye |
561 |
} |
187 |
nhaye |
675 |
} |
188 |
fmichon |
1730 |
|
189 |
|
|
function setLib(&$form, $maj) { |
190 |
|
|
// |
191 |
|
|
parent::setLib($form, $maj); |
192 |
|
|
// |
193 |
|
|
$form->setLib($this->clePrimaire, _("id")); |
194 |
|
|
} |
195 |
|
|
|
196 |
fraynaud |
20 |
function setType(&$form,$maj) { |
197 |
fmichon |
671 |
// Appel du parent |
198 |
nhaye |
459 |
parent::setType($form,$maj); |
199 |
fmichon |
671 |
// MODE - AJOUTER |
200 |
|
|
if ($maj == 0) { |
201 |
|
|
// On cache alors tous les champs que nous ne voulons pas voir |
202 |
|
|
// apparaître dans le formulaire d'ajout (principalement les |
203 |
|
|
// informations sur le retour d'avis) |
204 |
|
|
$form->setType('date_retour', 'hidden'); |
205 |
|
|
$form->setType('date_reception', 'hidden'); |
206 |
|
|
$form->setType('date_limite', 'hidden'); |
207 |
|
|
$form->setType('avis_consultation', 'hidden'); |
208 |
|
|
$form->setType('motivation', 'hidden'); |
209 |
|
|
$form->setType('fichier', 'hidden'); |
210 |
|
|
$form->setType('lu', 'hidden'); |
211 |
|
|
// On permet la modification de certains champs |
212 |
|
|
$form->setType('dossier', 'hiddenstatic'); |
213 |
|
|
$form->setType('service', 'select'); |
214 |
|
|
$form->setType('date_envoi', 'date2'); |
215 |
|
|
} |
216 |
|
|
// MODE - MODIFIER |
217 |
|
|
if ($maj == 1) { |
218 |
|
|
|
219 |
|
|
// On affiche en statique les informations qui ne sont plus |
220 |
|
|
// modifiables |
221 |
|
|
$form->setType('dossier', 'hiddenstatic'); |
222 |
|
|
$form->setType('date_envoi', 'hiddenstaticdate'); |
223 |
|
|
$form->setType('date_limite', 'hiddenstaticdate'); |
224 |
|
|
$form->setType('service', 'selecthiddenstatic'); |
225 |
|
|
|
226 |
|
|
// La date de réception ne peut être modifiée que par un |
227 |
|
|
// utilisateur en ayant spécifiquement la permission |
228 |
|
|
if($this->f->isAccredited('consultation_modifier_date_reception')) { |
229 |
|
|
$form->setType('date_reception', 'date2'); |
230 |
|
|
} else { |
231 |
|
|
$form->setType('date_reception', 'hiddenstaticdate'); |
232 |
|
|
} |
233 |
|
|
|
234 |
|
|
// Le marqueur lu/non lu ne peut être modifié que par un |
235 |
|
|
// utilisateur en ayant spécifiquement la permission |
236 |
|
|
if ($this->f->isAccredited('consultation_modifier_lu')) { |
237 |
|
|
$form->setType('lu', 'checkbox'); |
238 |
|
|
} else { |
239 |
|
|
$form->setType('lu', 'hidden'); |
240 |
|
|
} |
241 |
|
|
|
242 |
|
|
// Gestion du type du widget sur le champ fichier |
243 |
nhaye |
1683 |
if($this->getVal("fichier") == "" OR |
244 |
fmichon |
671 |
$this->f->isAccredited('consultation_modifier_fichier')) { |
245 |
|
|
// Si il n'y a jamais eu de fichier enregistré ou que |
246 |
|
|
// l'utilisateur a spécifiquement les droits pour modifier |
247 |
|
|
// un fichier déjà enregistré alors on positionne un type |
248 |
|
|
// de widget modifiable |
249 |
nhaye |
1683 |
if($this->retourformulaire == "demande_avis_encours") { |
250 |
|
|
$form->setType('fichier', 'upload2'); |
251 |
|
|
} else { |
252 |
|
|
$form->setType('fichier', 'upload'); |
253 |
|
|
} |
254 |
fmichon |
671 |
} else { |
255 |
|
|
// Si non on affiche uniquement le nom du fichier |
256 |
nhaye |
1683 |
$form->setType('fichier', 'file'); |
257 |
fmichon |
671 |
} |
258 |
|
|
|
259 |
|
|
// Modification layout : écran de retour d'avis permettant |
260 |
|
|
// uniquement la saisie des trois champs : avis, motivation et fichier |
261 |
|
|
if (!$this->f->isAccredited('consultation_consulter_autre_que_retour_avis')) { |
262 |
|
|
|
263 |
|
|
// On cache alors tous les champs que nous ne voulons pas voir |
264 |
|
|
$form->setType('dossier', 'hidden'); |
265 |
|
|
$form->setType('service', 'hidden'); |
266 |
|
|
$form->setType('date_envoi', 'hidden'); |
267 |
|
|
$form->setType('date_retour', 'hidden'); |
268 |
|
|
$form->setType('date_reception', 'hidden'); |
269 |
fraynaud |
20 |
$form->setType('date_limite', 'hidden'); |
270 |
nhaye |
561 |
$form->setType('lu', 'hidden'); |
271 |
fmichon |
671 |
|
272 |
fraynaud |
20 |
} |
273 |
vpihour |
1784 |
|
274 |
fraynaud |
20 |
} |
275 |
nhaye |
1895 |
// Mode supprimer |
276 |
|
|
if ($maj == 2) { |
277 |
|
|
$form->setType('fichier', 'filestatic'); |
278 |
|
|
} |
279 |
nhaye |
674 |
// MODE - CONSULTER |
280 |
|
|
if ( $maj == 3 ) { |
281 |
nhaye |
1683 |
$form->setType('fichier', 'file'); |
282 |
nhaye |
674 |
} |
283 |
fmichon |
671 |
//// On cache la clé primaire |
284 |
|
|
//$form->setType('consultation', 'hidden'); |
285 |
fmichon |
1730 |
// |
286 |
|
|
if ($this->getParameter("retourformulaire") == "dossier" |
287 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction" |
288 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_encours" |
289 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_encours" |
290 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_mes_clotures" |
291 |
|
|
|| $this->getParameter("retourformulaire") == "dossier_instruction_tous_clotures") { |
292 |
|
|
// |
293 |
|
|
$form->setType('dossier', 'hidden'); |
294 |
|
|
} |
295 |
vpihour |
1784 |
|
296 |
|
|
$form->setType('code_barres', 'hidden'); |
297 |
vpihour |
1899 |
|
298 |
|
|
//Cache les champs pour la finalisation |
299 |
|
|
$form->setType('om_fichier_consultation', 'hidden'); |
300 |
|
|
$form->setType('om_final_consultation', 'hidden'); |
301 |
fraynaud |
20 |
} |
302 |
|
|
|
303 |
fmichon |
1170 |
// Cette méthode permet de calculer la date limite en fonction de la date |
304 |
|
|
// de réception et du délai de consultation du service consulté |
305 |
|
|
function calculDateLimite() { |
306 |
fraynaud |
20 |
// mise a jour instruction avec evenement [return delay] |
307 |
fmichon |
1170 |
if ($this->valF["date_reception"] != "") { |
308 |
|
|
// |
309 |
|
|
$sql = " select delai from ".DB_PREFIXE."service "; |
310 |
|
|
$sql .= " where service='".$this->valF["service"]."' "; |
311 |
|
|
// |
312 |
|
|
$delai = $this->db->getOne($sql); |
313 |
|
|
$this->addToLog("triggerajouter(): db->getone(\"".$sql."\")", VERBOSE_MODE); |
314 |
|
|
// |
315 |
|
|
$this->valF["date_limite"] = $this->moisdate($this->valF["date_reception"], $delai); |
316 |
|
|
// |
317 |
nhaye |
532 |
$this->addToMessage(_("delai")." ". |
318 |
fraynaud |
41 |
_("retour")." ".$delai." "._("mois")." -> ". |
319 |
fmichon |
1170 |
_("retour")." ".date("d/m/Y", strtotime($this->valF["date_limite"]))); |
320 |
fraynaud |
41 |
} |
321 |
fraynaud |
20 |
} |
322 |
fmichon |
1170 |
|
323 |
|
|
// TRIGGER AVANT MODIFICATION DE DONNEES |
324 |
|
|
// trigger before modification data |
325 |
|
|
function triggerajouter($id,&$db,$val,$DEBUG) { |
326 |
|
|
// |
327 |
|
|
$this->calculDateLimite(); |
328 |
vpihour |
1784 |
|
329 |
|
|
// Identifiant du type de courrier |
330 |
|
|
$idTypeCourrier = '12'; |
331 |
|
|
$idCourrier = str_pad($this->valF["consultation"], 10, "0", STR_PAD_LEFT); |
332 |
|
|
// Code barres |
333 |
|
|
$this->valF["code_barres"] = $idTypeCourrier . $idCourrier; |
334 |
fmichon |
1170 |
} |
335 |
|
|
|
336 |
|
|
// |
337 |
|
|
function triggermodifier($id,&$db,$val,$DEBUG) { |
338 |
|
|
// |
339 |
|
|
$this->calculDateLimite(); |
340 |
|
|
} |
341 |
|
|
|
342 |
|
|
// |
343 |
nhaye |
532 |
function triggerajouterapres($id,&$db,$val,$DEBUG) { |
344 |
|
|
|
345 |
|
|
// Verification de la demande de notif par mail |
346 |
fmichon |
1168 |
$sql= "SELECT abrege, libelle, notification_email, email FROM ".DB_PREFIXE. |
347 |
nhaye |
532 |
"service WHERE service ='".$this->valF['service']."'"; |
348 |
|
|
$res=$db->query($sql); |
349 |
|
|
$notif = $res->fetchrow(DB_FETCHMODE_ASSOC); |
350 |
|
|
if (database :: isError($sql))die($res->getMessage()."erreur ".$sql); |
351 |
|
|
if ($notif['notification_email']=='t') { |
352 |
|
|
|
353 |
|
|
// Recuperation des infos du dossier |
354 |
|
|
$sql= "SELECT dossier, terrain_adresse, terrain_adresse_complement, terrain_cp, terrain_ville |
355 |
|
|
FROM ".DB_PREFIXE."dossier WHERE dossier ='".$this->valF['dossier']."'"; |
356 |
|
|
$res=$db->query($sql); |
357 |
|
|
$dossier = $res->fetchrow(DB_FETCHMODE_ASSOC); |
358 |
|
|
|
359 |
|
|
// Definition des parametres d'envoi du mail |
360 |
|
|
$title=_("Consultation de services : dossier no")." ".$dossier['dossier']; |
361 |
|
|
$corps=_("Votre service est consulte concernant le dossier no")." ".$dossier['dossier']."<br/>". |
362 |
|
|
_("Il concerne le terrain situe a l'adresse :")." ".utf8_decode($dossier['terrain_adresse']). |
363 |
|
|
" ".utf8_decode($dossier['terrain_adresse_complement'])." ".utf8_decode($dossier['terrain_cp'])." ".$dossier['terrain_ville']."<br/>". |
364 |
fmichon |
668 |
_("Vous pouvez y acceder et rendre votre avis a l'adresse")." <a href='".$this->f->getParameter('services_consultes_lien_interne'). |
365 |
nhaye |
532 |
"scr/form.php?obj=consultation&action=3&idx=".$this->valF['consultation']."' >". |
366 |
fmichon |
668 |
_("Lien interne (services VDM)")."</a> "._("ou")." <a href='".$this->f->getParameter('services_consultes_lien_externe'). |
367 |
nhaye |
532 |
"scr/form.php?obj=consultation&action=3&idx=".$this->valF['consultation']."' >". |
368 |
|
|
_("Lien externe (hors VDM)")."</a>"; |
369 |
|
|
// Envoi du mail avec message de retour |
370 |
|
|
if($this->f->sendMail($title, $corps, $notif['email'])) { |
371 |
fmichon |
1168 |
$this->addToMessage(_("Envoi d'un mail de notification au service")." \"(".$notif['abrege'].") ".$notif["libelle"]."\""); |
372 |
nhaye |
532 |
} else { |
373 |
|
|
$this->addToMessage(_("L'envoi du mail de notification a echoue")); |
374 |
|
|
} |
375 |
|
|
} |
376 |
|
|
|
377 |
fmichon |
1005 |
|
378 |
|
|
// verification si envoi vers ERP est active |
379 |
|
|
if ($this->f->getParameter('option_erp') != "") { |
380 |
|
|
// s'il s'agit de la consultation ERP Secu, ERP Accessibilite, ou |
381 |
|
|
// deenvoie un |
382 |
|
|
// message a ERP |
383 |
|
|
$dossier_erp = $this->getFromDB("SELECT erp FROM ".DB_PREFIXE. |
384 |
|
|
"dossier WHERE dossier = '" .$this->valF['dossier'] . "'"); |
385 |
nhaye |
1140 |
$dossier_nature = $this->getFromDB("SELECT dossier_autorisation_type_detaille.code FROM ".DB_PREFIXE. |
386 |
|
|
"dossier |
387 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation |
388 |
|
|
ON dossier.dossier_autorisation=dossier_autorisation.dossier_autorisation |
389 |
|
|
INNER JOIN ".DB_PREFIXE."dossier_autorisation_type_detaille |
390 |
|
|
ON dossier_autorisation.dossier_autorisation_type_detaille |
391 |
|
|
= dossier_autorisation_type_detaille.dossier_autorisation_type_detaille |
392 |
|
|
WHERE dossier = '" . $this->valF['dossier'] . "'"); |
393 |
fmichon |
1005 |
if ($dossier_erp == 't' |
394 |
|
|
&& substr($dossier_nature, 0, 2) == $this->f->getParameter('erp_dossier_nature_pc')) { |
395 |
|
|
// envoi du message "Demande d'instruction d'un dossier PC pour un ERP" |
396 |
|
|
if (($this->valF['service'] == $this->f->getParameter('erp_service_accessibilite') |
397 |
|
|
|| $this->valF['service'] == $this->f->getParameter('erp_service_securite'))) { |
398 |
|
|
$msgenque = new MessageEnqueuer(); |
399 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
400 |
|
|
$msgenque->setConsultationIdentifier($this->valF['consultation']); |
401 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_INSTRUCTION_PC); |
402 |
|
|
} |
403 |
|
|
|
404 |
|
|
// envoi du message "Consultation ERP pour conformite" en cas de creation de la |
405 |
|
|
// consultation du service ERP Conformite |
406 |
|
|
if ($this->valF['service'] == $this->f->getParameter('erp_service_conformite')) { |
407 |
|
|
$msgenque = new MessageEnqueuer(); |
408 |
|
|
$msgenque->setDossierInstructionIdentifier($this->valF['dossier']); |
409 |
|
|
$msgenque->setConsultationIdentifier($this->valF['consultation']); |
410 |
|
|
$msgenque->enqueueMessage($msgenque::$ERP_CONSULTATION_CONFORMITE); |
411 |
|
|
} |
412 |
mlimic |
936 |
} |
413 |
fmichon |
1005 |
} // fin de if($this->f->getParameter('option_erp')) |
414 |
nhaye |
532 |
} |
415 |
mlimic |
843 |
|
416 |
mlimic |
936 |
/** |
417 |
|
|
* Fait une requette sql pour extraire la valeur d'un champ, et retourne |
418 |
|
|
* cette valeur |
419 |
|
|
* @param string $sql La requete sql a executer |
420 |
|
|
* @return La valeur du champs cherche, sinon NULL. En cas d'erreur de la BD |
421 |
|
|
* l'execution s'arrete. |
422 |
|
|
*/ |
423 |
|
|
function getFromDB($sql) { |
424 |
|
|
//$sql = "SELECT libelle FROM ".DB_PREFIXE."dossier WHERE dossier = '" . $dossier . "'"; |
425 |
|
|
$res = $this->db->limitquery($sql, 0, 1); |
426 |
vpihour |
1777 |
$this->f->addToLog("getDossierERPSpecification(): db->limitquery(\"". |
427 |
mlimic |
936 |
str_replace(",",", ",$sql)."\", 0, 1);", VERBOSE_MODE); |
428 |
|
|
// Si une erreur survient on die |
429 |
|
|
if (database::isError($res, true)) { |
430 |
|
|
// Appel de la methode de recuperation des erreurs |
431 |
|
|
$this->erreur_db($res->getDebugInfo(), $res->getMessage(), 'instruction'); |
432 |
|
|
} |
433 |
|
|
// retourne la nature du dossier |
434 |
|
|
while ($row =& $res->fetchRow()) { |
435 |
|
|
return $row[0]; |
436 |
|
|
} |
437 |
|
|
// la nature n'etait pas trouve, ce qui ne devrait pas se passer |
438 |
|
|
return NULL; |
439 |
|
|
|
440 |
|
|
} |
441 |
|
|
|
442 |
fraynaud |
20 |
// ============================================= |
443 |
|
|
// calcul de date avec ajout de mois (delais) |
444 |
|
|
// [add months (delay) and calculation final date] |
445 |
|
|
// limite ? => voir fonction instruction |
446 |
|
|
// ============================================= |
447 |
|
|
function moisdate($date,$delaimois) { |
448 |
|
|
// rajout de mois à une date (moins de 12) |
449 |
|
|
$temp = explode("-" , $date); |
450 |
|
|
$jour = (int) $temp[2]; |
451 |
|
|
$mois = (int) $temp[1]; |
452 |
|
|
$annee = (int) $temp[0]; |
453 |
|
|
$mois=$mois+$delaimois; |
454 |
|
|
// calcul mois annee |
455 |
|
|
if($mois>12){ |
456 |
|
|
$mois=$mois-12; |
457 |
|
|
$annee=$annee+1; |
458 |
|
|
} |
459 |
|
|
// Calcul du nombre de jours dans le mois sélectionné |
460 |
|
|
switch($mois) { |
461 |
|
|
case "2": |
462 |
|
|
if ($annee % 4 == 0 && $annee % 100 != 0 || $annee % 400 == 0) |
463 |
|
|
$jourmax = 29; |
464 |
|
|
else |
465 |
|
|
$jourmax = 28; |
466 |
|
|
break; |
467 |
|
|
case "4": |
468 |
|
|
case "6": |
469 |
|
|
case "9": |
470 |
|
|
case "11": |
471 |
|
|
$jourmax = 30; |
472 |
|
|
break; |
473 |
|
|
default: |
474 |
|
|
$jourmax = 31; |
475 |
|
|
} |
476 |
|
|
if ($jour > $jourmax) |
477 |
|
|
$jour = $jourmax; |
478 |
|
|
return $annee."-".$mois."-".$jour ; |
479 |
|
|
} |
480 |
vpihour |
497 |
|
481 |
nhaye |
569 |
// ============================================= |
482 |
vpihour |
497 |
// Ajout du fielset |
483 |
|
|
// Add fieldset |
484 |
|
|
// ============================================= |
485 |
nhaye |
569 |
function setLayout(&$form, $maj){ |
486 |
fmichon |
671 |
|
487 |
|
|
// Modification layout : écran de retour d'avis permettant |
488 |
|
|
// uniquement la saisie des trois champs : avis, motivation et fichier |
489 |
|
|
if ($this->f->isAccredited('consultation_consulter_autre_que_retour_avis')) { |
490 |
|
|
|
491 |
nhaye |
569 |
//Champs sur lequel s'ouvre le fieldset |
492 |
|
|
$form->setBloc('dossier','D',""); |
493 |
|
|
$form->setFieldset('dossier','D',_('Consultation')); |
494 |
|
|
|
495 |
|
|
//Champs sur lequel se ferme le fieldset |
496 |
|
|
$form->setFieldset('date_envoi','F',''); |
497 |
|
|
$form->setBloc('date_envoi','F'); |
498 |
fmichon |
671 |
|
499 |
nhaye |
569 |
} |
500 |
fmichon |
671 |
|
501 |
|
|
// MODE - autre que AJOUTER alors on affiche un fieldset retour |
502 |
|
|
// d'avis |
503 |
|
|
if ($maj != 0) { |
504 |
|
|
|
505 |
nhaye |
569 |
//Champs sur lequel s'ouvre le fieldset |
506 |
|
|
$form->setBloc('date_reception','D',""); |
507 |
|
|
$form->setFieldset('date_reception','D',_('Retour d\'avis')); |
508 |
fmichon |
671 |
|
509 |
nhaye |
569 |
//Champs sur lequel se ferme le fieldset |
510 |
|
|
$form->setFieldset('lu','F',''); |
511 |
|
|
$form->setBloc('lu','F'); |
512 |
fmichon |
671 |
|
513 |
nhaye |
569 |
} |
514 |
|
|
} |
515 |
nhaye |
595 |
|
516 |
|
|
/** Surcharge de la methode retour afin de retourner sur la page de saisie de |
517 |
|
|
* code barre si besoin |
518 |
|
|
**/ |
519 |
|
|
function retour($premier = 0, $recherche = "", $tricol = "") { |
520 |
|
|
$params ="obj=".get_class($this); |
521 |
|
|
if($this->getParameter("retour")=="form") { |
522 |
|
|
$params .= "&idx=".$this->getParameter("idx"); |
523 |
|
|
$params .= "&action=3"; |
524 |
|
|
} |
525 |
|
|
$params .= "&premier=".$this->getParameter("premier"); |
526 |
|
|
$params .= "&tricol=".$this->getParameter("tricol"); |
527 |
|
|
$params .= "&recherche=".$this->getParameter("recherche"); |
528 |
|
|
$params .= "&selectioncol=".$this->getParameter("selectioncol"); |
529 |
|
|
$params .= "&advs_id=".$this->getParameter("advs_id"); |
530 |
|
|
$params .= "&valide=".$this->getParameter("valide"); |
531 |
|
|
echo "\n<a class=\"retour\" "; |
532 |
|
|
echo "href=\""; |
533 |
|
|
// |
534 |
|
|
|
535 |
|
|
if($this->getParameter("retour")=="form" AND !($this->getParameter("validation")>0 AND $this->getParameter("maj")==2 AND $this->correct)) { |
536 |
|
|
echo "form.php?".$params; |
537 |
fmichon |
1666 |
} elseif($this->getParameter("retour")=="suivi_retours_de_consultation") { |
538 |
|
|
echo "../app/suivi_retours_de_consultation.php"; |
539 |
nhaye |
595 |
} else { |
540 |
|
|
echo "tab.php?".$params; |
541 |
|
|
} |
542 |
|
|
// |
543 |
|
|
echo "\""; |
544 |
|
|
echo ">"; |
545 |
|
|
// |
546 |
|
|
echo _("Retour"); |
547 |
|
|
// |
548 |
|
|
echo "</a>\n"; |
549 |
|
|
} |
550 |
fmichon |
938 |
|
551 |
|
|
/** |
552 |
nhaye |
802 |
* Surcharge du bouton retour pour popup |
553 |
|
|
*/ |
554 |
|
|
function retoursousformulaire($idxformulaire, $retourformulaire, $val, |
555 |
|
|
$objsf, $premiersf, $tricolsf, $validation, |
556 |
|
|
$idx, $maj, $retour) { |
557 |
|
|
if($retourformulaire === "demande_avis_encours") { |
558 |
|
|
echo "\n<a class=\"retour\" "; |
559 |
|
|
echo "href=\""; |
560 |
|
|
echo "#"; |
561 |
|
|
echo "\" "; |
562 |
|
|
echo ">"; |
563 |
|
|
// |
564 |
|
|
echo _("Retour"); |
565 |
|
|
// |
566 |
|
|
echo "</a>\n"; |
567 |
|
|
} else { |
568 |
|
|
parent::retoursousformulaire($idxformulaire, $retourformulaire, $val, |
569 |
|
|
$objsf, $premiersf, $tricolsf, $validation, |
570 |
|
|
$idx, $maj, $retour); |
571 |
|
|
} |
572 |
|
|
} |
573 |
vpihour |
1784 |
|
574 |
vpihour |
1881 |
/** |
575 |
|
|
* Ajout des contraintes spécifiques pour l'ajout d'un fichier en retour de |
576 |
|
|
* consultation |
577 |
|
|
*/ |
578 |
|
|
function setSelect(&$form, $maj,&$db,$debug) { |
579 |
|
|
parent::setSelect($form, $maj,$db,$debug); |
580 |
|
|
|
581 |
|
|
//Seulement dans le cas d'un retour d'avis |
582 |
|
|
if($this->retourformulaire == "demande_avis_encours") { |
583 |
|
|
|
584 |
|
|
//Tableau des contraintes spécifiques |
585 |
|
|
$params = array( |
586 |
|
|
"constraint" => array( |
587 |
|
|
"size_max" => 2, |
588 |
|
|
"extension" => ".pdf" |
589 |
|
|
), |
590 |
|
|
"metadata" => array() |
591 |
|
|
); |
592 |
|
|
|
593 |
|
|
$form->setSelect("fichier", $params); |
594 |
|
|
} |
595 |
|
|
} |
596 |
fraynaud |
3 |
}// fin classe |
597 |
nhaye |
509 |
?> |