1 |
<?php |
2 |
//$Id$ |
3 |
//gen openMairie le 08/11/2012 14:00 |
4 |
|
5 |
require_once ("../gen/obj/demande.class.php"); |
6 |
|
7 |
class demande extends demande_gen { |
8 |
|
9 |
var $valIdDemandeur = array("petitionnaire_principal" => "", |
10 |
"delegataire" => "", |
11 |
"petitionnaire" => array()); |
12 |
var $postedIdDemandeur = array("petitionnaire_principal" => "", |
13 |
"delegataire" => "", |
14 |
"petitionnaire" => array()); |
15 |
|
16 |
var $autreDossierEnCour; |
17 |
|
18 |
function demande($id,&$db,$debug) { |
19 |
$this->constructeur($id,$db,$debug); |
20 |
}// fin constructeur |
21 |
|
22 |
function setValF($val) { |
23 |
parent::setValF($val); |
24 |
// Récupération des id demandeurs postés |
25 |
$this->getPostedValues(); |
26 |
//$this->valIdDemandeur=$this->postedIdDemandeur; |
27 |
} |
28 |
|
29 |
/** |
30 |
* Méthode permettant de récupérer les valeurs du dossier d'autorisation |
31 |
* correspondant à la nouvelle demande |
32 |
*/ |
33 |
function getValFromDossier($dossier_autorisation) { |
34 |
include "../sql/pgsql/demande.form.inc.php"; |
35 |
$sql=str_replace("<idx>",$this->getParameter("idx_dossier"), |
36 |
$sql_infos_dossier); |
37 |
$res = $this->db->query($sql); |
38 |
$this->f->addToLog("getValFromDossier(): db->query(\"".$sql."\")", VERBOSE_MODE); |
39 |
if ( database::isError($res)){ |
40 |
die(); |
41 |
} |
42 |
$row = & $res->fetchRow(DB_FETCHMODE_ASSOC); |
43 |
return $row; |
44 |
} |
45 |
|
46 |
/* |
47 |
* La date du jour par défaut dans le champs date_demande |
48 |
* Put the date of the day by default into the field date_demande |
49 |
*/ |
50 |
function setVal(&$form, $maj, $validation, &$db) { |
51 |
if($maj == 0) { |
52 |
$form->setVal("date_demande",date('d/m/Y')); |
53 |
|
54 |
// Récupération des valeurs du dossier d'autorisation correspondant |
55 |
if($this->getParameter("idx_dossier") != "") { |
56 |
$val_autorisation = $this->getValFromDossier( |
57 |
$this->getParameter("idx_dossier")); |
58 |
foreach($val_autorisation as $champ => $value) { |
59 |
$form->setVal($champ,$value); |
60 |
} |
61 |
} |
62 |
} |
63 |
} |
64 |
function getDataSubmit() { |
65 |
|
66 |
$datasubmit = parent::getDataSubmit(); |
67 |
if($this->getParameter("idx_dossier") != "") { |
68 |
$datasubmit .= "&idx_dossier=".$this->getParameter("idx_dossier"); |
69 |
} |
70 |
return $datasubmit; |
71 |
} |
72 |
|
73 |
/** |
74 |
* Méthode de verification du contenu |
75 |
*/ |
76 |
function verifier($val, &$db, $DEBUG) { |
77 |
parent::verifier($val, $db, $DEBUG); |
78 |
if(!isset($this->postedIdDemandeur["petitionnaire_principal"]) OR |
79 |
empty($this->postedIdDemandeur["petitionnaire_principal"])) { |
80 |
$this->correct = false; |
81 |
$this->addToMessage(_("La saisie d'un petitionnaire principal est obligatoire.")); |
82 |
} |
83 |
} |
84 |
|
85 |
/** |
86 |
* Configuration des select |
87 |
*/ |
88 |
function setSelect(&$form, $maj,&$db,$debug) { |
89 |
parent::setSelect($form, $maj,$db,$debug); |
90 |
|
91 |
if(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc.php")) |
92 |
include ("../sql/".$db->phptype."/".$this->table.".form.inc.php"); |
93 |
elseif(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc")) |
94 |
include ("../sql/".$db->phptype."/".$this->table.".form.inc"); |
95 |
|
96 |
//Récupération de paramètre pour le rechargement ajax du select |
97 |
$idx_dossier = $this->getParameter("idx_dossier"); |
98 |
$datd = $this->getParameter("datd"); |
99 |
|
100 |
$contenu = array(); |
101 |
|
102 |
$sql_demande_type = "SELECT demande_type.demande_type, demande_type.libelle FROM ".DB_PREFIXE."demande_type |
103 |
LEFT OUTER JOIN ".DB_PREFIXE."lien_demande_type_etat_dossier_autorisation |
104 |
ON lien_demande_type_etat_dossier_autorisation.demande_type=demande_type.demande_type |
105 |
LEFT OUTER JOIN ".DB_PREFIXE."dossier_autorisation |
106 |
ON lien_demande_type_etat_dossier_autorisation.etat_dossier_autorisation= |
107 |
dossier_autorisation.etat_dossier_autorisation |
108 |
LEFT OUTER JOIN ".DB_PREFIXE."dossier |
109 |
ON dossier.dossier_autorisation=dossier_autorisation.dossier_autorisation"; |
110 |
|
111 |
// Ajout de filtre sur la requête (initial) |
112 |
if(isset($idx_dossier) AND $idx_dossier != "") { |
113 |
$sql_demande_type .= " WHERE demande_type.demande_nature = 2 "; |
114 |
|
115 |
// ajout du numéro de dossier existant pour tester l'état du DA |
116 |
$sql_demande_type .= "AND dossier.dossier = '".$idx_dossier."' "; |
117 |
} else { |
118 |
$sql_demande_type .= " WHERE demande_type.demande_nature = 1 "; |
119 |
} |
120 |
if(isset($_POST["dossier_autorisation_type_detaille"]) AND $_POST["dossier_autorisation_type_detaille"] != "") { |
121 |
$datd = $_POST["dossier_autorisation_type_detaille"]; |
122 |
} |
123 |
// Ajout de filtre sur la requête (dossier_autorisation_type_detaille) |
124 |
if(isset($datd) AND $datd != "") { |
125 |
$sql_demande_type .= " AND demande_type.dossier_autorisation_type_detaille = ".$datd; |
126 |
} else { |
127 |
$datd = $this->getVal("dossier_autorisation_type_detaille"); |
128 |
if ($datd != "") { |
129 |
$sql_demande_type .= " AND demande_type.dossier_autorisation_type_detaille = ".$datd; |
130 |
} |
131 |
} |
132 |
$sql_demande_type .= " ORDER BY demande_type.libelle"; |
133 |
$res = $db->query($sql_demande_type); |
134 |
|
135 |
// logger |
136 |
$this->f->addToLog("setSelect(): db->query(\"".$sql_demande_type."\");", |
137 |
VERBOSE_MODE); |
138 |
if ( database::isError($res)){ |
139 |
die(); |
140 |
} |
141 |
|
142 |
$contenu[0][0] = ''; |
143 |
$contenu[1][0] = _('choisir')." "._("demande_type"); |
144 |
|
145 |
$k=1; |
146 |
while($row =& $res->fetchRow()){ |
147 |
|
148 |
$contenu[0][$k] = $row[0]; |
149 |
$contenu[1][$k] = $row[1]; |
150 |
$k++; |
151 |
} |
152 |
|
153 |
$form->setSelect("demande_type", $contenu); |
154 |
|
155 |
} |
156 |
/* |
157 |
* Ajout du fielset |
158 |
* Add fieldset |
159 |
*/ |
160 |
function setLayout(&$form, $maj){ |
161 |
if ( $maj < 2 OR $maj == 3 ) { |
162 |
|
163 |
/*Champ sur lequel s'ouvre le bloc 1 */ |
164 |
$form->setBloc('dossier_autorisation_type_detaille','D',"","dossier_type col_8"); |
165 |
|
166 |
$form->setFieldset('dossier_autorisation_type_detaille','D' |
167 |
,_('Type de dossier/demande')); |
168 |
$form->setFieldset('demande_type','F',''); |
169 |
|
170 |
$form->setBloc('demande_type','F'); |
171 |
/*Fin bloc 1*/ |
172 |
|
173 |
/*Champ sur lequel s'ouvre le bloc 2 */ |
174 |
$form->setBloc('date_demande','D',"","col_4 demande_hidden_bloc"); |
175 |
$form->setFieldset('date_demande','D',_('Date de la demande')); |
176 |
$form->setFieldset('date_demande','F',''); |
177 |
$form->setBloc('date_demande','F'); |
178 |
/*Fin bloc 2*/ |
179 |
|
180 |
/*Champ sur lequel s'ouvre le bloc 3 */ |
181 |
$form->setBloc('terrain_references_cadastrales','D',"", |
182 |
"localisation col_12 demande_hidden_bloc"); |
183 |
$form->setFieldset('terrain_references_cadastrales','D',_('Localisation du terrain')); |
184 |
$form->setFieldset('terrain_superficie','F',''); |
185 |
$form->setBloc('terrain_superficie','F'); |
186 |
/*Fin bloc 4*/ |
187 |
|
188 |
} |
189 |
} |
190 |
|
191 |
/* |
192 |
* Ajoute des actions sur les deux premiers select |
193 |
* Add actions on the two first select |
194 |
*/ |
195 |
function setOnchange(&$form,$maj){ |
196 |
parent::setOnchange($form,$maj); |
197 |
$form->setOnchange("dossier_autorisation_type_detaille","changeDemandeType();"); |
198 |
$form->setOnchange("demande_type","showFormsDemande();"); |
199 |
} |
200 |
|
201 |
function setLib(&$form,$maj) { |
202 |
parent::setLib($form,$maj); |
203 |
//libelle des champs |
204 |
|
205 |
$form->setLib('complement',_('terrain_adresse')); |
206 |
} |
207 |
/* |
208 |
* Cache le champ terrain_references_cadastrales |
209 |
* Hide the fiels terrain_references_cadastrales |
210 |
*/ |
211 |
function setType(&$form,$maj) { |
212 |
parent::setType($form,$maj); |
213 |
|
214 |
$form->setType('dossier_instruction', 'hidden'); |
215 |
$form->setType('dossier_autorisation', 'hidden'); |
216 |
|
217 |
$form->setType('instruction_recepisse', 'hidden'); |
218 |
$form->setType('arrondissement', 'hidden'); |
219 |
|
220 |
// Si il s'agit d'une demande sur dossier existant on desactive tous les champs |
221 |
// sauf demande_type |
222 |
if(($maj == 0 AND $this-> getParameter("idx_dossier"))) { |
223 |
$form->setType('dossier_autorisation_type_detaille', 'selecthiddenstatic'); |
224 |
$form->setType('terrain_references_cadastrales', 'hiddenstatic'); |
225 |
$form->setType('terrain_adresse_voie_numero', 'hiddenstatic'); |
226 |
$form->setType('complement', 'hiddenstatic'); |
227 |
$form->setType('terrain_adresse_lieu_dit', 'hiddenstatic'); |
228 |
$form->setType('terrain_adresse_localite', 'hiddenstatic'); |
229 |
$form->setType('terrain_adresse_code_postal', 'hiddenstatic'); |
230 |
$form->setType('terrain_adresse_bp', 'hiddenstatic'); |
231 |
$form->setType('terrain_adresse_cedex', 'hiddenstatic'); |
232 |
$form->setType('terrain_superficie', 'hiddenstatic'); |
233 |
} |
234 |
if($maj == 1) { |
235 |
$form->setType('dossier_autorisation_type_detaille', 'selecthiddenstatic'); |
236 |
$form->setType('demande_type', 'selecthiddenstatic'); |
237 |
} |
238 |
if($maj == 3) { |
239 |
$form->setType('terrain_references_cadastrales', 'referencescadastralesstatic'); |
240 |
} |
241 |
|
242 |
} |
243 |
|
244 |
/** |
245 |
* Méthode permettant d'ajouter un dossier d'autorisation |
246 |
*/ |
247 |
function ajoutDossierAutorisation($id, &$db, $val, $DEBUG){ |
248 |
require_once '../obj/dossier_autorisation.class.php'; |
249 |
$dossier_autorisation = new dossier_autorisation("]",$db,$DEBUG); |
250 |
$id_etat_initial_da = $this->f->getParameter('etat_initial_dossier_autorisation'); |
251 |
$error = false; |
252 |
|
253 |
// Vérification de l'existance d'un état initial des DA dans la table om_parametre |
254 |
// afin d'éviter d'eventuelle erreur de base de données |
255 |
if(isset($id_etat_initial_da)) { |
256 |
$sql = "SELECT count(*) FROM ".DB_PREFIXE."etat_dossier_autorisation |
257 |
WHERE etat_dossier_autorisation = ".$id_etat_initial_da; |
258 |
$count = $this->db->getOne($sql); |
259 |
$this->f->addToLog("ajoutDossierAutorisation() : db->getOne(\"".$sql."\")", VERBOSE_MODE); |
260 |
if ( database::isError($count)){ |
261 |
die(); |
262 |
} |
263 |
if($count != 1) { |
264 |
$error = true; |
265 |
} else { |
266 |
// La méthode ajouter prend en paramètre un tableau associatif |
267 |
// contenant toutes les champs de la classe instanciée, |
268 |
// d'où l'initialisation du tableau en bouclant sur la liste des champs du DA |
269 |
foreach($dossier_autorisation->champs as $value) { |
270 |
$valAuto[$value] = NULL; |
271 |
} |
272 |
// Définition des valeurs à insérer |
273 |
$valAuto['dossier_autorisation']=""; |
274 |
$valAuto['exercice']=NULL; |
275 |
$valAuto['insee']=NULL; |
276 |
$valAuto['arrondissement']=NULL; |
277 |
$valAuto['etat_dossier_autorisation']=$this->f->getParameter('etat_initial_dossier_autorisation'); |
278 |
$valAuto['erp_numero_batiment']=NULL; |
279 |
$valAuto['erp_ouvert']=NULL; |
280 |
$valAuto['erp_arrete_decision']=NULL; |
281 |
$valAuto['dossier_autorisation_type_detaille']=$this->valF['dossier_autorisation_type_detaille']; |
282 |
$valAuto['depot_initial']=$this->dateDBToForm($this->valF['date_demande']); |
283 |
$valAuto['terrain_references_cadastrales']=$this->valF['terrain_references_cadastrales']; |
284 |
$valAuto['terrain_adresse_voie_numero']=$this->valF['terrain_adresse_voie_numero']; |
285 |
$valAuto['complement']=$this->valF['complement']; |
286 |
$valAuto['terrain_adresse_lieu_dit']=$this->valF['terrain_adresse_lieu_dit']; |
287 |
$valAuto['terrain_adresse_localite']=$this->valF['terrain_adresse_localite']; |
288 |
$valAuto['terrain_adresse_code_postal']=$this->valF['terrain_adresse_code_postal']; |
289 |
$valAuto['terrain_adresse_bp']=$this->valF['terrain_adresse_bp']; |
290 |
$valAuto['terrain_adresse_cedex']=$this->valF['terrain_adresse_cedex']; |
291 |
$valAuto['terrain_superficie']=$this->valF['terrain_superficie']; |
292 |
$valAuto['numero_version']=-1; |
293 |
// Ajout du dossier dans la base |
294 |
$dossier_autorisation->ajouter($valAuto, $db, $DEBUG); |
295 |
// Liaison du dossier ajouter à la demande |
296 |
$this->valF['dossier_autorisation'] = $dossier_autorisation->valF['dossier_autorisation']; |
297 |
} |
298 |
} else { |
299 |
$error = true; |
300 |
} |
301 |
// Affichage de l'erreur et stop de l'affichage |
302 |
if( $error ) { |
303 |
echo "</div>"; |
304 |
$class = "error"; |
305 |
$message = _("Erreur de parametrage. Contactez votre administrateur."); |
306 |
$this->f->displayMessage($class, $message); |
307 |
die(); |
308 |
} |
309 |
|
310 |
} |
311 |
|
312 |
function getCodeDemandeType($demande_type){ |
313 |
|
314 |
$sql = "SELECT |
315 |
code |
316 |
FROM |
317 |
".DB_PREFIXE."demande_type |
318 |
WHERE |
319 |
demande_type = ".$demande_type; |
320 |
$codeDemandeType = $this->db->getOne($sql); |
321 |
$this->addToLog("db->getone(\"".$sql."\");", VERBOSE_MODE); |
322 |
|
323 |
return $codeDemandeType; |
324 |
} |
325 |
|
326 |
/** |
327 |
* Méthode permettant d'ajouter un dossier d'instruction |
328 |
*/ |
329 |
function ajoutDossierInstruction($id, &$db, $val, $DEBUG, $dossier_instruction_type){ |
330 |
require_once '../obj/dossier.class.php'; |
331 |
$dossier = new dossier("]",$db,$DEBUG); |
332 |
foreach($dossier->champs as $value) { |
333 |
$valInstr[$value] = NULL; |
334 |
} |
335 |
require_once '../obj/dossier_autorisation_type_detaille.class.php'; |
336 |
$datd = new dossier_autorisation_type_detaille( |
337 |
$this->valF['dossier_autorisation_type_detaille'],$db,$DEBUG); |
338 |
|
339 |
/*Ajout de la variable dossier_instruction_type à l'objet dossier pour le |
340 |
* versionning |
341 |
*/ |
342 |
$dossier->setDossierInstructionType($dossier_instruction_type); |
343 |
|
344 |
// Définition des valeurs à entrée dans la table |
345 |
$valInstr['dossier_instruction_type']=$dossier_instruction_type; |
346 |
$valInstr['date_depot']=$this->dateDBToForm($this->valF['date_demande']); |
347 |
$valInstr['date_dernier_depot']=$this->dateDBToForm($this->valF['date_demande']); |
348 |
$valInstr['date_demande']=$this->dateDBToForm($this->valF['date_demande']); |
349 |
$valInstr['depot_initial']=$this->dateDBToForm($this->valF['date_demande']); |
350 |
$valInstr['terrain_references_cadastrales']=$this->valF['terrain_references_cadastrales']; |
351 |
$valInstr['terrain_adresse_voie_numero']=$this->valF['terrain_adresse_voie_numero']; |
352 |
$valInstr['complement']=$this->valF['complement']; |
353 |
$valInstr['terrain_adresse_lieu_dit']=$this->valF['terrain_adresse_lieu_dit']; |
354 |
$valInstr['terrain_adresse_localite']=$this->valF['terrain_adresse_localite']; |
355 |
$valInstr['terrain_adresse_code_postal']=$this->valF['terrain_adresse_code_postal']; |
356 |
$valInstr['terrain_adresse_bp']=$this->valF['terrain_adresse_bp']; |
357 |
$valInstr['terrain_adresse_cedex']=$this->valF['terrain_adresse_cedex']; |
358 |
$valInstr['terrain_superficie']=$this->valF['terrain_superficie']; |
359 |
$valInstr['description']=""; |
360 |
$valInstr['dossier_autorisation']=$this->valF['dossier_autorisation']; |
361 |
|
362 |
/* |
363 |
* Gestion de la qualification |
364 |
* */ |
365 |
//Récupérer le code du type de la demande |
366 |
$codeDemandeType = $this->getCodeDemandeType($val['demande_type']); |
367 |
|
368 |
//Marque le dossier comme à qualifier selon le type de dossier d'instruction |
369 |
if ( strcasecmp($codeDemandeType, "DI") == 0 || |
370 |
strcasecmp($codeDemandeType, "DT") == 0 || |
371 |
strcasecmp($codeDemandeType, "DM") == 0 || |
372 |
strcasecmp($codeDemandeType, "DP") == 0 || |
373 |
strcasecmp($codeDemandeType, "DTP") == 0 || |
374 |
strcasecmp($codeDemandeType, "DAACT") == 0 || |
375 |
strcasecmp($codeDemandeType, "DOC") == 0 ){ |
376 |
|
377 |
$valInstr['a_qualifier'] = TRUE; |
378 |
} |
379 |
|
380 |
// Récupération du cerfa pour le type d'instruction sélectionnée et valide |
381 |
$sql = "SELECT |
382 |
dossier_instruction_type.cerfa |
383 |
FROM |
384 |
".DB_PREFIXE."dossier_instruction_type |
385 |
JOIN |
386 |
".DB_PREFIXE."cerfa |
387 |
ON |
388 |
dossier_instruction_type.cerfa = cerfa.cerfa |
389 |
WHERE |
390 |
now()<=om_validite_fin |
391 |
AND now()>=om_validite_debut |
392 |
AND dossier_instruction_type=".$dossier_instruction_type; |
393 |
$valInstr['cerfa'] = $db->getOne($sql); |
394 |
$this->f->addToLog("ajoutDossierInstruction() : db->getone(\"".$sql."\");", VERBOSE_MODE); |
395 |
if ( database::isError($valInstr['cerfa'])){ |
396 |
die(); |
397 |
} |
398 |
$dossier->ajouter($valInstr, $db, $DEBUG); |
399 |
// Liaison du dossier ajouter à la demande |
400 |
$this->valF['dossier_instruction'] = $dossier->valF['dossier']; |
401 |
} |
402 |
|
403 |
/** |
404 |
* Méthode permettant d'ajouter les données techniques au dossier d'instruction |
405 |
*/ |
406 |
function ajoutDonneesTechniques($id, &$db, $val, $DEBUG){ |
407 |
|
408 |
require_once '../obj/donnees_techniques.class.php'; |
409 |
$donnees_techniques = new donnees_techniques("]",$db,$DEBUG); |
410 |
|
411 |
// Champs tous à NULL car seul le champ concernant le dossier d'instruction sera rempli |
412 |
foreach($donnees_techniques->champs as $value) { |
413 |
$val[$value] = NULL; |
414 |
} |
415 |
|
416 |
// Ajout du numéro de dossier d'instruction |
417 |
$val['dossier_instruction']=$this->valF['dossier_instruction']; |
418 |
|
419 |
// Ajout des données techniques |
420 |
$donnees_techniques->ajouter($val, $db, $DEBUG); |
421 |
} |
422 |
|
423 |
/** |
424 |
* Ajout des liens demandeurs / dossier d'autorisation |
425 |
**/ |
426 |
function ajoutLiensDossierAutorisation($id, &$db, $val, $DEBUG) { |
427 |
// Création des liens entre le dossier autorisation et les demandeurs |
428 |
include '../sql/pgsql/demande.form.inc.php'; |
429 |
require_once '../obj/lien_dossier_autorisation_demandeur.class.php'; |
430 |
$ldad = new lien_dossier_autorisation_demandeur("]",$db,$DEBUG); |
431 |
// Recupération des demandeurs liés à la demande |
432 |
$sql = str_replace("<demande>",$this->valF['demande'],$sql_lien_demande_demandeur); |
433 |
$res = $db->query($sql); |
434 |
$this->f->addToLog("ajoutLiensDossierAutorisation() : db->query(\"".$sql."\");", VERBOSE_MODE); |
435 |
if ( database::isError($res)){ |
436 |
die(); |
437 |
} |
438 |
while($row = &$res->fetchRow(DB_FETCHMODE_ASSOC)) { |
439 |
$row['lien_dossier_autorisation_demandeur'] = NULL; |
440 |
$row['dossier_autorisation'] = $this->valF['dossier_autorisation']; |
441 |
$ldad->ajouter($row, $db, $DEBUG); |
442 |
} |
443 |
} |
444 |
|
445 |
/** |
446 |
* Ajout des liens demandeurs / dossier d'autorisation |
447 |
**/ |
448 |
function ajoutLiensDossierInstruction($id, &$db, $val, $DEBUG) { |
449 |
// Création des liens entre le dossier instruction et les demandeurs |
450 |
include '../sql/pgsql/demande.form.inc.php'; |
451 |
require_once '../obj/lien_dossier_demandeur.class.php'; |
452 |
$ldd = new lien_dossier_demandeur("]",$db,$DEBUG); |
453 |
// Recupération des demandeurs liés à la demande |
454 |
$sql = str_replace("<demande>",$this->valF['demande'],$sql_lien_demande_demandeur); |
455 |
$res = $db->query($sql); |
456 |
$this->f->addToLog("ajoutLiensDossierInstruction() : db->query(\"".$sql."\");", VERBOSE_MODE); |
457 |
if ( database::isError($res)){ |
458 |
die(); |
459 |
} |
460 |
while($row = &$res->fetchRow(DB_FETCHMODE_ASSOC)) { |
461 |
$row['lien_dossier_demandeur'] = NULL; |
462 |
$row['dossier'] = $this->valF['dossier_instruction']; |
463 |
$ldd->ajouter($row, $db, $DEBUG); |
464 |
} |
465 |
} |
466 |
|
467 |
/* |
468 |
* Récupère l'identifiant d'un arrondissement à partir d'un code postal |
469 |
*/ |
470 |
function getArrondissement($terrain_adresse_code_postal){ |
471 |
|
472 |
$arrondissement = NULL; |
473 |
|
474 |
$sql = "SELECT |
475 |
arrondissement |
476 |
FROM |
477 |
".DB_PREFIXE."arrondissement |
478 |
WHERE |
479 |
code_postal = '$terrain_adresse_code_postal' "; |
480 |
$this->addToLog("demande.class.php : ".$sql." execute <br>", EXTRA_VERBOSE_MODE); |
481 |
|
482 |
$res = $this->db->query($sql); |
483 |
$this->f->addToLog("getArrondissement() : db->query(\"".$sql."\")", VERBOSE_MODE); |
484 |
if ( database::isError($res)){ |
485 |
die(); |
486 |
} |
487 |
|
488 |
if( $res->numrows() > 0 ) { |
489 |
|
490 |
$row=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
491 |
$arrondissement = $row['arrondissement']; |
492 |
} |
493 |
|
494 |
return $arrondissement; |
495 |
} |
496 |
|
497 |
/* |
498 |
* Récupère l'évènement lié à un type de demande |
499 |
*/ |
500 |
function getEvenement($demande_type){ |
501 |
|
502 |
$evenement = NULL; |
503 |
|
504 |
$sql = |
505 |
"SELECT |
506 |
evenement |
507 |
FROM |
508 |
".DB_PREFIXE."demande_type |
509 |
WHERE |
510 |
demande_type = $demande_type"; |
511 |
|
512 |
$res = $this->db->query($sql); |
513 |
$this->f->addToLog("getEvenement() : db->query(\"".$sql."\")", VERBOSE_MODE); |
514 |
if ( database::isError($res)){ |
515 |
die(); |
516 |
} |
517 |
|
518 |
if ( $res->numrows() > 0 ){ |
519 |
|
520 |
$row=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
521 |
$evenement = $row['evenement']; |
522 |
} |
523 |
|
524 |
return $evenement; |
525 |
} |
526 |
|
527 |
/* |
528 |
* Récupère la lettre type lié à un événement |
529 |
*/ |
530 |
function getLettreType($evenement){ |
531 |
|
532 |
$lettretype = NULL; |
533 |
|
534 |
$sql = |
535 |
"SELECT |
536 |
lettretype |
537 |
FROM |
538 |
".DB_PREFIXE."evenement |
539 |
WHERE |
540 |
evenement = $evenement"; |
541 |
|
542 |
$res = $this->db->query($sql); |
543 |
$this->f->addToLog("getLettreType() : db->query(\"".$sql."\")", VERBOSE_MODE); |
544 |
if ( database::isError($res)){ |
545 |
die(); |
546 |
} |
547 |
|
548 |
if ( $res->numrows() > 0 ){ |
549 |
|
550 |
$row=& $res->fetchRow(DB_FETCHMODE_ASSOC); |
551 |
$lettretype = $row['lettretype']; |
552 |
} |
553 |
|
554 |
return $lettretype; |
555 |
} |
556 |
|
557 |
/** |
558 |
* Ajout des dossiers |
559 |
**/ |
560 |
function triggerAjouter($id, &$db, $val, $DEBUG){ |
561 |
include '../sql/pgsql/demande.form.inc.php'; |
562 |
if($this->valF["demande_type"] != NULL) { |
563 |
$res = $db->query(str_replace('<idx>', $this->valF['demande_type'], $sql_demande_type_details_by_id)); |
564 |
$this->f->addToLog("triggerAjouter() : db->query(\"".str_replace('<idx>', $this->valF['demande_type'], $sql_demande_type_details_by_id)."\")", VERBOSE_MODE); |
565 |
if ( database::isError($res)){ |
566 |
die(); |
567 |
} |
568 |
// Attribut permettant de définir si un dossier a été créé |
569 |
$this->ajoutDI = FALSE; |
570 |
$dossier_type = $res->fetchRow(DB_FETCHMODE_ASSOC); |
571 |
// Création du dossier_autorisation |
572 |
if($this->valF['dossier_autorisation'] == "") { |
573 |
$this->ajoutDossierAutorisation($id, $db, $val, $DEBUG); |
574 |
$this -> addToMessage(_("Creation du dossier d'autorisation no").$this->valF['dossier_autorisation']); |
575 |
} |
576 |
// Enregistrement du numéro dossier existant (il sera écrasé si un DI est créé) |
577 |
if ($this->getParameter("idx_dossier") != "") { |
578 |
$this->valF['dossier_instruction'] = $this->getParameter("idx_dossier"); |
579 |
} |
580 |
// Création du dossier d'instruction |
581 |
if($dossier_type['dossier_instruction_type'] != NULL) { |
582 |
$this->ajoutDossierInstruction($id, $db, $val, $DEBUG, $dossier_type['dossier_instruction_type']); |
583 |
$this -> addToMessage(_("Creation du dossier d'instruction no").$this->valF['dossier_instruction']); |
584 |
// Attribut permettant de définir si un dossier a été créé. |
585 |
$this->ajoutDI = TRUE; |
586 |
|
587 |
//Ajout des données techniques au dossier d'instruction |
588 |
$this->ajoutDonneesTechniques($id, $db, $val, $DEBUG); |
589 |
} |
590 |
|
591 |
/*Création du lien de téléchargement de récépissé de demande*/ |
592 |
if ( $this->valF['demande_type'] != "" && is_numeric($this->valF['demande_type']) |
593 |
&& isset($this->valF['dossier_instruction']) && $this->valF['dossier_instruction'] !== "" ){ |
594 |
|
595 |
/*Récupérer l'événement lié à ce type de demande*/ |
596 |
$evenement = $this->getEvenement($this->valF['demande_type']); |
597 |
|
598 |
/*Récupération de la lettre type de l'événement*/ |
599 |
$lettretype = $this->getLettreType($evenement); |
600 |
|
601 |
/*Création d'une nouvelle instruction avec cet événement*/ |
602 |
/*Données*/ |
603 |
$valInstr['instruction']=NULL; |
604 |
|
605 |
$valInstr['destinataire']=$this->valF['dossier_instruction']; |
606 |
$valInstr['dossier']=$this->valF['dossier_instruction']; |
607 |
|
608 |
$valInstr['date_evenement']=date("d/m/Y"); |
609 |
$valInstr['evenement']=$evenement; |
610 |
$valInstr['lettretype']=$lettretype; |
611 |
$valInstr['complement']=""; |
612 |
$valInstr['complement2']=""; |
613 |
|
614 |
$valInstr['action']="initialisation"; |
615 |
$valInstr['delai']="2"; |
616 |
$valInstr['etat']="notifier"; |
617 |
$valInstr['accord_tacite']="Oui"; |
618 |
$valInstr['delai_notification']="1"; |
619 |
$valInstr['archive_delai']="0"; |
620 |
$valInstr['archive_date_complet']=NULL; |
621 |
$valInstr['archive_date_dernier_depot']=NULL; |
622 |
$valInstr['archive_date_rejet']=NULL; |
623 |
$valInstr['archive_date_limite']=NULL; |
624 |
$valInstr['archive_date_notification_delai']=NULL; |
625 |
$valInstr['archive_accord_tacite']="Non"; |
626 |
$valInstr['archive_etat']="initialiser"; |
627 |
$valInstr['archive_date_decision']=NULL; |
628 |
$valInstr['archive_avis']=""; |
629 |
$valInstr['archive_date_validite']=NULL; |
630 |
$valInstr['archive_date_achevement']=NULL; |
631 |
$valInstr['archive_date_chantier']=NULL; |
632 |
$valInstr['archive_date_conformite']=NULL; |
633 |
$valInstr['archive_incompletude']=NULL; |
634 |
$valInstr['archive_evenement_suivant_tacite']=""; |
635 |
$valInstr['archive_evenement_suivant_tacite_incompletude']=NULL; |
636 |
$valInstr['archive_etat_pendant_incompletude']=NULL; |
637 |
$valInstr['archive_date_limite_incompletude']=NULL; |
638 |
$valInstr['archive_delai_incompletude']=NULL; |
639 |
$valInstr['complement3']=""; |
640 |
$valInstr['complement4']=""; |
641 |
$valInstr['complement5']=""; |
642 |
$valInstr['complement6']=""; |
643 |
$valInstr['complement7']=""; |
644 |
$valInstr['complement8']=""; |
645 |
$valInstr['complement9']=""; |
646 |
$valInstr['complement10']=""; |
647 |
$valInstr['complement11']=""; |
648 |
$valInstr['complement12']=""; |
649 |
$valInstr['complement13']=""; |
650 |
$valInstr['complement14']=""; |
651 |
$valInstr['complement15']=""; |
652 |
$valInstr['avis_decision']=NULL; |
653 |
$valInstr['date_finalisation_courrier']=NULL; |
654 |
$valInstr['date_envoi_signature']=NULL; |
655 |
$valInstr['date_retour_signature']=NULL; |
656 |
$valInstr['date_envoi_rar']=NULL; |
657 |
$valInstr['date_retour_rar']=NULL; |
658 |
$valInstr['date_envoi_controle_legalite']=NULL; |
659 |
$valInstr['date_retour_controle_legalite']=NULL; |
660 |
$valInstr['signataire_arrete']=NULL; |
661 |
$valInstr['numero_arrete']=NULL; |
662 |
$valInstr['code_barres']=NULL; |
663 |
$valInstr['om_fichier_instruction']=NULL; |
664 |
$valInstr['om_final_instruction']=NULL; |
665 |
$valInstr['document_arrete']=NULL; |
666 |
|
667 |
/*Fichier requis*/ |
668 |
require_once '../obj/instruction.class.php'; |
669 |
|
670 |
/*Création d'un nouveau dossier*/ |
671 |
$instruction = new instruction("]",$db,$DEBUG); |
672 |
$instruction->valF = ""; |
673 |
$instruction->ajouter($valInstr, $db, $DEBUG); |
674 |
|
675 |
/*Si la création a réussie*/ |
676 |
if ( $instruction->valF['instruction'] != "" ){ |
677 |
|
678 |
/*Affichage du récépissé de la demande*/ |
679 |
$this->valF['instruction_recepisse'] = $instruction->valF['instruction']; |
680 |
$this -> addToMessage("<br/><a |
681 |
class='lien' |
682 |
href='../pdf/pdflettretype.php?obj=".$lettretype."&idx=".$instruction->valF['instruction']."' |
683 |
target='_blank'> |
684 |
<span |
685 |
class=\"om-icon om-icon-16 om-icon-fix pdf-16\" |
686 |
title=\""._("Telecharger le recepisse de la demande")."\">". |
687 |
_("Telecharger le recepisse de la demande"). |
688 |
"</span> |
689 |
". |
690 |
_("Telecharger le recepisse de la demande")." |
691 |
</a><br/>"); |
692 |
} |
693 |
/*Sinon affiche un message d'erreur*/ |
694 |
else { |
695 |
|
696 |
$this -> addToMessage(_("Une erreur s'est produite lors de la creation du recepisse")); |
697 |
} |
698 |
} |
699 |
|
700 |
/*Ajout de l'arrondissement à partir du code postal*/ |
701 |
if ( !is_null($this->valF["terrain_adresse_code_postal"]) && is_numeric($this->valF["terrain_adresse_code_postal"]) ){ |
702 |
|
703 |
$this->valF["arrondissement"] = $this->getArrondissement($this->valF["terrain_adresse_code_postal"]); |
704 |
} |
705 |
} |
706 |
} |
707 |
|
708 |
/** |
709 |
* Ajout des délégataires et pétitionnaires |
710 |
**/ |
711 |
function triggerAjouterApres($id, &$db, $val, $DEBUG){ |
712 |
$this->insertLinkDemandeDemandeur($db, $DEBUG); |
713 |
|
714 |
// Ajout des lliens entre dossier_autorisation et demandeur |
715 |
if(!empty($this->valF['dossier_autorisation']) AND $val['dossier_autorisation'] == "" ) { |
716 |
$this->ajoutLiensDossierAutorisation($id, $db, $val, $DEBUG); |
717 |
} |
718 |
// Ajout des lliens entre dossier et demandeur |
719 |
if($this->ajoutDI === TRUE) { |
720 |
$this->ajoutLiensDossierInstruction($id, $db, $val, $DEBUG); |
721 |
} |
722 |
|
723 |
// Duplication des lots et liaison au nouveau dossier_d'instruction |
724 |
if(!empty($this->valF['dossier_autorisation']) AND $val['dossier_autorisation'] != "" ) { |
725 |
$this->lienLotDossierInstruction($id, $db, $val, $DEBUG); |
726 |
} |
727 |
} |
728 |
|
729 |
/*Ajout du lien demande / demandeur(s)*/ |
730 |
function triggerModifierApres($id, &$db, $val, $DEBUG){ |
731 |
$this->listeDemandeur("demande",$this->val[array_search('demande', $this->champs)]); |
732 |
$this->insertLinkDemandeDemandeur($db, $DEBUG); |
733 |
$this->valIdDemandeur=$this->postedIdDemandeur; |
734 |
|
735 |
} |
736 |
|
737 |
/** |
738 |
* Gestion des liens entre les lots du DA et le nouveau dossier |
739 |
**/ |
740 |
function lienLotDossierInstruction($id, $db, $val, $DEBUG) { |
741 |
require_once ("../obj/lot.class.php"); |
742 |
$lot = new lot("]", $db, $DEBUG); |
743 |
require_once ("../obj/lien_dossier_lot.class.php"); |
744 |
$ldl = new lien_dossier_lot("]", $db, $DEBUG); |
745 |
require_once ("../obj/lien_lot_demandeur.class.php"); |
746 |
$lld = new lien_lot_demandeur("]", $db, $DEBUG); |
747 |
|
748 |
|
749 |
$sqlLots = "SELECT * FROM ".DB_PREFIXE."lot |
750 |
WHERE dossier_autorisation = '".$this->valF['dossier_autorisation']."'"; |
751 |
$resLot = $db -> query($sqlLots); |
752 |
$this->f->addToLog("db->query(\"".$sqlLots."\");", VERBOSE_MODE); |
753 |
$this->f->isDatabaseError($resLot); |
754 |
while ($rowLot=& $resLot->fetchRow(DB_FETCHMODE_ASSOC)){ |
755 |
// Insertion du nouveau lot |
756 |
$valLot['lot'] = ""; |
757 |
$valLot['libelle'] = $rowLot['libelle']; |
758 |
$valLot['dossier_autorisation'] = NULL; |
759 |
$lot -> ajouter($valLot, $db, $DEBUG); |
760 |
|
761 |
//Insertion du lien entre le lot et le dossier d'instruction |
762 |
$valLdl['lien_dossier_lot'] = ""; |
763 |
$valLdl['dossier'] = $this->valF['dossier_instruction']; |
764 |
$valLdl['lot'] = $lot->valF['lot']; |
765 |
$ldl->ajouter($valLdl, $db, $DEBUG); |
766 |
|
767 |
//Insertion des liens entre dossier et les lots |
768 |
$sqlDemandeurs = "SELECT * FROM ".DB_PREFIXE."lien_lot_demandeur |
769 |
WHERE lot = ".$rowLot['lot']; |
770 |
$res = $db -> query($sqlDemandeurs); |
771 |
$this->f->addToLog("lienLotDossierInstruction() : db->query(\"".$sqlDemandeurs."\");", VERBOSE_MODE); |
772 |
if ( database::isError($res)){ |
773 |
die(); |
774 |
} |
775 |
|
776 |
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
777 |
$valLld["lien_lot_demandeur"] = ""; |
778 |
$valLld["lot"]=$lot->valF['lot']; |
779 |
$valLld["demandeur"] = $row['demandeur']; |
780 |
$valLld["petitionnaire_principal"] = $row['petitionnaire_principal']; |
781 |
$lld->ajouter($valLld, $db, $DEBUG); |
782 |
} |
783 |
} |
784 |
} |
785 |
|
786 |
/** |
787 |
* Gestion des liens entre la demande et les demandeurs recemment ajoutés |
788 |
**/ |
789 |
function insertLinkDemandeDemandeur($db, $DEBUG) { |
790 |
// |
791 |
require_once "../obj/lien_demande_demandeur.class.php"; |
792 |
// Comparaison de l'id petitionnaire principal |
793 |
if(isset($this->postedIdDemandeur['petitionnaire_principal']) AND |
794 |
!empty($this->postedIdDemandeur['petitionnaire_principal']) AND |
795 |
$this->valIdDemandeur['petitionnaire_principal'] != |
796 |
$this->postedIdDemandeur['petitionnaire_principal']) { |
797 |
// Ajout du nouveau lien |
798 |
$this->addLinkDemandeDemandeur($this->postedIdDemandeur['petitionnaire_principal'], true, $db, $DEBUG); |
799 |
if(!empty($this->valIdDemandeur['petitionnaire_principal'])) { |
800 |
$this->deleteLinkDemandeDemandeur($this->valIdDemandeur['petitionnaire_principal'], $db, $DEBUG); |
801 |
} |
802 |
} |
803 |
|
804 |
// Comparaison du delegataire |
805 |
if(isset($this->postedIdDemandeur['delegataire']) AND |
806 |
!empty($this->postedIdDemandeur['delegataire']) AND |
807 |
$this->valIdDemandeur['delegataire'] != |
808 |
$this->postedIdDemandeur['delegataire']) { |
809 |
// Ajout du nouveau lien |
810 |
$this->addLinkDemandeDemandeur($this->postedIdDemandeur['delegataire'], false, $db, $DEBUG); |
811 |
if(!empty($this->valIdDemandeur['delegataire'])) { |
812 |
$this->deleteLinkDemandeDemandeur($this->valIdDemandeur['delegataire'], $db, $DEBUG); |
813 |
} |
814 |
} |
815 |
|
816 |
// Comparaison des different petitionnaires |
817 |
if(isset($this->postedIdDemandeur['petitionnaire'])) { |
818 |
// Suppression des liens non valides |
819 |
foreach ($this->valIdDemandeur['petitionnaire'] as $petitionnaire) { |
820 |
if(!in_array($petitionnaire, $this->postedIdDemandeur['petitionnaire'])) { |
821 |
$this->deleteLinkDemandeDemandeur($petitionnaire, $db, $DEBUG); |
822 |
} |
823 |
} |
824 |
// Ajout des nouveaux liens |
825 |
foreach ($this->postedIdDemandeur['petitionnaire'] as $petitionnaire) { |
826 |
if(!in_array($petitionnaire, $this->valIdDemandeur['petitionnaire'])) { |
827 |
$this->addLinkDemandeDemandeur($petitionnaire, false, $db, $DEBUG); |
828 |
} |
829 |
} |
830 |
} |
831 |
} |
832 |
|
833 |
|
834 |
/** |
835 |
* Fonction permettant d'ajouter un lien |
836 |
* entre la table demande et demandeur |
837 |
**/ |
838 |
function addLinkDemandeDemandeur($id, $principal, $db, $DEBUG) { |
839 |
$lienAjout = new lien_demande_demandeur( |
840 |
"]", |
841 |
$db, |
842 |
$DEBUG); |
843 |
$lien = array('lien_demande_demandeur' => "", |
844 |
'petitionnaire_principal' => (($principal)?"t":"f"), |
845 |
'demande' => $this->valF['demande'], |
846 |
'demandeur' => $id); |
847 |
$lienAjout->ajouter($lien, $db, $DEBUG); |
848 |
$lienAjout->__destruct(); |
849 |
} |
850 |
|
851 |
/** |
852 |
* Fonction permettant de supprimer un lien |
853 |
* entre la table demande et demandeur |
854 |
**/ |
855 |
function deleteLinkDemandeDemandeur($id, $db, $DEBUG) { |
856 |
// Suppression |
857 |
$sql = "DELETE FROM ".DB_PREFIXE."lien_demande_demandeur ". |
858 |
"WHERE demande=".$this->valF['demande']. |
859 |
" AND demandeur=".$id; |
860 |
// Execution de la requete de suppression de l'objet |
861 |
$res = $db->query($sql); |
862 |
// Logger |
863 |
$this->f->addToLog("deleteLinkDemandeDemandeur(): db->query(\"".$sql."\");", VERBOSE_MODE); |
864 |
if ( database::isError($res)){ |
865 |
die(); |
866 |
} |
867 |
|
868 |
} |
869 |
|
870 |
/* |
871 |
* Teste si le lien entre une demande et un demandeur existe |
872 |
* */ |
873 |
function isLinkDemandeDemandeurExist($idDemandeur) { |
874 |
$sql = "SELECT count(*) |
875 |
FROM ".DB_PREFIXE."lien_demande_demandeur |
876 |
WHERE demande = ".$this->valF['demande']. |
877 |
"AND demandeur = ".$idDemandeur; |
878 |
$count = $this->f->db->getOne($sql); |
879 |
$this->f->addToLog("isLinkDemandeDemandeurExist() : db->getone(\"".$sql."\");", VERBOSE_MODE); |
880 |
if ( database::isError($count)){ |
881 |
die(); |
882 |
} |
883 |
if ($count === 0) { |
884 |
return false; |
885 |
} else { |
886 |
return true; |
887 |
} |
888 |
|
889 |
} |
890 |
|
891 |
/** |
892 |
* Methode de recupération des valeurs postées |
893 |
**/ |
894 |
function getPostedValues() { |
895 |
// Récupération des demandeurs dans POST |
896 |
if (isset($_POST['petitionnaire_principal']) OR |
897 |
isset($_POST['delegataire']) OR |
898 |
isset($_POST['petitionnaire'])) { |
899 |
if( isset($_POST['petitionnaire_principal']) AND |
900 |
!empty($_POST['petitionnaire_principal'])) { |
901 |
$this->postedIdDemandeur['petitionnaire_principal'] = $_POST['petitionnaire_principal']; |
902 |
} |
903 |
if( isset($_POST['delegataire']) AND |
904 |
!empty($_POST['delegataire'])) { |
905 |
$this->postedIdDemandeur['delegataire'] = $_POST['delegataire']; |
906 |
} |
907 |
if( isset($_POST['petitionnaire']) AND |
908 |
!empty($_POST['petitionnaire'])) { |
909 |
$this->postedIdDemandeur['petitionnaire'] = $_POST['petitionnaire']; |
910 |
} |
911 |
} |
912 |
} |
913 |
|
914 |
/** |
915 |
* Méthode permettant de récupérer les id des demandeurs liés à la table |
916 |
* liée passée en paramètre |
917 |
* |
918 |
* @param string $from Table liée : "demande", "dossier", dossier_autorisation" |
919 |
* @param string $id Identifiant (clé primaire de la table liée en question) |
920 |
*/ |
921 |
function listeDemandeur($from, $id) { |
922 |
// Récupération des demandeurs de la base |
923 |
$sql = "SELECT demandeur.demandeur, |
924 |
demandeur.type_demandeur, |
925 |
lien_".$from."_demandeur.petitionnaire_principal |
926 |
FROM ".DB_PREFIXE."lien_".$from."_demandeur |
927 |
INNER JOIN ".DB_PREFIXE."demandeur |
928 |
ON demandeur.demandeur=lien_".$from."_demandeur.demandeur |
929 |
WHERE ".$from." = '".$id."'"; |
930 |
$res = $this->f->db->query($sql); |
931 |
$this->f->addToLog("listeDemandeur(): db->query(\"".$sql."\")", VERBOSE_MODE); |
932 |
if ( database::isError($res)){ |
933 |
die(); |
934 |
} |
935 |
// Stockage du résultat dans un tableau |
936 |
while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){ |
937 |
if ($row['petitionnaire_principal'] == 't' AND |
938 |
$row['type_demandeur']=="petitionnaire") { |
939 |
$this->valIdDemandeur['petitionnaire_principal']=$row['demandeur']; |
940 |
} elseif ($row['petitionnaire_principal'] == 'f' AND |
941 |
$row['type_demandeur']=="petitionnaire"){ |
942 |
$this->valIdDemandeur['petitionnaire'][]=$row['demandeur']; |
943 |
} elseif ($row['type_demandeur']=="delegataire"){ |
944 |
$this->valIdDemandeur['delegataire']=$row['demandeur']; |
945 |
} |
946 |
} |
947 |
} |
948 |
|
949 |
|
950 |
/** |
951 |
* Surcharge du bouton retour afin de retourner sur la recherche de dossiers |
952 |
* d'instruction existant |
953 |
*/ |
954 |
function retour($premier = 0, $recherche = "", $tricol = "") { |
955 |
|
956 |
echo "\n<a class=\"retour\" "; |
957 |
echo "href=\""; |
958 |
// |
959 |
if($this->getParameter("idx_dossier") != "") { |
960 |
echo "tab.php?"; |
961 |
echo "obj=recherche_dossier"; |
962 |
|
963 |
} else { |
964 |
if($this->getParameter("retour")=="form" AND !($this->getParameter("validation")>0 AND $this->getParameter("maj")==2 AND $this->correct)) { |
965 |
echo "form.php?"; |
966 |
} else { |
967 |
echo "tab.php?"; |
968 |
} |
969 |
echo "obj=".get_class($this); |
970 |
if($this->getParameter("retour")=="form") { |
971 |
echo "&idx=".$this->getParameter("idx"); |
972 |
echo "&action=3"; |
973 |
} |
974 |
} |
975 |
echo "&premier=".$this->getParameter("premier"); |
976 |
echo "&tricol=".$this->getParameter("tricol"); |
977 |
echo "&recherche=".$this->getParameter("recherche"); |
978 |
echo "&selectioncol=".$this->getParameter("selectioncol"); |
979 |
echo "&advs_id=".$this->getParameter("advs_id"); |
980 |
echo "&valide=".$this->getParameter("valide"); |
981 |
// |
982 |
echo "\""; |
983 |
echo ">"; |
984 |
// |
985 |
echo _("Retour"); |
986 |
// |
987 |
echo "</a>\n"; |
988 |
|
989 |
} |
990 |
|
991 |
|
992 |
/** |
993 |
* Cette méthode permet d'afficher des informations spécifiques dans le |
994 |
* formulaire de l'objet |
995 |
* |
996 |
* @param integer $maj Mode de mise à jour |
997 |
*/ |
998 |
function formSpecificContent($maj) { |
999 |
|
1000 |
/** |
1001 |
* Gestion du bloc des demandeurs |
1002 |
*/ |
1003 |
// Si le mode est (modification ou suppression ou consultation) ET que |
1004 |
// le formulaire n'est pas correct (c'est-à-dire que le formulaire est |
1005 |
// actif) |
1006 |
if (!$this->correct AND $maj != 0) { |
1007 |
// Alors on récupère les demandeurs dans la table lien pour |
1008 |
// affectation des résultats dans this->valIdDemandeur |
1009 |
$this->listeDemandeur("demande", $this->val[array_search('demande', $this->champs)]); |
1010 |
} |
1011 |
|
1012 |
// Si le mode est (ajout ou modification) ET que le formulaire n'est pas |
1013 |
// correct (c'est-à-dire que le formulaire est actif) |
1014 |
if ($maj < 2 AND !$this->correct) { |
1015 |
// Alors on positionne le marqueur linkable a true qui permet |
1016 |
// d'afficher ou non les actions de gestion des demandeurs |
1017 |
$linkable = true; |
1018 |
} else { |
1019 |
// Sinon on positionne le marqueur linkable a false qui permet |
1020 |
// d'afficher ou non les actions de gestion des demandeurs |
1021 |
$linkable = false; |
1022 |
} |
1023 |
|
1024 |
// Affichage des demandeurs et des actions |
1025 |
// Conteneur de la listes des demandeurs |
1026 |
echo "<div id=\"liste_demandeur\" class=\"demande_hidden_bloc col_12\">"; |
1027 |
echo "<fieldset class=\"cadre ui-corner-all ui-widget-content\">"; |
1028 |
echo " <legend class=\"ui-corner-all ui-widget-content ui-state-active\">" |
1029 |
._("Petitionnaire")."</legend>"; |
1030 |
// Si des demandeurs sont liés à la demande |
1031 |
require_once "../obj/petitionnaire.class.php"; |
1032 |
require_once "../obj/delegataire.class.php"; |
1033 |
// Affichage du bloc pétitionnaire principal / délégataire |
1034 |
// L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1035 |
echo "<div id=\"petitionnaire_principal_delegataire\">"; |
1036 |
// Affichage de la synthèse |
1037 |
if (isset ($this->valIdDemandeur["petitionnaire_principal"]) AND |
1038 |
!empty($this->valIdDemandeur["petitionnaire_principal"])) { |
1039 |
$demandeur = new petitionnaire( |
1040 |
$this->valIdDemandeur["petitionnaire_principal"], |
1041 |
$this->f->db,false); |
1042 |
$demandeur -> afficherSynthese("petitionnaire_principal", $linkable); |
1043 |
$demandeur -> __destruct(); |
1044 |
} elseif ( isset ($this->postedIdDemandeur["petitionnaire_principal"]) AND |
1045 |
!empty($this->postedIdDemandeur["petitionnaire_principal"]) ) { |
1046 |
$demandeur = new petitionnaire( |
1047 |
$this->postedIdDemandeur["petitionnaire_principal"], |
1048 |
$this->f->db,false); |
1049 |
$demandeur -> afficherSynthese("petitionnaire_principal", $linkable); |
1050 |
$demandeur -> __destruct(); |
1051 |
} |
1052 |
// Si en édition de formulaire |
1053 |
if($maj < 2) { |
1054 |
// Bouton d'ajout du pétitionnaire principal |
1055 |
// L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1056 |
echo "<span id=\"add_petitionnaire_principal\" |
1057 |
class=\"om-form-button add-16\">". |
1058 |
_("Saisir le petitionnaire principal"). |
1059 |
"</span>"; |
1060 |
} |
1061 |
// Bouton d'ajout du delegataire |
1062 |
// L'ID DU DIV ET DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1063 |
echo "<div id=\"delegataire\">"; |
1064 |
// Affichage de la synthèse |
1065 |
if (isset ($this->valIdDemandeur["delegataire"]) AND |
1066 |
!empty($this->valIdDemandeur["delegataire"])) { |
1067 |
$demandeur = new delegataire($this->valIdDemandeur["delegataire"], |
1068 |
$this->f->db,false); |
1069 |
$demandeur -> afficherSynthese("delegataire", $linkable); |
1070 |
$demandeur -> __destruct(); |
1071 |
} elseif ( isset ($this->postedIdDemandeur["delegataire"]) AND |
1072 |
!empty($this->postedIdDemandeur["delegataire"]) ) { |
1073 |
|
1074 |
$demandeur = new delegataire($this->postedIdDemandeur["delegataire"], |
1075 |
$this->f->db,false); |
1076 |
$demandeur -> afficherSynthese("delegataire", $linkable); |
1077 |
$demandeur -> __destruct(); |
1078 |
} |
1079 |
if($maj < 2) { |
1080 |
echo "<span id=\"add_delegataire\" |
1081 |
class=\"om-form-button add-16\">". |
1082 |
_("Saisir le delegataire"). |
1083 |
"</span>"; |
1084 |
} |
1085 |
echo "</div>"; |
1086 |
echo "<div class=\"both\"></div>"; |
1087 |
echo "</div>"; |
1088 |
// Bloc des pétitionnaires secondaires |
1089 |
// L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1090 |
echo "<div id=\"listePetitionnaires\">"; |
1091 |
|
1092 |
// Affichage de la synthèse |
1093 |
if (isset ($this->valIdDemandeur["petitionnaire"]) AND |
1094 |
!empty($this->valIdDemandeur["petitionnaire"])) { |
1095 |
|
1096 |
foreach ($this->valIdDemandeur["petitionnaire"] as $petitionnaire) { |
1097 |
$demandeur = new petitionnaire($petitionnaire, |
1098 |
$this->f->db,false); |
1099 |
$demandeur -> afficherSynthese("petitionnaire", $linkable); |
1100 |
$demandeur -> __destruct(); |
1101 |
} |
1102 |
|
1103 |
} elseif ( isset ($this->postedIdDemandeur["petitionnaire"]) AND |
1104 |
!empty($this->postedIdDemandeur["petitionnaire"]) ) { |
1105 |
foreach ($this->postedIdDemandeur["petitionnaire"] as $petitionnaire) { |
1106 |
$demandeur = new petitionnaire($petitionnaire, |
1107 |
$this->f->db,false); |
1108 |
$demandeur -> afficherSynthese("petitionnaire", $linkable); |
1109 |
$demandeur -> __destruct(); |
1110 |
} |
1111 |
} |
1112 |
if ($maj < 2) { |
1113 |
// L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS |
1114 |
echo "<span id=\"add_petitionnaire\" |
1115 |
class=\"om-form-button add-16\">". |
1116 |
_("Ajouter un petitionnaire") |
1117 |
."</span>"; |
1118 |
} |
1119 |
echo "</div>"; |
1120 |
echo "</fieldset>"; |
1121 |
echo "</div>"; |
1122 |
} |
1123 |
|
1124 |
// {{{ |
1125 |
|
1126 |
// getter |
1127 |
function getValIdDemandeur() { |
1128 |
return $this->valIdDemandeur; |
1129 |
} |
1130 |
// setter |
1131 |
function setValIdDemandeur($valIdDemandeur) { |
1132 |
$this->valIdDemandeur = $valIdDemandeur; |
1133 |
} |
1134 |
|
1135 |
//Supression du lien entre la demandeur et le(s) demandeur(s) |
1136 |
function triggerSupprimer($id, &$db, $val, $DEBUG){ |
1137 |
|
1138 |
//Création de la requête |
1139 |
$sql = "DELETE FROM |
1140 |
".DB_PREFIXE."lien_demande_demandeur |
1141 |
WHERE |
1142 |
demande = $id"; |
1143 |
|
1144 |
$res = $this->f->db->query($sql); |
1145 |
$this->f->addToLog("triggerSupprimer() : db->query(\"".$sql."\")"); |
1146 |
if ( database::isError($res)){ |
1147 |
die(); |
1148 |
} |
1149 |
} |
1150 |
|
1151 |
// }}} |
1152 |
}// fin classe |
1153 |
?> |