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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1945 - (hide annotations)
Wed May 29 10:46:53 2013 UTC (11 years, 8 months ago) by nhaye
File size: 49875 byte(s)
Modification de la modification d'instruction lorsque le numéro d'arrêté est mis à jour, le document arrêté est ajouté au filestorage avec les métadonnées arrêtés, ajout des méthodes de récupération des métadonnées

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

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26