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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2038 - (hide annotations)
Fri Jun 21 15:50:03 2013 UTC (11 years, 7 months ago) by vpihour
File size: 50919 byte(s)
Correction d'une erreur de base de données lors d'une demande de modificatif sur un dossier initial en cours

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26