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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 674 - (hide annotations)
Tue Nov 13 11:05:41 2012 UTC (12 years, 2 months ago) by nhaye
File size: 14056 byte(s)
Ajout du script d'ouverture de fichier, création du widget de formulaire appelant ce script.
Modification du type de champ fichier dans la classe consultation.

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26