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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1986 - (hide annotations)
Wed Jun 5 15:51:15 2013 UTC (11 years, 7 months ago) by vpihour
File size: 50331 byte(s)
Suppression des actions "Modifier" et "Supprimer" du portlet si le document est finalisé

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 vpihour 1966 //Finalisation du document
676     $_GET['obj']='instruction';
677     $_GET['idx']=$instruction->valF[$instruction->clePrimaire];
678     $instruction = new instruction($_GET['idx'],$db,$DEBUG);
679 vpihour 1986 $res = $instruction->finaliser('', 1, '', '');
680 vpihour 1966
681 vpihour 1058 /*Si la création a réussie*/
682 vpihour 930 if ( $instruction->valF['instruction'] != "" ){
683    
684 vpihour 1058 /*Affichage du récépissé de la demande*/
685 fmichon 1005 $this->valF['instruction_recepisse'] = $instruction->valF['instruction'];
686 vpihour 930 $this -> addToMessage("<br/><a
687     class='lien'
688 vpihour 1966 href='"
689     .((isset($res['pdf'])&&$instruction->valF['om_final_instruction'])?$res['pdf']:
690     "../pdf/pdflettretype.php?obj=".$lettretype."&amp;idx=".$instruction->valF['instruction'])."'
691 vpihour 1084 target='_blank'>
692 vpihour 930 <span
693     class=\"om-icon om-icon-16 om-icon-fix pdf-16\"
694     title=\""._("Telecharger le recepisse de la demande")."\">".
695     _("Telecharger le recepisse de la demande").
696     "</span>
697     &nbsp;&nbsp;&nbsp;&nbsp;".
698     _("Telecharger le recepisse de la demande")."
699 vpihour 1093 </a><br/>");
700 vpihour 930 }
701 vpihour 1058 /*Sinon affiche un message d'erreur*/
702 vpihour 930 else {
703    
704 fmichon 1012 $this -> addToMessage(_("Une erreur s'est produite lors de la creation du recepisse"));
705 vpihour 930 }
706     }
707 fmichon 1005
708     /*Ajout de l'arrondissement à partir du code postal*/
709     if ( !is_null($this->valF["terrain_adresse_code_postal"]) && is_numeric($this->valF["terrain_adresse_code_postal"]) ){
710    
711     $this->valF["arrondissement"] = $this->getArrondissement($this->valF["terrain_adresse_code_postal"]);
712     }
713 nhaye 907 }
714     }
715    
716     /**
717 nhaye 828 * Ajout des délégataires et pétitionnaires
718 nhaye 807 **/
719 nhaye 828 function triggerAjouterApres($id, &$db, $val, $DEBUG){
720     $this->insertLinkDemandeDemandeur($db, $DEBUG);
721 fmichon 1005
722 nhaye 920 // Ajout des lliens entre dossier_autorisation et demandeur
723 vpihour 1070 if(!empty($this->valF['dossier_autorisation']) AND $val['dossier_autorisation'] == "" ) {
724 nhaye 920 $this->ajoutLiensDossierAutorisation($id, $db, $val, $DEBUG);
725     }
726     // Ajout des lliens entre dossier et demandeur
727 nhaye 1808 if($this->ajoutDI === TRUE) {
728 nhaye 920 $this->ajoutLiensDossierInstruction($id, $db, $val, $DEBUG);
729     }
730 nhaye 1246
731     // Duplication des lots et liaison au nouveau dossier_d'instruction
732     if(!empty($this->valF['dossier_autorisation']) AND $val['dossier_autorisation'] != "" ) {
733     $this->lienLotDossierInstruction($id, $db, $val, $DEBUG);
734     }
735 nhaye 828 }
736 vpihour 1058
737     /*Ajout du lien demande / demandeur(s)*/
738 nhaye 828 function triggerModifierApres($id, &$db, $val, $DEBUG){
739 nhaye 1039 $this->listeDemandeur("demande",$this->val[array_search('demande', $this->champs)]);
740 nhaye 828 $this->insertLinkDemandeDemandeur($db, $DEBUG);
741 nhaye 838 $this->valIdDemandeur=$this->postedIdDemandeur;
742 nhaye 828
743     }
744    
745     /**
746 nhaye 1246 * Gestion des liens entre les lots du DA et le nouveau dossier
747     **/
748     function lienLotDossierInstruction($id, $db, $val, $DEBUG) {
749     require_once ("../obj/lot.class.php");
750     $lot = new lot("]", $db, $DEBUG);
751     require_once ("../obj/lien_dossier_lot.class.php");
752     $ldl = new lien_dossier_lot("]", $db, $DEBUG);
753     require_once ("../obj/lien_lot_demandeur.class.php");
754     $lld = new lien_lot_demandeur("]", $db, $DEBUG);
755    
756    
757     $sqlLots = "SELECT * FROM ".DB_PREFIXE."lot
758     WHERE dossier_autorisation = '".$this->valF['dossier_autorisation']."'";
759     $resLot = $db -> query($sqlLots);
760     $this->f->addToLog("db->query(\"".$sqlLots."\");", VERBOSE_MODE);
761     $this->f->isDatabaseError($resLot);
762     while ($rowLot=& $resLot->fetchRow(DB_FETCHMODE_ASSOC)){
763     // Insertion du nouveau lot
764     $valLot['lot'] = "";
765     $valLot['libelle'] = $rowLot['libelle'];
766     $valLot['dossier_autorisation'] = NULL;
767     $lot -> ajouter($valLot, $db, $DEBUG);
768 nhaye 1247
769 nhaye 1246 //Insertion du lien entre le lot et le dossier d'instruction
770     $valLdl['lien_dossier_lot'] = "";
771     $valLdl['dossier'] = $this->valF['dossier_instruction'];
772     $valLdl['lot'] = $lot->valF['lot'];
773     $ldl->ajouter($valLdl, $db, $DEBUG);
774    
775     //Insertion des liens entre dossier et les lots
776     $sqlDemandeurs = "SELECT * FROM ".DB_PREFIXE."lien_lot_demandeur
777     WHERE lot = ".$rowLot['lot'];
778     $res = $db -> query($sqlDemandeurs);
779 vpihour 1777 $this->f->addToLog("lienLotDossierInstruction() : db->query(\"".$sqlDemandeurs."\");", VERBOSE_MODE);
780     if ( database::isError($res)){
781     die();
782     }
783 nhaye 1246
784     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
785     $valLld["lien_lot_demandeur"] = "";
786     $valLld["lot"]=$lot->valF['lot'];
787     $valLld["demandeur"] = $row['demandeur'];
788     $valLld["petitionnaire_principal"] = $row['petitionnaire_principal'];
789     $lld->ajouter($valLld, $db, $DEBUG);
790     }
791     }
792     }
793    
794     /**
795 vpihour 1058 * Gestion des liens entre la demande et les demandeurs recemment ajoutés
796 nhaye 828 **/
797     function insertLinkDemandeDemandeur($db, $DEBUG) {
798     //
799     require_once "../obj/lien_demande_demandeur.class.php";
800 nhaye 838 // Comparaison de l'id petitionnaire principal
801     if(isset($this->postedIdDemandeur['petitionnaire_principal']) AND
802     !empty($this->postedIdDemandeur['petitionnaire_principal']) AND
803     $this->valIdDemandeur['petitionnaire_principal'] !=
804     $this->postedIdDemandeur['petitionnaire_principal']) {
805     // Ajout du nouveau lien
806     $this->addLinkDemandeDemandeur($this->postedIdDemandeur['petitionnaire_principal'], true, $db, $DEBUG);
807     if(!empty($this->valIdDemandeur['petitionnaire_principal'])) {
808     $this->deleteLinkDemandeDemandeur($this->valIdDemandeur['petitionnaire_principal'], $db, $DEBUG);
809 nhaye 807 }
810 nhaye 828 }
811 nhaye 838
812     // Comparaison du delegataire
813     if(isset($this->postedIdDemandeur['delegataire']) AND
814     !empty($this->postedIdDemandeur['delegataire']) AND
815     $this->valIdDemandeur['delegataire'] !=
816     $this->postedIdDemandeur['delegataire']) {
817     // Ajout du nouveau lien
818     $this->addLinkDemandeDemandeur($this->postedIdDemandeur['delegataire'], false, $db, $DEBUG);
819     if(!empty($this->valIdDemandeur['delegataire'])) {
820     $this->deleteLinkDemandeDemandeur($this->valIdDemandeur['delegataire'], $db, $DEBUG);
821     }
822     }
823    
824     // Comparaison des different petitionnaires
825     if(isset($this->postedIdDemandeur['petitionnaire'])) {
826     // Suppression des liens non valides
827     foreach ($this->valIdDemandeur['petitionnaire'] as $petitionnaire) {
828     if(!in_array($petitionnaire, $this->postedIdDemandeur['petitionnaire'])) {
829     $this->deleteLinkDemandeDemandeur($petitionnaire, $db, $DEBUG);
830     }
831     }
832     // Ajout des nouveaux liens
833     foreach ($this->postedIdDemandeur['petitionnaire'] as $petitionnaire) {
834     if(!in_array($petitionnaire, $this->valIdDemandeur['petitionnaire'])) {
835     $this->addLinkDemandeDemandeur($petitionnaire, false, $db, $DEBUG);
836     }
837     }
838     }
839     }
840    
841    
842     /**
843     * Fonction permettant d'ajouter un lien
844     * entre la table demande et demandeur
845     **/
846     function addLinkDemandeDemandeur($id, $principal, $db, $DEBUG) {
847     $lienAjout = new lien_demande_demandeur(
848     "]",
849     $db,
850     $DEBUG);
851     $lien = array('lien_demande_demandeur' => "",
852     'petitionnaire_principal' => (($principal)?"t":"f"),
853     'demande' => $this->valF['demande'],
854     'demandeur' => $id);
855     $lienAjout->ajouter($lien, $db, $DEBUG);
856     $lienAjout->__destruct();
857     }
858    
859     /**
860     * Fonction permettant de supprimer un lien
861     * entre la table demande et demandeur
862     **/
863     function deleteLinkDemandeDemandeur($id, $db, $DEBUG) {
864     // Suppression
865     $sql = "DELETE FROM ".DB_PREFIXE."lien_demande_demandeur ".
866     "WHERE demande=".$this->valF['demande'].
867     " AND demandeur=".$id;
868     // Execution de la requete de suppression de l'objet
869     $res = $db->query($sql);
870     // Logger
871 vpihour 1777 $this->f->addToLog("deleteLinkDemandeDemandeur(): db->query(\"".$sql."\");", VERBOSE_MODE);
872     if ( database::isError($res)){
873     die();
874     }
875 nhaye 838
876     }
877    
878 vpihour 1058 /*
879     * Teste si le lien entre une demande et un demandeur existe
880     * */
881 nhaye 838 function isLinkDemandeDemandeurExist($idDemandeur) {
882     $sql = "SELECT count(*)
883     FROM ".DB_PREFIXE."lien_demande_demandeur
884     WHERE demande = ".$this->valF['demande'].
885     "AND demandeur = ".$idDemandeur;
886     $count = $this->f->db->getOne($sql);
887 vpihour 1777 $this->f->addToLog("isLinkDemandeDemandeurExist() : db->getone(\"".$sql."\");", VERBOSE_MODE);
888     if ( database::isError($count)){
889     die();
890     }
891 nhaye 838 if ($count === 0) {
892     return false;
893 nhaye 828 } else {
894 nhaye 838 return true;
895 nhaye 828 }
896 nhaye 838
897 nhaye 828 }
898    
899     /**
900     * Methode de recupération des valeurs postées
901     **/
902     function getPostedValues() {
903     // Récupération des demandeurs dans POST
904     if (isset($_POST['petitionnaire_principal']) OR
905     isset($_POST['delegataire']) OR
906     isset($_POST['petitionnaire'])) {
907     if( isset($_POST['petitionnaire_principal']) AND
908     !empty($_POST['petitionnaire_principal'])) {
909 nhaye 838 $this->postedIdDemandeur['petitionnaire_principal'] = $_POST['petitionnaire_principal'];
910 nhaye 807 }
911 nhaye 828 if( isset($_POST['delegataire']) AND
912     !empty($_POST['delegataire'])) {
913 nhaye 838 $this->postedIdDemandeur['delegataire'] = $_POST['delegataire'];
914 nhaye 828 }
915     if( isset($_POST['petitionnaire']) AND
916     !empty($_POST['petitionnaire'])) {
917 nhaye 838 $this->postedIdDemandeur['petitionnaire'] = $_POST['petitionnaire'];
918 nhaye 828 }
919 nhaye 807 }
920 vpihour 676 }
921 fmichon 1713
922 nhaye 828 /**
923 fmichon 1713 * Méthode permettant de récupérer les id des demandeurs liés à la table
924     * liée passée en paramètre
925     *
926     * @param string $from Table liée : "demande", "dossier", dossier_autorisation"
927     * @param string $id Identifiant (clé primaire de la table liée en question)
928     */
929 nhaye 1039 function listeDemandeur($from, $id) {
930 nhaye 828 // Récupération des demandeurs de la base
931 fmichon 1723 $sql = "SELECT demandeur.demandeur,
932     demandeur.type_demandeur,
933     lien_".$from."_demandeur.petitionnaire_principal
934     FROM ".DB_PREFIXE."lien_".$from."_demandeur
935     INNER JOIN ".DB_PREFIXE."demandeur
936     ON demandeur.demandeur=lien_".$from."_demandeur.demandeur
937     WHERE ".$from." = '".$id."'";
938     $res = $this->f->db->query($sql);
939     $this->f->addToLog("listeDemandeur(): db->query(\"".$sql."\")", VERBOSE_MODE);
940 vpihour 1777 if ( database::isError($res)){
941     die();
942     }
943 fmichon 1723 // Stockage du résultat dans un tableau
944     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
945     if ($row['petitionnaire_principal'] == 't' AND
946     $row['type_demandeur']=="petitionnaire") {
947     $this->valIdDemandeur['petitionnaire_principal']=$row['demandeur'];
948     } elseif ($row['petitionnaire_principal'] == 'f' AND
949     $row['type_demandeur']=="petitionnaire"){
950     $this->valIdDemandeur['petitionnaire'][]=$row['demandeur'];
951     } elseif ($row['type_demandeur']=="delegataire"){
952     $this->valIdDemandeur['delegataire']=$row['demandeur'];
953 nhaye 828 }
954     }
955     }
956 nhaye 807
957 nhaye 1037
958 nhaye 807 /**
959 nhaye 1037 * Surcharge du bouton retour afin de retourner sur la recherche de dossiers
960     * d'instruction existant
961     */
962     function retour($premier = 0, $recherche = "", $tricol = "") {
963    
964     echo "\n<a class=\"retour\" ";
965     echo "href=\"";
966     //
967     if($this->getParameter("idx_dossier") != "") {
968     echo "tab.php?";
969     echo "obj=recherche_dossier";
970    
971     } else {
972     if($this->getParameter("retour")=="form" AND !($this->getParameter("validation")>0 AND $this->getParameter("maj")==2 AND $this->correct)) {
973     echo "form.php?";
974     } else {
975     echo "tab.php?";
976     }
977     echo "obj=".get_class($this);
978     if($this->getParameter("retour")=="form") {
979     echo "&amp;idx=".$this->getParameter("idx");
980     echo "&amp;action=3";
981     }
982     }
983     echo "&amp;premier=".$this->getParameter("premier");
984     echo "&amp;tricol=".$this->getParameter("tricol");
985     echo "&amp;recherche=".$this->getParameter("recherche");
986     echo "&amp;selectioncol=".$this->getParameter("selectioncol");
987     echo "&amp;advs_id=".$this->getParameter("advs_id");
988     echo "&amp;valide=".$this->getParameter("valide");
989     //
990     echo "\"";
991     echo ">";
992     //
993     echo _("Retour");
994     //
995     echo "</a>\n";
996    
997     }
998    
999    
1000     /**
1001 fmichon 1723 * Cette méthode permet d'afficher des informations spécifiques dans le
1002     * formulaire de l'objet
1003     *
1004     * @param integer $maj Mode de mise à jour
1005 nhaye 807 */
1006     function formSpecificContent($maj) {
1007 fmichon 1723
1008     /**
1009     * Gestion du bloc des demandeurs
1010     */
1011     // Si le mode est (modification ou suppression ou consultation) ET que
1012     // le formulaire n'est pas correct (c'est-à-dire que le formulaire est
1013     // actif)
1014     if (!$this->correct AND $maj != 0) {
1015     // Alors on récupère les demandeurs dans la table lien pour
1016     // affectation des résultats dans this->valIdDemandeur
1017 nhaye 1039 $this->listeDemandeur("demande", $this->val[array_search('demande', $this->champs)]);
1018 nhaye 838 }
1019 fmichon 1723
1020     // Si le mode est (ajout ou modification) ET que le formulaire n'est pas
1021     // correct (c'est-à-dire que le formulaire est actif)
1022     if ($maj < 2 AND !$this->correct) {
1023     // Alors on positionne le marqueur linkable a true qui permet
1024     // d'afficher ou non les actions de gestion des demandeurs
1025 nhaye 838 $linkable = true;
1026     } else {
1027 fmichon 1723 // Sinon on positionne le marqueur linkable a false qui permet
1028     // d'afficher ou non les actions de gestion des demandeurs
1029 nhaye 838 $linkable = false;
1030     }
1031 nhaye 1020
1032 fmichon 1723 // Affichage des demandeurs et des actions
1033 nhaye 807 // Conteneur de la listes des demandeurs
1034 nhaye 1097 echo "<div id=\"liste_demandeur\" class=\"demande_hidden_bloc col_12\">";
1035 nhaye 807 echo "<fieldset class=\"cadre ui-corner-all ui-widget-content\">";
1036     echo " <legend class=\"ui-corner-all ui-widget-content ui-state-active\">"
1037     ._("Petitionnaire")."</legend>";
1038     // Si des demandeurs sont liés à la demande
1039 nhaye 828 require_once "../obj/petitionnaire.class.php";
1040     require_once "../obj/delegataire.class.php";
1041 nhaye 1097 // Affichage du bloc pétitionnaire principal / délégataire
1042     // L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
1043 nhaye 1672 echo "<div id=\"petitionnaire_principal_delegataire\">";
1044 nhaye 1097 // Affichage de la synthèse
1045     if (isset ($this->valIdDemandeur["petitionnaire_principal"]) AND
1046     !empty($this->valIdDemandeur["petitionnaire_principal"])) {
1047     $demandeur = new petitionnaire(
1048     $this->valIdDemandeur["petitionnaire_principal"],
1049     $this->f->db,false);
1050     $demandeur -> afficherSynthese("petitionnaire_principal", $linkable);
1051     $demandeur -> __destruct();
1052     } elseif ( isset ($this->postedIdDemandeur["petitionnaire_principal"]) AND
1053     !empty($this->postedIdDemandeur["petitionnaire_principal"]) ) {
1054     $demandeur = new petitionnaire(
1055     $this->postedIdDemandeur["petitionnaire_principal"],
1056     $this->f->db,false);
1057     $demandeur -> afficherSynthese("petitionnaire_principal", $linkable);
1058     $demandeur -> __destruct();
1059     }
1060     // Si en édition de formulaire
1061     if($maj < 2) {
1062     // Bouton d'ajout du pétitionnaire principal
1063     // L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
1064     echo "<span id=\"add_petitionnaire_principal\"
1065     class=\"om-form-button add-16\">".
1066     _("Saisir le petitionnaire principal").
1067     "</span>";
1068     }
1069     // Bouton d'ajout du delegataire
1070     // L'ID DU DIV ET DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
1071     echo "<div id=\"delegataire\">";
1072     // Affichage de la synthèse
1073     if (isset ($this->valIdDemandeur["delegataire"]) AND
1074     !empty($this->valIdDemandeur["delegataire"])) {
1075     $demandeur = new delegataire($this->valIdDemandeur["delegataire"],
1076     $this->f->db,false);
1077     $demandeur -> afficherSynthese("delegataire", $linkable);
1078     $demandeur -> __destruct();
1079     } elseif ( isset ($this->postedIdDemandeur["delegataire"]) AND
1080     !empty($this->postedIdDemandeur["delegataire"]) ) {
1081 nhaye 807
1082 nhaye 1097 $demandeur = new delegataire($this->postedIdDemandeur["delegataire"],
1083     $this->f->db,false);
1084     $demandeur -> afficherSynthese("delegataire", $linkable);
1085     $demandeur -> __destruct();
1086     }
1087     if($maj < 2) {
1088     echo "<span id=\"add_delegataire\"
1089 vpihour 1075 class=\"om-form-button add-16\">".
1090 nhaye 1097 _("Saisir le delegataire").
1091 vpihour 1051 "</span>";
1092 nhaye 1097 }
1093     echo "</div>";
1094 nhaye 1118 echo "<div class=\"both\"></div>";
1095 nhaye 1097 echo "</div>";
1096     // Bloc des pétitionnaires secondaires
1097     // L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
1098 nhaye 1672 echo "<div id=\"listePetitionnaires\">";
1099 fmichon 1005
1100 nhaye 1097 // Affichage de la synthèse
1101     if (isset ($this->valIdDemandeur["petitionnaire"]) AND
1102     !empty($this->valIdDemandeur["petitionnaire"])) {
1103    
1104     foreach ($this->valIdDemandeur["petitionnaire"] as $petitionnaire) {
1105     $demandeur = new petitionnaire($petitionnaire,
1106     $this->f->db,false);
1107     $demandeur -> afficherSynthese("petitionnaire", $linkable);
1108 nhaye 1065 $demandeur -> __destruct();
1109     }
1110    
1111 nhaye 1097 } elseif ( isset ($this->postedIdDemandeur["petitionnaire"]) AND
1112     !empty($this->postedIdDemandeur["petitionnaire"]) ) {
1113     foreach ($this->postedIdDemandeur["petitionnaire"] as $petitionnaire) {
1114     $demandeur = new petitionnaire($petitionnaire,
1115     $this->f->db,false);
1116     $demandeur -> afficherSynthese("petitionnaire", $linkable);
1117     $demandeur -> __destruct();
1118 nhaye 828 }
1119 nhaye 1097 }
1120     if ($maj < 2) {
1121     // L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
1122     echo "<span id=\"add_petitionnaire\"
1123     class=\"om-form-button add-16\">".
1124     _("Ajouter un petitionnaire")
1125     ."</span>";
1126     }
1127     echo "</div>";
1128 nhaye 807 echo "</fieldset>";
1129     echo "</div>";
1130     }
1131    
1132 nhaye 1097 // {{{
1133    
1134     // getter
1135     function getValIdDemandeur() {
1136     return $this->valIdDemandeur;
1137     }
1138     // setter
1139     function setValIdDemandeur($valIdDemandeur) {
1140     $this->valIdDemandeur = $valIdDemandeur;
1141     }
1142 vpihour 1106
1143     //Supression du lien entre la demandeur et le(s) demandeur(s)
1144     function triggerSupprimer($id, &$db, $val, $DEBUG){
1145    
1146     //Création de la requête
1147     $sql = "DELETE FROM
1148     ".DB_PREFIXE."lien_demande_demandeur
1149     WHERE
1150     demande = $id";
1151    
1152     $res = $this->f->db->query($sql);
1153 vpihour 1777 $this->f->addToLog("triggerSupprimer() : db->query(\"".$sql."\")");
1154     if ( database::isError($res)){
1155     die();
1156     }
1157 vpihour 1106 }
1158    
1159 nhaye 1097 // }}}
1160 vpihour 632 }// fin classe
1161 fmichon 1005 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26