/[openfoncier]/trunk/obj/consultation.class.php
ViewVC logotype

Annotation of /trunk/obj/consultation.class.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 696 - (hide annotations)
Thu Nov 15 10:13:21 2012 UTC (12 years, 2 months ago) by nhaye
File size: 14851 byte(s)
Modification du test d'accessibilité de l'élément

1 fraynaud 3 <?php
2     //$Id$
3     //gen openMairie le 10/02/2011 20:32
4     require_once ("../gen/obj/consultation.class.php");
5    
6     class consultation extends consultation_gen {
7 nhaye 601
8 fraynaud 20 function consultation($id,&$db,$debug) {
9     $this->constructeur($id,$db,$debug);
10     }// fin constructeur
11    
12     function setValsousformulaire(&$form,$maj,$validation,$idxformulaire,$retourformulaire,$typeformulaire){
13     if ($validation==0) {
14     if ($maj == 0){
15 nhaye 569 $form->setVal("dossier", $idxformulaire);
16     $form->setVal("date_envoi",date('d/m/Y'));
17 fraynaud 20 }
18 nhaye 587 if($maj == 1) {
19 nhaye 594 if($this->f->isAccredited('consultation_retour_avis_suivi') OR
20     $this->f->isAccredited('consultation_retour_avis_service')) {
21     $form->setVal("date_retour",date('d/m/Y'));
22     }
23 nhaye 587 }
24 fraynaud 20 }
25     }
26 nhaye 587
27     function setVal(&$form, $maj, $validation, &$db) {
28     if($maj == 1) {
29     $form->setVal("date_retour",date('d/m/Y'));
30     }
31     }
32 fraynaud 20
33 nhaye 561 function setvalF($val) {
34     parent::setValF($val);
35 nhaye 598 if($this->getParameter('maj')==0) {
36 nhaye 587 $this->valF["date_reception"]=$this->valF["date_envoi"];
37     }
38 nhaye 598
39 nhaye 561 // Si un retour d'avis est modifie on passe "lu" a false
40 nhaye 598 if($this->getParameter('maj')==1 AND (
41     $this->val[array_search("avis_consultation",$this->champs)] != $val["avis_consultation"] OR
42     $this->val[array_search("date_retour",$this->champs)] != $val["date_retour"] OR
43     $this->val[array_search("motivation",$this->champs)] != $val["motivation"] OR
44 nhaye 674 $this->val[array_search("fichier",$this->champs)] != $val["fichier"])
45 nhaye 598 ) {
46     $this->valF["lu"]=false;
47 nhaye 561 }
48 nhaye 675 }
49    
50     function verifier($val, &$db, $DEBUG) {
51     parent::verifier($val, $db, $DEBUG);
52 nhaye 638 // Si le fichier envoye est different de l'existant
53 fmichon 665 if (isset($this->val[array_search("fichier",$this->champs)])
54     && $this->val[array_search("fichier",$this->champs)] != $val["fichier"]
55     && $this->valF['fichier']!="") {
56 nhaye 638 // Si le fichier existe dans tmp
57     if(file_exists("../tmp/".$this->valF['fichier'])) {
58     $contents=file_get_contents("../tmp/".$this->valF['fichier']);
59     // On essaye de l'enregistrer
60     $res = $this->f->storeDecisionFile($contents, $this->valF['fichier'],
61     $this->valF['dossier'],
62     'consultation_'.$this->valF['consultation']."_");
63     // Si l'enregistrement s'est bien deroule
64     // on supprime le fichier dans tmp
65     // on met a jour valF avec le nouveau nom du fichier
66     if($res===true){
67     $this->addToMessage(_("Sauvegarde du fichier reussi"));
68 nhaye 637 unlink("../tmp/".$this->valF['fichier']);
69 nhaye 638 $this->valF['fichier']='consultation_'.$this->valF['consultation']."_".$this->valF['fichier'];
70     // Sinon on supprime le fichier dans tmp
71     // on reinitialise le nom du fichier a l'ancienne valeur
72     } else {
73 nhaye 675 $this->correct = false;
74 nhaye 638 $this->addToMessage($res);
75     unlink("../tmp/".$this->valF['fichier']);
76     $this->valF['fichier']=$this->val[array_search("fichier",$this->champs)];
77 nhaye 637 }
78     }
79     }
80 nhaye 561 }
81    
82 fraynaud 20 function setType(&$form,$maj) {
83 fmichon 671 // Appel du parent
84 nhaye 459 parent::setType($form,$maj);
85 fmichon 671 // MODE - AJOUTER
86     if ($maj == 0) {
87     // On cache alors tous les champs que nous ne voulons pas voir
88     // apparaître dans le formulaire d'ajout (principalement les
89     // informations sur le retour d'avis)
90     $form->setType('date_retour', 'hidden');
91     $form->setType('date_reception', 'hidden');
92     $form->setType('date_limite', 'hidden');
93     $form->setType('avis_consultation', 'hidden');
94     $form->setType('motivation', 'hidden');
95     $form->setType('fichier', 'hidden');
96     $form->setType('lu', 'hidden');
97     // On permet la modification de certains champs
98     $form->setType('dossier', 'hiddenstatic');
99     $form->setType('service', 'select');
100     $form->setType('date_envoi', 'date2');
101     }
102     // MODE - MODIFIER
103     if ($maj == 1) {
104    
105     // On affiche en statique les informations qui ne sont plus
106     // modifiables
107     $form->setType('dossier', 'hiddenstatic');
108     $form->setType('date_envoi', 'hiddenstaticdate');
109     $form->setType('date_limite', 'hiddenstaticdate');
110     $form->setType('service', 'selecthiddenstatic');
111    
112     // La date de réception ne peut être modifiée que par un
113     // utilisateur en ayant spécifiquement la permission
114     if($this->f->isAccredited('consultation_modifier_date_reception')) {
115     $form->setType('date_reception', 'date2');
116     } else {
117     $form->setType('date_reception', 'hiddenstaticdate');
118     }
119    
120     // Le marqueur lu/non lu ne peut être modifié que par un
121     // utilisateur en ayant spécifiquement la permission
122     if ($this->f->isAccredited('consultation_modifier_lu')) {
123     $form->setType('lu', 'checkbox');
124     } else {
125     $form->setType('lu', 'hidden');
126     }
127    
128     // Gestion du type du widget sur le champ fichier
129     if($this->val[array_search("fichier",$this->champs)]=="" OR
130     $this->f->isAccredited('consultation_modifier_fichier')) {
131     // Si il n'y a jamais eu de fichier enregistré ou que
132     // l'utilisateur a spécifiquement les droits pour modifier
133     // un fichier déjà enregistré alors on positionne un type
134     // de widget modifiable
135     $form->setType('fichier', 'tmpUpload');
136     } else {
137     // Si non on affiche uniquement le nom du fichier
138 nhaye 674 $form->setType('fichier', 'tmpUploadStatic');
139 fmichon 671 }
140    
141     // Modification layout : écran de retour d'avis permettant
142     // uniquement la saisie des trois champs : avis, motivation et fichier
143     if (!$this->f->isAccredited('consultation_consulter_autre_que_retour_avis')) {
144    
145     // On cache alors tous les champs que nous ne voulons pas voir
146     $form->setType('dossier', 'hidden');
147     $form->setType('service', 'hidden');
148     $form->setType('date_envoi', 'hidden');
149     $form->setType('date_retour', 'hidden');
150     $form->setType('date_reception', 'hidden');
151 fraynaud 20 $form->setType('date_limite', 'hidden');
152 nhaye 561 $form->setType('lu', 'hidden');
153 fmichon 671
154 fraynaud 20 }
155 fmichon 671
156 fraynaud 20 }
157 nhaye 674 // MODE - CONSULTER
158     if ( $maj == 3 ) {
159     $form->setType('fichier', 'tmpUploadStatic');
160     }
161 fmichon 671 //// On cache la clé primaire
162     //$form->setType('consultation', 'hidden');
163 fraynaud 20 }
164    
165     // TRIGGER AVANT MODIFICATION DE DONNEES
166     // trigger before modification data
167     function triggerajouter($id,&$db,$val,$DEBUG) {
168     // mise a jour instruction avec evenement [return delay]
169 nhaye 532 if ($this->valF['date_envoi']!=""){
170 fraynaud 242 $sql= "select delai from ".DB_PREFIXE."service where service ='".$this->valF['service']."'";
171 fraynaud 41 $delai = $db->getOne($sql);
172     $this->valF['date_limite'] = $this->moisdate($this->valF['date_envoi'],$delai);
173 nhaye 532 $this->addToMessage(_("delai")." ".
174 fraynaud 41 _("retour")." ".$delai." "._("mois")." -> ".
175 nhaye 532 _("retour")." ".$this->valF['date_limite']."<br>");
176     $this->valF['lu'] = true;
177 fraynaud 41 }
178 nhaye 532
179 fraynaud 20 }
180 nhaye 532
181     function triggerajouterapres($id,&$db,$val,$DEBUG) {
182    
183     // Verification de la demande de notif par mail
184     $sql= "SELECT abrege, notification_email, email FROM ".DB_PREFIXE.
185     "service WHERE service ='".$this->valF['service']."'";
186     $res=$db->query($sql);
187     $notif = $res->fetchrow(DB_FETCHMODE_ASSOC);
188     if (database :: isError($sql))die($res->getMessage()."erreur ".$sql);
189     if ($notif['notification_email']=='t') {
190    
191     // Recuperation des infos du dossier
192     $sql= "SELECT dossier, terrain_adresse, terrain_adresse_complement, terrain_cp, terrain_ville
193     FROM ".DB_PREFIXE."dossier WHERE dossier ='".$this->valF['dossier']."'";
194     $res=$db->query($sql);
195     $dossier = $res->fetchrow(DB_FETCHMODE_ASSOC);
196    
197     // Definition des parametres d'envoi du mail
198     $title=_("Consultation de services : dossier no")." ".$dossier['dossier'];
199     $corps=_("Votre service est consulte concernant le dossier no")." ".$dossier['dossier']."<br/>".
200     _("Il concerne le terrain situe a l'adresse :")." ".utf8_decode($dossier['terrain_adresse']).
201     " ".utf8_decode($dossier['terrain_adresse_complement'])." ".utf8_decode($dossier['terrain_cp'])." ".$dossier['terrain_ville']."<br/>".
202 fmichon 668 _("Vous pouvez y acceder et rendre votre avis a l'adresse")." <a href='".$this->f->getParameter('services_consultes_lien_interne').
203 nhaye 532 "scr/form.php?obj=consultation&action=3&idx=".$this->valF['consultation']."' >".
204 fmichon 668 _("Lien interne (services VDM)")."</a> "._("ou")." <a href='".$this->f->getParameter('services_consultes_lien_externe').
205 nhaye 532 "scr/form.php?obj=consultation&action=3&idx=".$this->valF['consultation']."' >".
206     _("Lien externe (hors VDM)")."</a>";
207     // Envoi du mail avec message de retour
208     if($this->f->sendMail($title, $corps, $notif['email'])) {
209     $this->addToMessage(_("Envoi d'un mail de notification au service")." ".$notif['abrege']);
210     } else {
211     $this->addToMessage(_("L'envoi du mail de notification a echoue"));
212     }
213     }
214    
215     }
216 fraynaud 20
217     // =============================================
218     // calcul de date avec ajout de mois (delais)
219     // [add months (delay) and calculation final date]
220     // limite ? => voir fonction instruction
221     // =============================================
222     function moisdate($date,$delaimois) {
223     // rajout de mois à une date (moins de 12)
224     $temp = explode("-" , $date);
225     $jour = (int) $temp[2];
226     $mois = (int) $temp[1];
227     $annee = (int) $temp[0];
228     $mois=$mois+$delaimois;
229     // calcul mois annee
230     if($mois>12){
231     $mois=$mois-12;
232     $annee=$annee+1;
233     }
234     // Calcul du nombre de jours dans le mois sélectionné
235     switch($mois) {
236     case "2":
237     if ($annee % 4 == 0 && $annee % 100 != 0 || $annee % 400 == 0)
238     $jourmax = 29;
239     else
240     $jourmax = 28;
241     break;
242     case "4":
243     case "6":
244     case "9":
245     case "11":
246     $jourmax = 30;
247     break;
248     default:
249     $jourmax = 31;
250     }
251     if ($jour > $jourmax)
252     $jour = $jourmax;
253     return $annee."-".$mois."-".$jour ;
254     }
255 vpihour 497
256 nhaye 569 // =============================================
257 vpihour 497 // Ajout du fielset
258     // Add fieldset
259     // =============================================
260 nhaye 569 function setLayout(&$form, $maj){
261 fmichon 671
262     // Modification layout : écran de retour d'avis permettant
263     // uniquement la saisie des trois champs : avis, motivation et fichier
264     if ($this->f->isAccredited('consultation_consulter_autre_que_retour_avis')) {
265    
266 nhaye 569 //Champs sur lequel s'ouvre le fieldset
267     $form->setBloc('dossier','D',"");
268     $form->setFieldset('dossier','D',_('Consultation'));
269    
270     //Champs sur lequel se ferme le fieldset
271     $form->setFieldset('date_envoi','F','');
272     $form->setBloc('date_envoi','F');
273 fmichon 671
274 nhaye 569 }
275 fmichon 671
276     // MODE - autre que AJOUTER alors on affiche un fieldset retour
277     // d'avis
278     if ($maj != 0) {
279    
280 nhaye 569 //Champs sur lequel s'ouvre le fieldset
281     $form->setBloc('date_reception','D',"");
282     $form->setFieldset('date_reception','D',_('Retour d\'avis'));
283 fmichon 671
284 nhaye 569 //Champs sur lequel se ferme le fieldset
285     $form->setFieldset('lu','F','');
286     $form->setBloc('lu','F');
287 fmichon 671
288 nhaye 569 }
289     }
290 nhaye 595
291     /** Surcharge de la methode retour afin de retourner sur la page de saisie de
292     * code barre si besoin
293     **/
294     function retour($premier = 0, $recherche = "", $tricol = "") {
295     $params ="obj=".get_class($this);
296     if($this->getParameter("retour")=="form") {
297     $params .= "&amp;idx=".$this->getParameter("idx");
298     $params .= "&amp;action=3";
299     }
300     $params .= "&amp;premier=".$this->getParameter("premier");
301     $params .= "&amp;tricol=".$this->getParameter("tricol");
302     $params .= "&amp;recherche=".$this->getParameter("recherche");
303     $params .= "&amp;selectioncol=".$this->getParameter("selectioncol");
304     $params .= "&amp;advs_id=".$this->getParameter("advs_id");
305     $params .= "&amp;valide=".$this->getParameter("valide");
306     echo "\n<a class=\"retour\" ";
307     echo "href=\"";
308     //
309    
310     if($this->getParameter("retour")=="form" AND !($this->getParameter("validation")>0 AND $this->getParameter("maj")==2 AND $this->correct)) {
311     echo "form.php?".$params;
312     } elseif($this->getParameter("retour")=="avis_code_barre") {
313     echo "../app/avis_code_barre.php";
314     } else {
315     echo "tab.php?".$params;
316     }
317     //
318     echo "\"";
319     echo ">";
320     //
321     echo _("Retour");
322     //
323     echo "</a>\n";
324     }
325 nhaye 569
326 nhaye 680 /**
327     * Méthode de verification d'accèssibilité de la consultation
328     * à l'utilisateur connecté
329     */
330     function canAccess() {
331 nhaye 685 parent::canAccess();
332 nhaye 680 if($this->f->isUserServiceExt()) {
333     // On compare l'id du service de la consultation
334     // aux id des services de utilisateur connecté
335     foreach($this->f->om_utilisateur['service'] as $service) {
336     if($this->val[array_search("service",$this->champs)]===$service['service']) {
337     return true;
338     }
339     }
340 nhaye 685 return false;
341 nhaye 696 } else{
342     return true;
343 nhaye 680 }
344     }
345 fraynaud 3 }// fin classe
346 nhaye 509 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26