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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1808 - (hide annotations)
Thu May 2 10:31:27 2013 UTC (11 years, 9 months ago) by nhaye
File size: 48925 byte(s)
Correction de l'enregistrement des numéros de dossier d'instruction existants lors de demandes types qui ne créées pas de dossier d'instruction

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26