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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1037 - (hide annotations)
Tue Dec 11 09:36:24 2012 UTC (12 years, 1 month ago) by nhaye
File size: 34709 byte(s)
Surcharge du bouton retour de la demande lorsqu'on modifie un dossier existant,
enregistrement de la date de demande dans les dossiers d'instruction

1 vpihour 632 <?php
2     //$Id$
3     //gen openMairie le 08/11/2012 14:00
4    
5     require_once ("../gen/obj/demande.class.php");
6    
7     class demande extends demande_gen {
8    
9 nhaye 838 var $valIdDemandeur = array("petitionnaire_principal" => "",
10     "delegataire" => "",
11     "petitionnaire" => array());
12     var $postedIdDemandeur = array("petitionnaire_principal" => "",
13     "delegataire" => "",
14     "petitionnaire" => array());
15 nhaye 807
16 vpihour 632 function demande($id,&$db,$debug) {
17     $this->constructeur($id,$db,$debug);
18     }// fin constructeur
19 fmichon 1005
20     function setValF($val) {
21     parent::setValF($val);
22    
23     // Récupération des id demandeurs postés
24     $this->getPostedValues();
25 nhaye 1020 //$this->valIdDemandeur=$this->postedIdDemandeur;
26 fmichon 1005 }
27    
28     /**
29     * Méthode permettant de récupérer les valeurs du dossier d'autorisation
30     * correspondant àla nouvelle demande
31     */
32     function getValFromDossierAutorisation($dossier_autorisation) {
33     include "../sql/pgsql/demande.form.inc.php";
34     $sql=str_replace("<idx>",$this->getParameter("idx_dossier"),
35     $sql_infos_dossier_autorisation);
36     $res = $this->db->query($sql);
37     $this->addToLog("demande -> getValFromDossierAutorisation() : ".$sql);
38     $this->f->isDatabaseError();
39     $row = & $res->fetchRow(DB_FETCHMODE_ASSOC);
40     return $row;
41     }
42 vpihour 651
43 vpihour 799 /*
44     * La date du jour par défaut dans le champs date_demande
45     * Put the date of the day by default into the field date_demande
46     */
47 vpihour 635 function setVal(&$form, $maj, $validation, &$db) {
48     if($maj == 0) {
49 fmichon 1005 $form->setVal("date_demande",date('d/m/Y'));
50    
51     // Récupération des valeurs du dossier d'autorisation correspondant
52     if($this->getParameter("idx_dossier") != "") {
53     $val_autorisation = $this->getValFromDossierAutorisation(
54     $this->getParameter("idx_dossier"));
55     foreach($val_autorisation as $champ => $value) {
56     $form->setVal($champ,$value);
57     }
58     }
59 vpihour 635 }
60     }
61    
62 nhaye 838 /**
63     * Méthode de verification du contenu
64     */
65     function verifier($val, &$db, $DEBUG) {
66     parent::verifier($val, $db, $DEBUG);
67     if(!isset($this->postedIdDemandeur["petitionnaire_principal"]) OR
68     empty($this->postedIdDemandeur["petitionnaire_principal"])) {
69     $this->correct = false;
70     $this->addToMessage("La saisie d'un petitionnaire principal est obligatoire.");
71     }
72     }
73 vpihour 799 /*
74     * Ajout du fielset
75     * Add fieldset
76     */
77 vpihour 635 function setLayout(&$form, $maj){
78     if ( $maj < 2 OR $maj == 3 ) {
79    
80     //Champs sur lequel s'ouvre le fieldset
81 nhaye 807 $form->setBloc('dossier_autorisation_type_detaille','D',"","dossier_type col_8");
82    
83     $form->setFieldset('dossier_autorisation_type_detaille','D'
84     ,_('Type de dossier/demande'));
85     $form->setFieldset('demande_type','F','');
86    
87     $form->setBloc('demande_type','F');
88    
89     $form->setBloc('date_demande','D',"","col_4 demande_hidden_bloc");
90     $form->setFieldset('date_demande','D',_('Date de la demande'));
91     $form->setFieldset('date_demande','F','');
92 vpihour 635 $form->setBloc('date_demande','F');
93    
94 nhaye 807 $form->setBloc('terrain_references_cadastrales','D',"",
95     "localisation col_12 demande_hidden_bloc");
96 vpihour 693 $form->setFieldset('terrain_references_cadastrales','D',_('Localisation du terrain'));
97     $form->setFieldset('terrain_superficie','F','');
98 vpihour 635 $form->setBloc('terrain_superficie','F');
99 vpihour 676
100 nhaye 807 $form->setBloc('nombre_lots','D',"","lots col_12 demande_hidden_bloc");
101 vpihour 693 $form->setFieldset('nombre_lots','D',_('Nombre de lots'));
102     $form->setFieldset('nombre_lots','F','');
103 vpihour 676 $form->setBloc('nombre_lots','F');
104 vpihour 635 }
105     }
106 vpihour 641
107 vpihour 799 /*
108     * Ajoute des actions sur les deux premiers select
109     * Add actions on the two first select
110     */
111 vpihour 641 function setOnchange(&$form,$maj){
112     parent::setOnchange($form,$maj);
113     $form->setOnchange("dossier_autorisation_type_detaille","changeDemandeType();");
114     $form->setOnchange("demande_type","showFormsDemande();");
115     }
116 vpihour 635
117 vpihour 799 /*
118     * Cache le champ terrain_references_cadastrales
119     * Hide the fiels terrain_references_cadastrales
120     */
121 vpihour 651 function setType(&$form,$maj) {
122     parent::setType($form,$maj);
123    
124 vpihour 689 $form->setType('dossier_instruction', 'hidden');
125     $form->setType('dossier_autorisation', 'hidden');
126 fmichon 1005
127     $form->setType('instruction_recepisse', 'hidden');
128     $form->setType('arrondissement', 'hidden');
129    
130     // Si il s'agit d'une demande sur dossier existant on desactive tous les champs
131     // sauf demande_type
132     if($maj == 0 AND $this-> getParameter("idx_dossier")) {
133     $form->setType('dossier_autorisation_type_detaille', 'selectdisabled');
134     $form->setType('terrain_references_cadastrales', 'textdisabled');
135     $form->setType('terrain_adresse_voie_numero', 'textdisabled');
136     $form->setType('complement', 'textdisabled');
137     $form->setType('terrain_adresse_lieu_dit', 'textdisabled');
138     $form->setType('terrain_adresse_localite', 'textdisabled');
139     $form->setType('terrain_adresse_code_postal', 'textdisabled');
140     $form->setType('terrain_adresse_bp', 'textdisabled');
141     $form->setType('terrain_adresse_cedex', 'textdisabled');
142     $form->setType('terrain_superficie', 'textdisabled');
143     $form->setType('nombre_lots', 'textdisabled');
144     }
145 vpihour 651 }
146 vpihour 676
147 nhaye 807 /**
148 nhaye 920 * Méthode permettant d'ajouter un dossier d'autorisation
149     */
150     function ajoutDossierAutorisation($id, &$db, $val, $DEBUG){
151     require_once '../obj/dossier_autorisation.class.php';
152     $dossier_autorisation = new dossier_autorisation("]",$db,$DEBUG);
153     // Création du dossier
154     foreach($dossier_autorisation->champs as $value) {
155     $valAuto[$value] = NULL;
156     }
157     $valAuto['dossier_autorisation']=NULL;
158     $valAuto['nature']=NULL;
159     $valAuto['exercice']=NULL;
160     $valAuto['insee']=NULL;
161     $valAuto['arrondissement']=NULL;
162     $valAuto['etat']=NULL;
163     $valAuto['erp_numero_batiment']=NULL;
164     $valAuto['erp_ouvert']=NULL;
165     $valAuto['erp_arrete_decision']=NULL;
166     $valAuto['dossier_autorisation_type_detaille']=$this->valF['dossier_autorisation_type_detaille'];
167     $valAuto['depot_initial']=$this->valF['date_demande'];
168     $valAuto['terrain_references_cadastrales']=$this->valF['terrain_references_cadastrales'];
169     $valAuto['terrain_adresse_voie_numero']=$this->valF['terrain_adresse_voie_numero'];
170     $valAuto['complement']=$this->valF['complement'];
171     $valAuto['terrain_adresse_lieu_dit']=$this->valF['terrain_adresse_lieu_dit'];
172     $valAuto['terrain_adresse_localite']=$this->valF['terrain_adresse_localite'];
173     $valAuto['terrain_adresse_code_postal']=$this->valF['terrain_adresse_code_postal'];
174     $valAuto['terrain_adresse_bp']=$this->valF['terrain_adresse_bp'];
175     $valAuto['terrain_adresse_cedex']=$this->valF['terrain_adresse_cedex'];
176     $valAuto['terrain_superficie']=$this->valF['terrain_superficie'];
177 fmichon 1005 $valAuto['numero_version']=-1;
178 nhaye 920 // Ajout du dossier dans la base
179     $dossier_autorisation->ajouter($valAuto, $db, $DEBUG);
180     // Liaison du dossier ajouter à la demande
181     $this->valF['dossier_autorisation'] = $dossier_autorisation->valF['dossier_autorisation'];
182     }
183    
184     /**
185     * Méthode permettant d'ajouter un dossier d'instruction
186     */
187 fmichon 1005 function ajoutDossierInstruction($id, &$db, $val, $DEBUG, $dossier_instruction_type){
188 nhaye 920 require_once '../obj/dossier.class.php';
189     $dossier = new dossier("]",$db,$DEBUG);
190     foreach($dossier->champs as $value) {
191     $valInstr[$value] = NULL;
192     }
193     require_once '../obj/dossier_autorisation_type_detaille.class.php';
194     $datd = new dossier_autorisation_type_detaille(
195     $this->valF['dossier_autorisation_type_detaille'],$db,$DEBUG);
196 fmichon 1005
197     /*Ajout de la variable dossier_instruction_type à l'objet dossier pour le
198     * versionning
199     */
200     $dossier->setDossierInstructionType($dossier_instruction_type);
201    
202 nhaye 920 // Définition des valeurs à entrée dans la table
203     $valInstr['nature']=$datd->val[array_search("code", $datd->champs)];
204     $valInstr['dossier_autorisation_type_detaille']=$this->valF['dossier_autorisation_type_detaille'];
205     $valInstr['date_depot']=$this->dateDBToForm($this->valF['date_demande']);
206 nhaye 1037 $valInstr['date_demande']=$this->dateDBToForm($this->valF['date_demande']);
207 nhaye 920 $valInstr['depot_initial']=$this->dateDBToForm($this->valF['date_demande']);
208     $valInstr['terrain_references_cadastrales']=$this->valF['terrain_references_cadastrales'];
209     $valInstr['terrain_adresse_voie_numero']=$this->valF['terrain_adresse_voie_numero'];
210     $valInstr['complement']=$this->valF['complement'];
211     $valInstr['terrain_adresse_lieu_dit']=$this->valF['terrain_adresse_lieu_dit'];
212     $valInstr['terrain_adresse_localite']=$this->valF['terrain_adresse_localite'];
213     $valInstr['terrain_adresse_code_postal']=$this->valF['terrain_adresse_code_postal'];
214     $valInstr['terrain_adresse_bp']=$this->valF['terrain_adresse_bp'];
215     $valInstr['terrain_adresse_cedex']=$this->valF['terrain_adresse_cedex'];
216     $valInstr['terrain_superficie']=$this->valF['terrain_superficie'];
217     $valInstr['description']="";
218 fmichon 927 $valInstr['dossier_autorisation']=$this->valF['dossier_autorisation'];
219 nhaye 920 $dossier->ajouter($valInstr, $db, $DEBUG);
220     $this->f->isDatabaseError();
221     // Liaison du dossier ajouter à la demande
222     $this->valF['dossier_instruction'] = $dossier->valF['dossier'];
223     }
224    
225     /**
226     * Ajout des liens demandeurs / dossier d'autorisation
227 nhaye 907 **/
228 nhaye 920 function ajoutLiensDossierAutorisation($id, &$db, $val, $DEBUG) {
229     // Création des liens entre le dossier autorisation et les demandeurs
230 nhaye 907 include '../sql/pgsql/demande.form.inc.php';
231 nhaye 920 require_once '../obj/lien_dossier_autorisation_demandeur.class.php';
232     $ldad = new lien_dossier_autorisation_demandeur("]",$db,$DEBUG);
233     // Recupération des demandeurs liés à la demande
234     $sql = str_replace("<demande>",$this->valF['demande'],$sql_lien_demande_demandeur);
235     $res = $db->query($sql);
236     $this->f->addToLog("demande.class.php: db->query(\"".$sql."\");", VERBOSE_MODE);
237     $this->f->isDatabaseError();
238     while($row = &$res->fetchRow(DB_FETCHMODE_ASSOC)) {
239     $row['lien_dossier_autorisation_demandeur'] = NULL;
240     $row['dossier_autorisation'] = $this->valF['dossier_autorisation'];
241     $ldad->ajouter($row, $db, $DEBUG);
242     }
243     }
244    
245     /**
246     * Ajout des liens demandeurs / dossier d'autorisation
247     **/
248     function ajoutLiensDossierInstruction($id, &$db, $val, $DEBUG) {
249     // Création des liens entre le dossier instruction et les demandeurs
250     include '../sql/pgsql/demande.form.inc.php';
251     require_once '../obj/lien_dossier_demandeur.class.php';
252     $ldd = new lien_dossier_demandeur("]",$db,$DEBUG);
253     // Recupération des demandeurs liés à la demande
254     $sql = str_replace("<demande>",$this->valF['demande'],$sql_lien_demande_demandeur);
255     $res = $db->query($sql);
256     $this->f->addToLog("demande.class.php: db->query(\"".$sql."\");", VERBOSE_MODE);
257     $this->f->isDatabaseError();
258     while($row = &$res->fetchRow(DB_FETCHMODE_ASSOC)) {
259     $row['lien_dossier_demandeur'] = NULL;
260     $row['dossier'] = $this->valF['dossier_instruction'];
261     $ldd->ajouter($row, $db, $DEBUG);
262     }
263     }
264    
265 fmichon 1005 /*
266     * Récupère l'identifiant d'un arrondissement à partir d'un code postal
267     */
268     function getArrondissement($terrain_adresse_code_postal){
269    
270     $arrondissement = NULL;
271    
272     $sql = "SELECT
273     arrondissement
274     FROM
275     ".DB_PREFIXE."arrondissement
276     WHERE
277     code_postal = '$terrain_adresse_code_postal' ";
278     $this->addToLog("demande.class.php : ".$sql." execute <br>", EXTRA_VERBOSE_MODE);
279    
280     $res = $this->db->query($sql);
281     $this->f->isDatabaseError($res);
282    
283     if( $res->numrows() > 0 ) {
284    
285     $row=& $res->fetchRow(DB_FETCHMODE_ASSOC);
286     $arrondissement = $row['arrondissement'];
287     }
288    
289     return $arrondissement;
290     }
291    
292     /*
293     * Récupère l'évènement lié à un type de demande
294     */
295     function getEvenement($demande_type){
296    
297     $evenement = NULL;
298    
299     $sql =
300     "SELECT
301     evenement
302     FROM
303     ".DB_PREFIXE."demande_type
304     WHERE
305     demande_type = $demande_type";
306    
307     $res = $this->db->query($sql);
308     $this->f->isDatabaseError($res);
309    
310     if ( $res->numrows() > 0 ){
311    
312     $row=& $res->fetchRow(DB_FETCHMODE_ASSOC);
313     $evenement = $row['evenement'];
314     }
315    
316     return $evenement;
317     }
318    
319     /*
320     * Récupère la lettre type lié à un événement
321     */
322     function getLettreType($evenement){
323    
324     $lettretype = NULL;
325    
326     $sql =
327     "SELECT
328     lettretype
329     FROM
330     ".DB_PREFIXE."evenement
331     WHERE
332     evenement = $evenement";
333    
334     $res = $this->db->query($sql);
335     $this->f->isDatabaseError($res);
336    
337     if ( $res->numrows() > 0 ){
338    
339     $row=& $res->fetchRow(DB_FETCHMODE_ASSOC);
340     $lettretype = $row['lettretype'];
341     }
342    
343     return $lettretype;
344     }
345    
346 nhaye 920 /**
347     * Ajout des dossiers
348     **/
349     function triggerAjouter($id, &$db, $val, $DEBUG){
350     include '../sql/pgsql/demande.form.inc.php';
351 nhaye 907 if($this->valF["demande_type"] != NULL) {
352     $res = $db->query(str_replace('<idx>', $this->valF['demande_type'], $sql_demande_type_details_by_id));
353     $this->f->isDatabaseError();
354 nhaye 920 $dossier_type = $res->fetchRow(DB_FETCHMODE_ASSOC);
355 nhaye 907 // Création du dossier_autorisation
356 nhaye 920 if($dossier_type['dossier_autorisation_type_detaille'] != NULL) {
357     $this->ajoutDossierAutorisation($id, $db, $val, $DEBUG);
358 nhaye 907 $this -> addToMessage(_("Creation du dossier d'autorisation no").$this->valF['dossier_autorisation']);
359     }
360 nhaye 920 // Création du dossier d'instruction
361     if($dossier_type['dossier_instruction_type'] != NULL) {
362 fmichon 1005 $this->ajoutDossierInstruction($id, $db, $val, $DEBUG, $dossier_type['dossier_instruction_type']);
363 nhaye 945 $this -> addToMessage(_("Creation du dossier d'instruction no").$this->valF['dossier_instruction']);
364 nhaye 907 }
365 vpihour 930
366     /*Création du lien de téléchargement de récépissé de demande*/
367     if ( $this->valF['demande_type'] != "" && is_numeric($this->valF['demande_type'])
368     && isset($this->valF['dossier_instruction']) && $this->valF['dossier_instruction'] !== "" ){
369    
370     /*Récupérer l'événement lié à ce type de demande*/
371 fmichon 1005 $evenement = $this->getEvenement($this->valF['demande_type']);
372    
373 vpihour 930 /*Récupération de la lettre type de l'événement*/
374 fmichon 1005 $lettretype = $this->getLettreType($evenement);
375 vpihour 930
376     /*Création d'une nouvelle instruction avec cet événement*/
377     /*Données*/
378     $valInstr['instruction']=NULL;
379    
380     $valInstr['destinataire']=$this->valF['dossier_instruction'];
381     $valInstr['dossier']=$this->valF['dossier_instruction'];
382    
383     $valInstr['datecourrier']=date("d/m/Y");
384 fmichon 1005 $valInstr['evenement']=$evenement;
385     $valInstr['lettretype']=$lettretype;
386 vpihour 930 $valInstr['complement']="";
387     $valInstr['complement2']="";
388    
389     $valInstr['action']="initialisation";
390     $valInstr['delai']="2";
391     $valInstr['etat']="notifier";
392     $valInstr['accord_tacite']="Oui";
393     $valInstr['delai_notification']="1";
394     $valInstr['archive_delai']="0";
395     $valInstr['archive_date_complet']=NULL;
396     $valInstr['archive_date_rejet']=NULL;
397     $valInstr['archive_date_limite']=NULL;
398     $valInstr['archive_date_notification_delai']=NULL;
399     $valInstr['archive_accord_tacite']="Non";
400     $valInstr['archive_etat']="initialiser";
401     $valInstr['archive_date_decision']=NULL;
402     $valInstr['archive_avis']="";
403     $valInstr['archive_date_validite']=NULL;
404     $valInstr['archive_date_achevement']=NULL;
405     $valInstr['archive_date_chantier']=NULL;
406     $valInstr['archive_date_conformite']=NULL;
407     $valInstr['complement3']="";
408     $valInstr['complement4']="";
409     $valInstr['complement5']="";
410     $valInstr['complement6']="";
411     $valInstr['complement7']="";
412     $valInstr['complement8']="";
413     $valInstr['complement9']="";
414     $valInstr['complement10']="";
415     $valInstr['complement11']="";
416     $valInstr['complement12']="";
417     $valInstr['complement13']="";
418     $valInstr['complement14']="";
419     $valInstr['complement15']="";
420     $valInstr['avis_decision']=NULL;
421    
422     /*Fichier requis*/
423     require_once '../obj/instruction.class.php';
424    
425     /*Création d'un nouveau dossier*/
426     $instruction = new instruction("]",$db,$DEBUG);
427     $instruction->valF = "";
428     $instruction->ajouter($valInstr, $db, $DEBUG);
429     if ( $instruction->valF['instruction'] != "" ){
430    
431 fmichon 1005 $this->valF['instruction_recepisse'] = $instruction->valF['instruction'];
432 vpihour 930 $this -> addToMessage("<br/><a
433     class='lien'
434 fmichon 1005 href='../pdf/pdflettretype.php?obj=".$lettretype."&amp;idx=".$this->valF['dossier_instruction']."'>
435 vpihour 930 <span
436     class=\"om-icon om-icon-16 om-icon-fix pdf-16\"
437     title=\""._("Telecharger le recepisse de la demande")."\">".
438     _("Telecharger le recepisse de la demande").
439     "</span>
440     &nbsp;&nbsp;&nbsp;&nbsp;".
441     _("Telecharger le recepisse de la demande")."
442     </a></br>");
443     }
444     else {
445    
446 fmichon 1012 $this -> addToMessage(_("Une erreur s'est produite lors de la creation du recepisse"));
447 vpihour 930 }
448     }
449 fmichon 1005
450     /*Ajout de l'arrondissement à partir du code postal*/
451     if ( !is_null($this->valF["terrain_adresse_code_postal"]) && is_numeric($this->valF["terrain_adresse_code_postal"]) ){
452    
453     $this->valF["arrondissement"] = $this->getArrondissement($this->valF["terrain_adresse_code_postal"]);
454     }
455 nhaye 907 }
456     }
457    
458     /**
459 nhaye 828 * Ajout des délégataires et pétitionnaires
460 nhaye 807 **/
461 nhaye 828 function triggerAjouterApres($id, &$db, $val, $DEBUG){
462     $this->insertLinkDemandeDemandeur($db, $DEBUG);
463 fmichon 1005
464 nhaye 920 // Ajout des lliens entre dossier_autorisation et demandeur
465     if(!empty($this->valF['dossier_autorisation'])) {
466     $this->ajoutLiensDossierAutorisation($id, $db, $val, $DEBUG);
467     }
468     // Ajout des lliens entre dossier et demandeur
469     if(!empty($this->valF['dossier_instruction'])) {
470     $this->ajoutLiensDossierInstruction($id, $db, $val, $DEBUG);
471     }
472 nhaye 828 }
473     function triggerModifierApres($id, &$db, $val, $DEBUG){
474 nhaye 838 $this->listeDemandeur();
475 nhaye 828 $this->insertLinkDemandeDemandeur($db, $DEBUG);
476 nhaye 838 $this->valIdDemandeur=$this->postedIdDemandeur;
477 nhaye 828
478     }
479    
480     /**
481 nhaye 838 * Gestion des liens entre la demande et les demendeurs recement ajoutés
482 nhaye 828 **/
483     function insertLinkDemandeDemandeur($db, $DEBUG) {
484     //
485     require_once "../obj/lien_demande_demandeur.class.php";
486 nhaye 838 // Comparaison de l'id petitionnaire principal
487     if(isset($this->postedIdDemandeur['petitionnaire_principal']) AND
488     !empty($this->postedIdDemandeur['petitionnaire_principal']) AND
489     $this->valIdDemandeur['petitionnaire_principal'] !=
490     $this->postedIdDemandeur['petitionnaire_principal']) {
491     // Ajout du nouveau lien
492     $this->addLinkDemandeDemandeur($this->postedIdDemandeur['petitionnaire_principal'], true, $db, $DEBUG);
493     if(!empty($this->valIdDemandeur['petitionnaire_principal'])) {
494     $this->deleteLinkDemandeDemandeur($this->valIdDemandeur['petitionnaire_principal'], $db, $DEBUG);
495 nhaye 807 }
496 nhaye 828 }
497 nhaye 838
498     // Comparaison du delegataire
499     if(isset($this->postedIdDemandeur['delegataire']) AND
500     !empty($this->postedIdDemandeur['delegataire']) AND
501     $this->valIdDemandeur['delegataire'] !=
502     $this->postedIdDemandeur['delegataire']) {
503     // Ajout du nouveau lien
504     $this->addLinkDemandeDemandeur($this->postedIdDemandeur['delegataire'], false, $db, $DEBUG);
505     if(!empty($this->valIdDemandeur['delegataire'])) {
506     $this->deleteLinkDemandeDemandeur($this->valIdDemandeur['delegataire'], $db, $DEBUG);
507     }
508     }
509    
510     // Comparaison des different petitionnaires
511     if(isset($this->postedIdDemandeur['petitionnaire'])) {
512     // Suppression des liens non valides
513     foreach ($this->valIdDemandeur['petitionnaire'] as $petitionnaire) {
514     if(!in_array($petitionnaire, $this->postedIdDemandeur['petitionnaire'])) {
515     $this->deleteLinkDemandeDemandeur($petitionnaire, $db, $DEBUG);
516     }
517     }
518     // Ajout des nouveaux liens
519     foreach ($this->postedIdDemandeur['petitionnaire'] as $petitionnaire) {
520     if(!in_array($petitionnaire, $this->valIdDemandeur['petitionnaire'])) {
521     $this->addLinkDemandeDemandeur($petitionnaire, false, $db, $DEBUG);
522     }
523     }
524     }
525     }
526    
527    
528     /**
529     * Fonction permettant d'ajouter un lien
530     * entre la table demande et demandeur
531     **/
532     function addLinkDemandeDemandeur($id, $principal, $db, $DEBUG) {
533     $lienAjout = new lien_demande_demandeur(
534     "]",
535     $db,
536     $DEBUG);
537     $lien = array('lien_demande_demandeur' => "",
538     'petitionnaire_principal' => (($principal)?"t":"f"),
539     'demande' => $this->valF['demande'],
540     'demandeur' => $id);
541     $lienAjout->ajouter($lien, $db, $DEBUG);
542     $lienAjout->__destruct();
543     }
544    
545     /**
546     * Fonction permettant de supprimer un lien
547     * entre la table demande et demandeur
548     **/
549     function deleteLinkDemandeDemandeur($id, $db, $DEBUG) {
550     // Suppression
551     $sql = "DELETE FROM ".DB_PREFIXE."lien_demande_demandeur ".
552     "WHERE demande=".$this->valF['demande'].
553     " AND demandeur=".$id;
554     // Execution de la requete de suppression de l'objet
555     $res = $db->query($sql);
556     // Logger
557     $this->f->addToLog("supprimer(): db->query(\"".$sql."\");", VERBOSE_MODE);
558     $this->f->isDatabaseError();
559    
560     }
561    
562     function isLinkDemandeDemandeurExist($idDemandeur) {
563     $sql = "SELECT count(*)
564     FROM ".DB_PREFIXE."lien_demande_demandeur
565     WHERE demande = ".$this->valF['demande'].
566     "AND demandeur = ".$idDemandeur;
567     $count = $this->f->db->getOne($sql);
568     $this->f->addToLog("db->getone(\"".$sql."\");", VERBOSE_MODE);
569     $this->f->isDatabaseError($count);
570     if ($count === 0) {
571     return false;
572 nhaye 828 } else {
573 nhaye 838 return true;
574 nhaye 828 }
575 nhaye 838
576 nhaye 828 }
577    
578     /**
579     * Methode de recupération des valeurs postées
580     **/
581     function getPostedValues() {
582     // Récupération des demandeurs dans POST
583     if (isset($_POST['petitionnaire_principal']) OR
584     isset($_POST['delegataire']) OR
585     isset($_POST['petitionnaire'])) {
586     if( isset($_POST['petitionnaire_principal']) AND
587     !empty($_POST['petitionnaire_principal'])) {
588 nhaye 838 $this->postedIdDemandeur['petitionnaire_principal'] = $_POST['petitionnaire_principal'];
589 nhaye 807 }
590 nhaye 828 if( isset($_POST['delegataire']) AND
591     !empty($_POST['delegataire'])) {
592 nhaye 838 $this->postedIdDemandeur['delegataire'] = $_POST['delegataire'];
593 nhaye 828 }
594     if( isset($_POST['petitionnaire']) AND
595     !empty($_POST['petitionnaire'])) {
596 nhaye 838 $this->postedIdDemandeur['petitionnaire'] = $_POST['petitionnaire'];
597 nhaye 828 }
598 nhaye 807 }
599 vpihour 676 }
600 nhaye 828 /**
601     * Méthode permettant de récupérer les id des demandeur lié à la demande
602     **/
603 nhaye 838 function listeDemandeur() {
604 nhaye 828 // Récupération des demandeurs de la base
605     $sql = "SELECT demandeur.demandeur,
606     demandeur.type_demandeur,
607     lien_demande_demandeur.petitionnaire_principal
608     FROM ".DB_PREFIXE."lien_demande_demandeur
609     INNER JOIN ".DB_PREFIXE."demandeur
610     ON demandeur.demandeur=lien_demande_demandeur.demandeur
611     WHERE demande = ".$this->val[array_search('demande', $this->champs)];
612     $res = $this->f->db->query($sql);
613 nhaye 838 $this->f->addToLog("listeDemandeur() : ".$sql);
614 nhaye 828 $this->f->isDatabaseError($res);
615     // Stoquage du résultat dans un tableau
616     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
617     if ($row['petitionnaire_principal'] == 't' AND
618     $row['type_demandeur']=="petitionnaire") {
619     $this->valIdDemandeur['petitionnaire_principal']=$row['demandeur'];
620     } elseif ($row['petitionnaire_principal'] == 'f' AND
621     $row['type_demandeur']=="petitionnaire"){
622     $this->valIdDemandeur['petitionnaire'][]=$row['demandeur'];
623     } elseif ($row['type_demandeur']=="delegataire"){
624     $this->valIdDemandeur['delegataire']=$row['demandeur'];
625     }
626     }
627     }
628 nhaye 807
629 nhaye 1037
630 nhaye 807 /**
631 nhaye 1037 * Surcharge du bouton retour afin de retourner sur la recherche de dossiers
632     * d'instruction existant
633     */
634     function retour($premier = 0, $recherche = "", $tricol = "") {
635    
636     echo "\n<a class=\"retour\" ";
637     echo "href=\"";
638     //
639     if($this->getParameter("idx_dossier") != "") {
640     echo "tab.php?";
641     echo "obj=recherche_dossier";
642    
643     } else {
644     if($this->getParameter("retour")=="form" AND !($this->getParameter("validation")>0 AND $this->getParameter("maj")==2 AND $this->correct)) {
645     echo "form.php?";
646     } else {
647     echo "tab.php?";
648     }
649     echo "obj=".get_class($this);
650     if($this->getParameter("retour")=="form") {
651     echo "&amp;idx=".$this->getParameter("idx");
652     echo "&amp;action=3";
653     }
654     }
655     echo "&amp;premier=".$this->getParameter("premier");
656     echo "&amp;tricol=".$this->getParameter("tricol");
657     echo "&amp;recherche=".$this->getParameter("recherche");
658     echo "&amp;selectioncol=".$this->getParameter("selectioncol");
659     echo "&amp;advs_id=".$this->getParameter("advs_id");
660     echo "&amp;valide=".$this->getParameter("valide");
661     //
662     echo "\"";
663     echo ">";
664     //
665     echo _("Retour");
666     //
667     echo "</a>\n";
668    
669     }
670    
671    
672     /**
673 nhaye 807 * Ajout de la liste des demandeurs
674     */
675     function formSpecificContent($maj) {
676 nhaye 842 if(!$this->correct AND $maj != 0) {
677 nhaye 838 $this->listeDemandeur();
678     }
679     if($maj < 2 AND !$this->correct) {
680     $linkable = true;
681     } else {
682     $linkable = false;
683     }
684 nhaye 1020
685 nhaye 807 // Conteneur de la listes des demandeurs
686 nhaye 808 echo "<div class=\"demande_hidden_bloc col_12\">";
687 nhaye 807 echo "<fieldset class=\"cadre ui-corner-all ui-widget-content\">";
688     echo " <legend class=\"ui-corner-all ui-widget-content ui-state-active\">"
689     ._("Petitionnaire")."</legend>";
690     // Si des demandeurs sont liés à la demande
691 nhaye 828 require_once "../obj/petitionnaire.class.php";
692     require_once "../obj/delegataire.class.php";
693 nhaye 807
694 nhaye 842 // Affichage du bloc pétitionnaire principal / délégataire
695     // L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
696     echo "<div id=\"petitionnaire_principal_delegataire\">";
697     // Affichage de la synthèse
698     if (isset ($this->valIdDemandeur["petitionnaire_principal"]) AND
699     !empty($this->valIdDemandeur["petitionnaire_principal"])) {
700     $demandeur = new petitionnaire(
701     $this->valIdDemandeur["petitionnaire_principal"],
702     $this->f->db,false);
703     $demandeur -> afficherSynthese("petitionnaire_principal", $linkable);
704     $demandeur -> __destruct();
705 vpihour 1021 } elseif ( isset ($this->postedIdDemandeur["petitionnaire_principal"]) AND
706     !empty($this->postedIdDemandeur["petitionnaire_principal"]) ) {
707 nhaye 1020 $demandeur = new petitionnaire(
708     $this->postedIdDemandeur["petitionnaire_principal"],
709     $this->f->db,false);
710     $demandeur -> afficherSynthese("petitionnaire_principal", $linkable);
711     $demandeur -> __destruct();
712 nhaye 842 }
713     // Si en édition de formulaire
714     if($maj < 2 AND $this->correct != true) {
715     // Bouton d'ajout du pétitionnaire principal
716     // L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
717     echo "<input id=\"add_petitionnaire_principal\"
718     class=\"ui-button ui-widget ui-state-default ui-corner-all\"
719     type=\"button\" value=\""._("Saisir le petitionnaire principal")."\"/>";
720 fmichon 1005 // Bouton d'ajout du delegataire
721     // L'ID DU DIV ET DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
722     echo "<div id=\"delegataire\">";
723 nhaye 842 echo " <span class=\"om-icon om-icon-16 om-icon-fix arrow-right-16\">></span> ";
724 fmichon 1005
725     // Affichage de la synthèse
726     if (isset ($this->valIdDemandeur["delegataire"]) AND
727     !empty($this->valIdDemandeur["delegataire"])) {
728     $demandeur = new delegataire($this->valIdDemandeur["delegataire"],
729     $this->f->db,false);
730     $demandeur -> afficherSynthese("delegataire", $linkable);
731     $demandeur -> __destruct();
732 vpihour 1021 } elseif ( isset ($this->postedIdDemandeur["delegataire"]) AND
733     !empty($this->postedIdDemandeur["delegataire"]) ) {
734 nhaye 1020 $demandeur = new delegataire($this->postedIdDemandeur["delegataire"],
735     $this->f->db,false);
736     $demandeur -> afficherSynthese("delegataire", $linkable);
737     $demandeur -> __destruct();
738 fmichon 1005 }
739 nhaye 842 echo "<input id=\"add_delegataire\"
740     class=\"ui-button ui-widget ui-state-default ui-corner-all\"
741     type=\"button\" value=\""._("Saisir le delegataire")."\"/>";
742 fmichon 1005 echo "</div>";
743 nhaye 842 }
744     echo "</div>";
745     // Bloc des pétitionnaires secondaires
746     // L'ID DU DIV SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
747     echo "<div id=\"listePetitionnaires\">";
748 nhaye 828
749 nhaye 842 // Affichage de la synthèse
750     if (isset ($this->valIdDemandeur["petitionnaire"]) AND
751     !empty($this->valIdDemandeur["petitionnaire"])) {
752    
753     foreach ($this->valIdDemandeur["petitionnaire"] as $petitionnaire) {
754     $demandeur = new petitionnaire($petitionnaire,
755     $this->f->db,false);
756     $demandeur -> afficherSynthese("petitionnaire", $linkable);
757     $demandeur -> __destruct();
758     }
759    
760 vpihour 1021 } elseif ( isset ($this->postedIdDemandeur["petitionnaire"]) AND
761     !empty($this->postedIdDemandeur["petitionnaire"]) ) {
762 nhaye 1020 foreach ($this->postedIdDemandeur["petitionnaire"] as $petitionnaire) {
763     $demandeur = new petitionnaire($petitionnaire,
764     $this->f->db,false);
765     $demandeur -> afficherSynthese("petitionnaire", $linkable);
766     $demandeur -> __destruct();
767     }
768 nhaye 828 }
769 nhaye 842 if ($maj < 2 AND !$this->correct) {
770     // L'ID DE L'INPUT SUIVANT EST NECESSAIRE AU BON FONCTIONNEMENT DU JS
771     echo "<input id=\"add_petitionnaire\"
772     class=\"ui-button ui-widget ui-state-default ui-corner-all\"
773     type=\"button\" value=\""._("Ajouter un petitionnaire")."\"/>";
774     }
775     echo "</div>";
776 nhaye 807 echo "</fieldset>";
777     echo "</div>";
778     }
779    
780 vpihour 632 }// fin classe
781 fmichon 1005 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26