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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 638 - (hide annotations)
Fri Nov 9 10:14:19 2012 UTC (12 years, 2 months ago) by nhaye
File size: 13212 byte(s)
Modification du retour d'erreur de la méthode d'enregistrement de consultation,
ajout de commentaires et modification du nom de fichier en fonction de la réussite ou non de l'enregistrement

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26