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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 668 - (hide annotations)
Mon Nov 12 14:42:40 2012 UTC (12 years, 2 months ago) by fmichon
File size: 13330 byte(s)
Renommage des deux paramètres concernant l'accès externe des services consultés

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26