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