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