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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1406 - (hide annotations)
Thu Mar 14 17:05:37 2013 UTC (11 years, 10 months ago) by nhaye
File size: 46142 byte(s)
Correction d'une notice php

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26