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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1723 - (hide annotations)
Thu Apr 18 16:16:28 2013 UTC (11 years, 9 months ago) by fmichon
File size: 47338 byte(s)
Correction d'un bug fonctionnel qui n'affichait pas le demandeur dans la demande en mode visualisation/consultation + Suppression de code inutile + Ajout de commentaires

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26