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

Contents of /trunk/obj/dossier.class.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 939 - (show annotations)
Fri Nov 30 13:53:11 2012 UTC (12 years, 2 months ago) by vpihour
File size: 54214 byte(s)
Mise à jour de tables concernant l'affectation automatique des instructeurs aux dossiers

1 <?php
2 //$Id$
3 //gen openMairie le 10/02/2011 20:39
4
5 require_once ("../gen/obj/dossier.class.php");
6 require_once("../services/outgoing/messageenqueuer.php");
7
8 class dossier extends dossier_gen {
9
10 var $maj;
11 var $sig;
12 var $servitude="";
13 var $auto_pos;
14 var $auto_servitude_surfacique;
15 var $auto_servitude_ligne;
16 var $auto_servitude_point;
17 var $auto_parcelle;
18 var $auto_parcelle_lot;
19 var $aff_depot = "collapsible";
20 var $aff_travaux = "collapsible";
21 var $aff_instruction = "collapsible";
22 var $aff_demandeur = "startClosed";
23 var $aff_delegataire = "startClosed";
24 var $aff_terrain = "startClosed";
25 var $aff_localisation = "collapsible";
26 var $aff_description = "startClosed";
27 var $aff_amenagement = "startClosed";
28
29 function dossier($id,&$db,$DEBUG) {
30 $this->constructeur($id,$db,$DEBUG);
31 } // fin constructeur
32
33 function setValFAjout($val = array()) {
34 $this->valF['dossier'] = $val['dossier_autorisation'].str_pad(rand(1, 99),2, "0", STR_PAD_LEFT);
35 }
36
37 function setvalF($val){
38 parent::setvalF($val);
39 // enlever les valeurs a ne pas saisir -> recherche en trigger ajouter et modifier
40 // $sig = 1
41 unset ($this->valF['geom']);
42 unset ($this->valF['geom1']);
43 // valeurs hiddenstatic (calcule)
44 if($this->maj==1){
45 // par defaut
46 unset ($this->valF['etat']);
47 unset ($this->valF['delai']);
48 unset ($this->valF['accord_tacite']);
49 unset ($this->valF['types']);
50 }
51 unset ($this->valF['avis_decision']); // avis + libelle avis
52 unset ($this->valF['terrain_surface_calcul']);
53 unset ($this->valF['shon_calcul']);
54 unset ($this->valF['parcelle_archive']);
55 unset ($this->valF['parcelle_lot_archive']);
56 unset ($this->valF['date_notification_delai']);
57 unset ($this->valF['date_decision']);
58 unset ($this->valF['date_limite']);
59 unset ($this->valF['date_validite']);
60 unset ($this->valF['date_chantier']);
61 unset ($this->valF['date_achevement']);
62 unset ($this->valF['date_conformite']);
63 }
64
65 function verifier($val,&$db,$DEBUG){
66 parent::verifier($val,$db,$DEBUG);
67 if($val['parcelle']!="" and $val['sig']!='Oui'){
68 if (!preg_match('/^[0-9]{3} [A-Z]{1,3} [0-9]{1,5}$/', $val['parcelle']) && !preg_match('/^[0-9]{3}[A-Z]{1,3}[0-9]{1,5}$/', $val['parcelle'])){
69 $this->correct=false;
70 $this->addToMessage("<br>format parcelle incorrect");
71 }
72 }
73 // regles travaux verification
74 if ($this->valF['travaux']!=""){
75 $sql= "select * from ".DB_PREFIXE."regle where id = '".$this->valF['travaux'].
76 "' and controle = 'travaux' order by ordre";
77 $res = $db->query($sql);
78 if (database :: isError($res)) die($res->getMessage().$sql);
79 $this->addToLog("requete ".$sql." execute <br>", EXTRA_VERBOSE_MODE);
80 $regle=0;
81 $msg="";
82 while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
83 if(isset($this->valF[$row['champ']]))
84 $champvaleur=$this->valF[$row['champ']];
85 else
86 $champvaleur=0;
87 switch ($row['operateur']) {
88 case ">" :
89 if($row['sens']=="plus"){
90 if($champvaleur > $row['valeur'])
91 $condition = 1;
92 else
93 $condition = 0;
94 if($regle==1 or $condition == 1)
95 $regle=1;
96 else
97 $regle=0;
98 $msg=$msg."<br> + ".$row['message']." [".$row['champ']." = ".
99 $champvaleur."]";
100 }else{
101 if($champvaleur > $row['valeur']){
102 $condition = 0;
103 }else{
104 $condition = 1;
105 $regle=0;
106 }
107 $msg=$msg."<br> ou ".$row['message']." [".$row['champ']." = ".
108 $champvaleur."]";
109 }
110 break;
111 case ">=":
112 if($row['sens']=="plus"){
113 if($champvaleur >= $row['valeur'])
114 $condition = 1;
115 else
116 $condition = 0;
117 if($regle==1 or $condition == 1)
118 $regle=1;
119 else
120 $regle=0;
121 $msg=$msg."<br> + ".$row['message']." [".$row['champ']." = ".
122 $champvaleur."]";
123 }else{
124 if($champvaleur >= $row['valeur']){
125 $condition = 0;
126
127 }else{
128 $condition = 1;
129 $regle=0;
130 }
131 $msg=$msg."<br> ou ".$row['message']." [".$row['champ']." = ".
132 $champvaleur."]";
133 }
134 break;
135 case "<" :
136 if($row['sens']=="plus"){
137 if($champvaleur < $row['valeur'])
138 $condition = 1;
139 else
140 $condition = 0;
141 if($regle==1 or $condition == 1)
142 $regle=1;
143 else
144 $regle=0;
145 $msg=$msg."<br> + ".$row['message']." [".$row['champ']." = ".
146 $champvaleur."]";
147 }else{
148 if($champvaleur < $row['valeur']){
149 $condition = 0;
150 }else{
151 $condition = 1;
152 $regle=0;
153 }
154 $msg=$msg."<br> et ".$row['message']." [".$row['champ']." = ".
155 $champvaleur."]";
156 }
157 break;
158 case "==":
159 if($row['sens']=="plus"){
160 if($champvaleur == $row['valeur'])
161 $condition = 1;
162 else
163 $condition = 0;
164 if($regle==1 or $condition == 1)
165 $regle=1;
166 else
167 $regle=0;
168 $msg=$msg."<br> + ".$row['message']." [".$row['champ']." = ".
169 $champvaleur."]";
170 }else{
171 if($champvaleur == $row['valeur']){
172 $condition = 0;
173
174 }else{
175 $condition = 1;
176 $regle=0;
177 }
178 $msg=$msg."<br> ou ".$row['message']." [".$row['champ']." = ".
179 $champvaleur."]";
180 }
181 break;
182 //break;
183 } // switch
184 if($regle==0)
185 $this->addToMessage($msg." <br>");
186 } // while
187 } // travaux
188 }//verifier
189
190
191 function setType(&$form,$maj) {
192 parent::setType($form,$maj);
193 if ($maj < 2) { //ajouter et modifier
194 // cache
195 if($maj==0) $form->setType('dossier', 'hidden');
196 $form->setType('annee', 'hidden');
197 $form->setType('nature', 'select');
198 $form->setType('parcelle_archive','hidden');
199 $form->setType('parcelle_lot_archive','hidden');
200 $form->setType('objet_dossier','hidden'); // PC
201 $form->setType('amenagement','hidden'); // PC
202 $form->setType('parcelle_lot','hidden'); // PC
203 $form->setType('parcelle_lot_lotissement','hidden'); // PC
204
205 $form->setType('geom1', 'hidden');
206 $form->setType('geom', 'geom');
207 $form->setType('servitude', 'hiddenstatic');
208
209 //select
210 $form->setType('terrain_numero_complement','select');
211
212 // combo
213 $form->setType('rivoli','comboD');
214 $form->setType('terrain_adresse','comboG');
215 $form->setType('architecte_nom','comboG');
216 $form->setType('architecte','comboD');
217
218
219 // hiddenstatic
220 if($maj==1) $form->setType('dossier', 'hiddenstatic');
221 $form->setType('etat','hiddenstatic');
222 $form->setType('avis_decision','hiddenstatic');
223 $form->setType('delai','hiddenstatic');
224 $form->setType('terrain_surface_calcul','hiddenstatic');
225 $form->setType('shon_calcul','hiddenstatic');
226
227 $form->setType('accord_tacite','hiddenstatic');
228 $form->setType('types', 'hiddenstatic'); // transfert modificatif
229
230
231 // hiddenstaticdate
232 $form->setType('date_notification_delai','hiddenstaticdate');
233 $form->setType('date_decision','hiddenstaticdate');
234 $form->setType('date_limite','hiddenstaticdate');
235 $form->setType('date_rejet','hiddenstaticdate');
236 $form->setType('date_complet','hiddenstaticdate');
237 $form->setType('date_limite','hiddenstaticdate');
238 $form->setType('date_validite','hiddenstaticdate');
239 $form->setType('date_chantier','hiddenstaticdate');
240 $form->setType('date_achevement','hiddenstaticdate');
241 $form->setType('date_conformite','hiddenstaticdate');
242
243 // checkbox
244 $form->setType('sig','checkbox');
245 $form->setType('delegataire','checkbox');
246
247 // mail
248 $form->setType('delegataire_email','mail');
249 $form->setType('demandeur_email','mail');
250
251 // zones temp et strategysig
252
253
254 // temp
255 if (file_exists ("../dyn/var.inc"))
256 include ("../dyn/var.inc");
257 if(!isset($auto_pos))
258 $auto_pos=0;
259 if($auto_pos==1)
260 $form->setType('pos','hiddenstatic');
261 else
262 $form->setType('pos','select');
263 $form->setType('temp1',$temp1_type);
264 $form->setType('temp2',$temp2_type);
265 $form->setType('temp3',$temp3_type);
266 $form->setType('temp4',$temp4_type);
267 $form->setType('temp5',$temp5_type);
268 $form->setType('a_qualifier', 'checkbox');
269 }
270 if ($maj == 1) {
271 //
272 if ($this->f->isAccredited("dossier_modifier_instructeur")) {
273 $form->setType('instructeur', 'select');
274 } else {
275 $form->setType('instructeur', 'selecthiddenstatic');
276 }
277 //
278 if($this->f->getParameter('afficher_division') === 'true') {
279 //
280 if ($this->f->isAccredited("dossier_modifier_division")) {
281 $form->setType('division', 'select');
282 } else {
283 $form->setType('division', 'selecthiddenstatic');
284 }
285 } else {
286 $form->setType('division', 'hidden');
287 }
288 }
289 if($maj == 3) {
290 $form->setType('annee', 'hidden');
291 $form->setType('nature', 'selectstatic');
292 $form->setType('temp1','hidden');
293 $form->setType('temp2','hidden');
294 $form->setType('temp3','hidden');
295 $form->setType('temp4','hidden');
296 $form->setType('temp5','hidden');
297 $form->setType('parcelle_archive','hidden');
298 $form->setType('parcelle_lot_archive','hidden');
299 $form->setType('geom1','hidden');
300 $form->setType('geom','hidden');
301 $form->setType('a_qualifier', 'checkboxstatic');
302 }
303 //
304 if(!$this->f->getParameter('afficher_division') === 'true') {
305 $form->setType('division', 'hidden');
306 }
307 $form->setType('dossier_autorisation', 'hiddenstatic');
308 //
309 if ($maj == 0) {
310 $form->setType('dossier_autorisation', 'select');
311 }
312 }
313
314 function setVal(&$form,$maj,$validation){
315 $this->maj=$maj;
316 if ($validation==0) {
317 if ($maj == 0){
318 //$dossier_cp = $this->f->collectivite["cp"];
319 //$dossier_ville = $this->f->collectivite["ville"];
320 //$form->setVal('nature', $this->nature);
321
322 $form->setVal('annee', date('y'));
323 $form->setVal('date_demande', date('Y-m-d'));
324 $form->setVal('date_depot', date('Y-m-d'));
325
326 //$form->setVal('demandeur_cp', $dossier_cp);
327 //$form->setVal('demandeur_ville', $dossier_ville);
328
329 //$form->setVal('delegataire_cp', $dossier_cp);
330 //$form->setVal('delegataire_ville', $dossier_ville);
331
332 //$form->setVal('terrain_cp', $dossier_cp);
333 //$form->setVal('terrain_ville', $dossier_ville);
334
335 $form->setVal('accord_tacite', 'Non');
336 $form->setVal('etat', 'initialiser');
337 $form->setVal('types', 'Initial');
338 }
339 }
340 }
341
342 function setSelect(&$form, $maj,&$db,$debug) {
343 parent::setSelect($form, $maj,$db,$debug);
344 //optimisation sur table importante parcelle -> pas d appel methode parent
345 if(file_exists ("../sql/".$db->phptype."/".$this->table.".form.inc.php"))
346 include ("../sql/".$db->phptype."/".$this->table.".form.inc.php");
347 if($maj<2){
348 // travaux
349 $contenu=array();
350 // prise en compte du solde en ajout
351 if($maj==0)
352 $sql_travaux = $sql_travaux.
353 " and solde = 'Non' order by libelle";
354 else
355 $sql_travaux = $sql_travaux.
356 " order by libelle";
357 $res = $db->query($sql_travaux);
358 if (database::isError($res)) die($res->getMessage()).$sql_travaux;
359 $this->addToLog(" la requete ".$sql_travaux." est executee", VERBOSE_MODE);
360 $contenu[0][0]="";
361 $contenu[1][0]=_('choisir')." "._('travaux');
362 $k=1;
363 while ($row=& $res->fetchRow()){
364 $contenu[0][$k]=$row[0];
365 $contenu[1][$k]=$row[1];
366 $k++;
367 }
368 $form->setSelect("travaux",$contenu);
369
370 // code et libelle voie
371 $contenu="";
372 $contenu[0][0]="rivoli";// table
373 $contenu[0][1]="rivoli"; // zone origine
374 $contenu[1][0]="libelle";
375 $contenu[1][1]="terrain_adresse";
376 $form->setSelect("rivoli",$contenu);
377 //terrain_adresse
378 $contenu="";
379 $contenu[0][0]="rivoli";// table
380 $contenu[0][1]="libelle"; // zone origine
381 $contenu[1][0]="rivoli";
382 $contenu[1][1]="rivoli";
383 $form->setSelect("terrain_adresse",$contenu);
384 // code et libelle architecte
385 $contenu="";
386 $contenu[0][0]="architecte";// table
387 $contenu[0][1]="architecte"; // zone origine
388 $contenu[1][0]="nom";
389 $contenu[1][1]="architecte_nom";
390 $form->setSelect("architecte",$contenu);
391 $contenu="";
392 $contenu[0][0]="architecte";// table
393 $contenu[0][1]="nom"; // zone origine
394 $contenu[1][0]="architecte";
395 $contenu[1][1]="architecte";
396 $form->setSelect("architecte_nom",$contenu);
397 // parcelle_lot
398 $contenu="";
399 $contenu[0][0]="parcelle_lot";// table
400 $contenu[0][1]="parcelle_lot"; // zone origine
401 $contenu[1][0]="lotissement";
402 $contenu[1][1]="parcelle_lot_lotissement";
403 $form->setSelect("parcelle_lot",$contenu);
404 $contenu="";
405 $contenu[0][0]="parcelle_lot";// table
406 $contenu[0][1]="lotissement"; // zone origine
407 $contenu[1][0]="parcelle_lot";
408 $contenu[1][1]="parcelle_lot";
409 $form->setSelect("parcelle_lot_lotissement",$contenu);
410 // accord tacite
411 $contenu=array();
412 $contenu[0]=array('Non','Oui');
413 $contenu[1]=array('Non','Oui');
414 $form->setSelect("accord_tacite",$contenu);
415 // terrain_numero_complement
416 $contenu=array();
417 $contenu[0]=array('','bis','ter','quater');
418 $contenu[1]=array('','bis','ter','quater');
419 $form->setSelect("terrain_numero_complement",$contenu);
420 // geom *** a voir
421 if($maj==1){ //modification
422 $contenu=array();
423 $contenu[0]=array("dossier",$this->getParameter("idx"));
424 $form->setSelect('geom',$contenu);
425 }
426
427 /*
428 * Affichage de données dans le select de la parcelle
429 * */
430 $contenu=array();
431 $sql="select parcelle from ".DB_PREFIXE."parcelle ";
432 $res = $db->query($sql);
433 if (database::isError($res))
434 die($res->getMessage());
435 $contenu[0][0]="";
436 $contenu[1][0]=_("choisir parcelle");
437 $k=1;
438 while ($row=& $res->fetchRow()){
439 $contenu[0][$k]=$row[0];
440 $contenu[1][$k]=$row[0];
441 $k++;
442 }
443 $form->setSelect("parcelle",$contenu);
444
445 }
446 if($this->f->getParameter('afficher_division')==='true') {
447 // instructeur
448 $this->init_select($form, $db, $maj, $debug, "instructeur",
449 $sql_instructeur_div, $sql_instructeur_div_by_id, false);
450 }
451 }
452
453 function setLib(&$form,$maj) {
454 parent::setLib($form,$maj);
455 $form->setLib('geom','');
456 }
457
458 function setGroupe(&$form,$maj){
459 //If ($maj==0){
460 // $form->setGroupe('date_demande','D');
461 // $form->setGroupe('date_depot','G');
462 // $form->setGroupe('division','F');
463 //}else{
464 // $form->setGroupe('dossier','D');
465 // $form->setGroupe('nature','G');
466 // $form->setGroupe('annee','G');
467 // $form->setGroupe('date_demande','G');
468 // $form->setGroupe('date_depot','G');
469 // $form->setGroupe('division','F');
470 //}
471 $form->setGroupe('demandeur_categorie','D');
472 $form->setGroupe('demandeur_civilite','G');
473 $form->setGroupe('demandeur_nom','F');
474
475 $form->setGroupe('demandeur_societe','D');
476 $form->setGroupe('demandeur_adresse','G');
477 $form->setGroupe('demandeur_adresse_complement','F');
478
479 $form->setGroupe('demandeur_cp','D');
480 $form->setGroupe('demandeur_ville','G');
481 $form->setGroupe('demandeur_pays','F');
482
483 $form->setGroupe('demandeur_email','D');
484 $form->setGroupe('demandeur_telephone','F');
485
486 $form->setGroupe('delegataire','D');
487 $form->setGroupe('delegataire_civilite','G');
488 $form->setGroupe('delegataire_nom','F');
489
490 $form->setGroupe('delegataire_societe','D');
491 $form->setGroupe('delegataire_adresse','G');
492 $form->setGroupe('delegataire_adresse_complement','F');
493 $form->setGroupe('delegataire_cp','D');
494 $form->setGroupe('delegataire_ville','G');
495 $form->setGroupe('delegataire_pays','F');
496
497 $form->setGroupe('delegataire_email','D');
498 $form->setGroupe('delegataire_telephone','F');
499
500 $form->setGroupe('architecte','D');
501 $form->setGroupe('architecte_nom','F');
502 //$form->setGroupe('saisie_architecte','F');
503
504 $form->setGroupe('travaux','D');
505 $form->setGroupe('travaux_complement','F');
506
507 // terrain
508 $form->setGroupe('terrain_numero','D');
509 $form->setGroupe('terrain_numero_complement','G');
510 $form->setGroupe('rivoli','F');
511 $form->setGroupe('terrain_adresse','D');
512 $form->setGroupe('terrain_adresse_complement','F');
513
514 $form->setGroupe('terrain_cp','D');
515 $form->setGroupe('terrain_ville','F');
516
517 // surface
518 $form->setGroupe('terrain_surface','D');
519 $form->setGroupe('terrain_surface_calcul','F');
520
521 // instruction
522 $form->setGroupe('date_complet','D');
523 $form->setGroupe('date_rejet','G');
524 $form->setGroupe('rejet','G');
525 $form->setGroupe('delai','F');
526
527 $form->setGroupe('date_limite','D');
528 $form->setGroupe('date_notification_delai','G');
529 $form->setGroupe('accord_tacite','G');
530 $form->setGroupe('etat','F');
531
532 $form->setGroupe('date_decision','D');
533 $form->setGroupe('avis_decision','G');
534 $form->setGroupe('date_validite','G');
535 $form->setGroupe('types','F');
536
537 $form->setGroupe('date_chantier','D');
538 $form->setGroupe('date_achevement','G');
539 $form->setGroupe('date_conformite','F');
540
541 // localisation
542 $form->setGroupe('parcelle','D');
543 $form->setGroupe('pos','G');
544 if($maj==1){
545 $form->setGroupe('sig','G');
546 $form->setGroupe('geom','F');
547 }else {
548 $form->setGroupe('sig','F');
549 }
550 if($maj==1){
551 $form->setGroupe('sig','G');
552 $form->setGroupe('geom','F');
553 }
554
555 // description
556 $form->setGroupe('batiment_nombre','D');
557 $form->setGroupe('logement_nombre','G');
558 $form->setGroupe('hauteur','G');
559 $form->setGroupe('piece_nombre','F');
560
561 $form->setGroupe('shon','D');
562 $form->setGroupe('shon_calcul','G');
563 $form->setGroupe('shob','G');
564 $form->setGroupe('lot','F');
565
566 $form->setGroupe('amenagement','D');
567 $form->setGroupe('parcelle_lot','G');
568 $form->setGroupe('parcelle_lot_lotissement','F');
569 }
570
571 function setOnchange(&$form,$maj){
572 parent::setOnchange($form,$maj);
573 // mise en majuscule
574 $form->setOnchange("demandeur_nom","this.value=this.value.toUpperCase()");
575 $form->setOnchange("demandeur_societe","this.value=this.value.toUpperCase()");
576 $form->setOnchange("delegataire_nom","this.value=this.value.toUpperCase()");
577 $form->setOnchange("delegataire_societe","this.value=this.value.toUpperCase()");
578 $form->setOnchange("architecte_nom","this.value=this.value.toUpperCase()");
579 $form->setOnchange("terrain_adresse","this.value=this.value.toUpperCase()");
580 $form->setOnchange('shon','VerifNumdec(this)');
581 $form->setOnchange('shob','VerifNumdec(this)');
582 $form->setOnchange('hauteur','VerifNumdec(this)');
583 $form->setOnchange('terrain_surface','VerifNumdec(this)');
584 }
585
586 function setLayout(&$form, $maj) {
587 //
588 $form->setBloc('dossier', 'D', '', ($maj == 3 ? 'col_9':'col_12'));
589 $form->setBloc('dossier', 'D', '', 'col_9');
590 $form->setFieldset('dossier', 'D', _("Dossier d'instruction"));
591 $form->setFieldset('autorite_competente', 'F');
592 $form->setBloc('autorite_competente', 'F');
593 $form->setBloc('date_demande', 'D', '', 'col_3');
594 $form->setFieldset('date_demande', 'D', _("Depot"));
595 $form->setFieldset('date_depot', 'F');
596 $form->setFieldset('enjeu_urba', 'D', _("Enjeu"));
597 $form->setFieldset('enjeu_erp', 'F');
598 $form->setBloc('enjeu_erp', 'F');
599 $form->setBloc('enjeu_erp', 'F');
600 //
601 $form->setBloc('objet_dossier', 'D', '', 'col_12');
602 //
603 $form->setFieldset('date_complet', 'D', _('Instruction'), 'col_12');
604 $form->setRegroupe('date_conformite','F','');
605 //
606 $form->setBloc('terrain_superficie', 'F');
607
608 }
609
610 function setRegroupe(&$form,$maj) {
611 //// depot
612 //If ($maj==0){
613 // $form->setRegroupe('date_demande','D',_("Depot"),$this->aff_depot );
614 //}
615 //If ($maj==1){
616 // $form->setRegroupe('dossier','D',_("Depot"), $this->aff_depot);
617 // $form->setRegroupe('date_demande','G','');
618 //}
619 //$form->setRegroupe('date_depot','G','');
620 //$form->setRegroupe('division','F','');
621
622 // travaux
623 $form->setRegroupe('architecte','D',_('Architecte')." / "._("Travaux"), $this->aff_travaux);
624 $form->setRegroupe('architecte_nom','G','');
625 $form->setRegroupe('travaux','G','');
626 $form->setRegroupe('travaux_complement','F','');
627
628 //// instruction
629 //$form->setRegroupe('date_complet','D',_('Instruction'), $this->aff_instruction);
630 //$form->setRegroupe('date_rejet','G','');
631 //$form->setRegroupe('date_notification_delai','G','');
632 //$form->setRegroupe('delai','G','');
633 //$form->setRegroupe('date_limite','G','Decision ');
634 //$form->setRegroupe('accord_tacite','G','');
635 //$form->setRegroupe('etat','G','');
636 //$form->setRegroupe('date_decision','G','');
637 //$form->setRegroupe('avis_decision','G','');
638 //$form->setRegroupe('date_validite','G','');
639 //$form->setRegroupe('types','G','');
640 //$form->setRegroupe('date_chantier','G','');
641 //$form->setRegroupe('date_achevement','G','');
642 //$form->setRegroupe('date_conformite','F','');
643
644 // demandeur
645 $form->setRegroupe('demandeur_categorie','D',_('Demandeur'), $this->aff_demandeur);
646 $form->setRegroupe('demandeur_civilite','G','');
647 $form->setRegroupe('demandeur_nom','G','');
648 $form->setRegroupe('demandeur_societe','G','');
649 $form->setRegroupe('demandeur_adresse','G','Decision ');
650 $form->setRegroupe('demandeur_cp','G','');
651 $form->setRegroupe('demandeur_ville','G','');
652 $form->setRegroupe('demandeur_pays','G','');
653 $form->setRegroupe('demandeur_email','G','');
654 $form->setRegroupe('demandeur_telephone','F','');
655
656
657 // delegataire
658 $form->setRegroupe('delegataire','D',_('delegataire'), $this->aff_delegataire);
659 $form->setRegroupe('delegataire_civilite','G','');
660 $form->setRegroupe('delegataire_nom','G','');
661 $form->setRegroupe('delegataire_societe','G','');
662 $form->setRegroupe('delegataire_adresse','G','Decision ');
663 $form->setRegroupe('delegataire_cp','G','');
664 $form->setRegroupe('delegataire_ville','G','');
665 $form->setRegroupe('delegataire_pays','G','');
666 $form->setRegroupe('delegataire_email','G','');
667 $form->setRegroupe('delegataire_telephone','F','');
668
669 // terrain
670 $form->setRegroupe('terrain_numero','D',_('terrain'), $this->aff_terrain);
671 $form->setRegroupe('terrain_numero_complement','G','');
672 $form->setRegroupe('rivoli','G','');
673 $form->setRegroupe('terrain_adresse','G','');
674 $form->setRegroupe('terrain_adresse_complement','G','');
675 $form->setRegroupe('terrain_cp','G','');
676 $form->setRegroupe('terrain_ville','G','');
677 $form->setRegroupe('terrain_surface','G',_('surface'),'');// $this->aff_surface);
678 $form->setRegroupe('terrain_surface_calcul','F','');
679
680 // localisation
681 $form->setRegroupe('parcelle','D',_('localisation'), $this->aff_localisation);
682 $form->setRegroupe('pos','G','');
683 $form->setRegroupe('sig','F','');
684 if($maj==1){
685 $form->setRegroupe('sig','G','');
686 $form->setRegroupe('geom','F','');
687 }
688
689 // description
690 $form->setRegroupe('batiment_nombre','D',_('statistique'), $this->aff_description);
691 $form->setRegroupe('logement_nombre','G','');
692 $form->setRegroupe('hauteur','G','');
693 $form->setRegroupe('piece_nombre','G','');
694 $form->setRegroupe('shon','G','');
695 $form->setRegroupe('shon_calcul','G','');
696 $form->setRegroupe('shob','G','');
697 $form->setRegroupe('lot','F','');
698
699 $form->setRegroupe('description','D',_('description').' '._('servitude'), $this->aff_amenagement);
700 $form->setRegroupe('servitude','F','');
701
702 // amenagement
703 $form->setRegroupe('amenagement','D',_('Amenagement'), $this->aff_amenagement);
704 $form->setRegroupe('parcelle_lot','G','');
705 $form->setRegroupe('parcelle_lot_lotissement','F','');
706
707 }
708
709
710
711 /* =============================================================
712 * fonction trigger relative a la connexion SIG
713 * $sig = 1 dans dyn/var.inc
714 * utilisé aussi pour envoyer une message au service REST d'ERP
715 * ===============================================================
716 */
717
718 function triggerajouterapres($id,&$db,$val,$DEBUG) {
719 $this->sig_parametre($db);
720 $id=$this->valF['dossier']; // id n est pas valorise en ajout
721 if($this->sig==1 and $val['sig']!='Oui'){
722 if($val['parcelle']!=''or $val['parcelle_lot']!=''){
723
724 $this->sig_interne($id,$db,$val,$DEBUG);
725 }
726 else
727 $this->addToMessage("<br>"._("Parcelle non renseignee dans dossier")." ".$id." <br>");
728
729 }
730
731 // envoi du message a ERP en cas d'un depot du dossier dat
732 if ($this->valF['nature'] ==
733 $this->f->getParameter('erp_depot_dossier_dat')) {
734 $msgenque = new MessageEnqueuer();
735 $msgenque->setDossierInstructionIdentifier($this->valF['dossier']);
736 $msgenque->enqueueMessage($msgenque::$ERP_DEPOT_DOSSIER_DAT);
737 }
738
739 // envoi du message a ERP en cas d'une demande d'ouverture DAT
740 if ($this->valF['nature'] ==
741 $this->f->getParameter('erp_demande_ouverture_dat')) {
742 $msgenque = new MessageEnqueuer();
743 $msgenque->setDossierInstructionIdentifier($this->valF['dossier']);
744 $msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_OUVERTURE_DAT);
745 }
746
747 if ($this->valF['erp'] === true) {
748 // envoi du message a ERP en cas d'annulation d'une demande
749 if ($this->valF['nature'] ==
750 $this->f->getParameter('erp_annulation_demande')) {
751 $msgenque = new MessageEnqueuer();
752 $msgenque->setDossierInstructionIdentifier($this->valF['dossier']);
753 $msgenque->enqueueMessage($msgenque::$ERP_ANNULATION_DEMANDE);
754 }
755
756 // envoi du message a ERP en cas d'ouverture d'un dossier PC "rattache"
757 // au dossier DAACT
758 if ($this->valF['nature'] ==
759 $this->f->getParameter('erp_demande_ouverture_pc_daact')) {
760 $msgenque = new MessageEnqueuer();
761 $msgenque->setDossierInstructionIdentifier($this->valF['dossier']);
762 $msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_OUVERTURE_PC);
763 }
764 }
765
766 }
767
768 /*
769 * Calcul l'identifiant du quartier et d'un arrondissement d'une parcelle
770 * */
771 function getQuartierArrondissement($parcelle) {
772
773 $parcelle = trim($parcelle);
774 $quartier = '';
775
776 /*Récupère le code impot du quartier dans la parcelle*/
777 for ( $i = 0 ; $i < strlen($parcelle) ; $i++ ){
778
779 if (is_numeric($parcelle[$i]) ){
780
781 $quartier .= $parcelle[$i];
782 }
783 else{
784
785 break;
786 }
787 }
788
789 if ( $quartier !== '' ){
790
791 /*identifiant*/
792 $sql = "SELECT
793 quartier, arrondissement
794 FROM
795 ".DB_PREFIXE."quartier
796 WHERE
797 code_impots='$quartier'";
798
799 $this->addToLog("getQuartierArrondissement(parcelle) : db->query(\"$sql\")", VERBOSE_MODE);
800 $res = $this->db->query($sql);
801 if (database :: isError($res))
802 die($res->getMessage()."erreur ".$sql);
803
804 if ( $res->numRows() > 0 ){
805
806 return $res->fetchRow(DB_FETCHMODE_ASSOC);
807 }
808 }
809
810 return NULL;
811 }
812
813 /*
814 * Retourne la section d'une parcelle
815 * */
816 function getSection($parcelle){
817
818 $parcelle = trim($parcelle);
819 $section = NULL;
820
821 for ( $i = 0 ; $i < strlen($parcelle) ; $i++ )
822 if ( !is_numeric($parcelle[$i]) && is_string($parcelle[$i]) && $parcelle[$i] !== ' ' )
823 $section .= $parcelle[$i];
824
825 return $section;
826 }
827
828 /*
829 * Retourne l'intructeur correspondant le mieux à la parcelle
830 * */
831 function getInstructeurDivision( $quartier, $arrondissement, $section, $dossier_autorisation) {
832
833 $quartier = ( $quartier == NULL ) ? -1 : $quartier;
834 $arrondissement = ( $arrondissement == NULL ) ? -1 : $arrondissement;
835
836 /*Récupération du dossier_autorisation_type_detaille concerné par le $dossier_autorisation*/
837 $sql = "
838 SELECT
839 dossier_autorisation_type_detaille
840 FROM
841 ".DB_PREFIXE."dossier_autorisation
842 WHERE
843 dossier_autorisation = '$dossier_autorisation'";
844
845 $this->addToLog("getInstructeurDivision : db->query(\"$sql\")", VERBOSE_MODE);
846 $resDATD = $this->db->query($sql);
847 if (database :: isError($resDATD))
848 die($resDATD->getMessage()."erreur ".$sql);
849
850 if ( $resDATD->numRows() > 0 ){
851 $rowDATD = $resDATD->fetchRow(DB_FETCHMODE_ASSOC);
852
853 $sql = "
854 SELECT
855 instructeur, section, quartier, arrondissement, dossier_autorisation_type_detaille
856 FROM
857 ".DB_PREFIXE."affectation_automatique l
858 WHERE
859 ( dossier_autorisation_type_detaille IS NULL AND arrondissement IS NULL AND quartier IS NULL AND section IS NULL ) OR
860 ( dossier_autorisation_type_detaille IS NULL AND arrondissement IS NULL AND quartier IS NULL AND section = '$section' ) OR
861 ( dossier_autorisation_type_detaille IS NULL AND arrondissement IS NULL AND quartier = $quartier AND section IS NULL ) OR
862 ( dossier_autorisation_type_detaille IS NULL AND arrondissement IS NULL AND quartier = $quartier AND section = '$section' ) OR
863 ( dossier_autorisation_type_detaille IS NULL AND arrondissement = $arrondissement AND quartier IS NULL AND section IS NULL ) OR
864 ( dossier_autorisation_type_detaille IS NULL AND arrondissement = $arrondissement AND quartier IS NULL AND section = '$section' ) OR
865 ( dossier_autorisation_type_detaille IS NULL AND arrondissement = $arrondissement AND quartier = $quartier AND section IS NULL ) OR
866 ( dossier_autorisation_type_detaille IS NULL AND arrondissement = $arrondissement AND quartier = $quartier AND section = '$section' ) OR
867 ( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement IS NULL AND quartier IS NULL AND section IS NULL ) OR
868 ( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement IS NULL AND quartier IS NULL AND section = '$section' ) OR
869 ( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement IS NULL AND quartier = $quartier AND section IS NULL ) OR
870 ( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement IS NULL AND quartier = $quartier AND section = '$section' ) OR
871 ( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement = $arrondissement AND quartier IS NULL AND section IS NULL ) OR
872 ( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement = $arrondissement AND quartier IS NULL AND section = '$section' ) OR
873 ( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement = $arrondissement AND quartier = $quartier AND section IS NULL ) OR
874 ( dossier_autorisation_type_detaille = ".$rowDATD['dossier_autorisation_type_detaille']." AND arrondissement = $arrondissement AND quartier = $quartier AND section = '$section' )
875 ORDER BY section, quartier, arrondissement, dossier_autorisation_type_detaille
876 LIMIT 1
877 ";
878
879 $this->addToLog("getInstructeurDivision : db->query(\"$sql\")", VERBOSE_MODE);
880 $res = $this->db->query($sql);
881 if (database :: isError($res))
882 die($res->getMessage()."erreur ".$sql);
883
884 if ( $res->numRows() > 0 ){
885
886 $row = $res->fetchRow(DB_FETCHMODE_ASSOC);
887
888 $sql = "SELECT division FROM ".DB_PREFIXE."instructeur WHERE instructeur = ".$row['instructeur'];
889 $res = $this->db->query($sql);
890 if (database :: isError($res))
891 die($res->getMessage()."erreur ".$sql);
892
893 if ( $res->numRows() > 0 ){
894
895 $rowT=& $res->fetchRow(DB_FETCHMODE_ASSOC);
896 $row['division'] = $rowT['division'];
897 }
898
899 return $row;
900 }
901 }
902
903 return NULL;
904 }
905
906 /* =============================================================
907 * fonction trigger relative a la connexion SIG
908 * $sig = 1 dans dyn/var.inc
909 * ===============================================================
910 */
911
912 function triggerajouter($id,&$db,$val,$DEBUG) {
913 //
914 $this->addToLog("triggerajouter() : start", EXTRA_VERBOSE_MODE);
915
916 // Initialisation des variables nécessaires à l'affectation automatique
917 $quartier = NULL;
918 $arrondissement = NULL;
919 $section = NULL;
920 $instructeur = NULL;
921
922 // Si la parcelle n'est pas vide alors on récupère la section, le
923 // quartier et l'arrondissement
924 if ($val['parcelle'] != '') {
925 // Cette méthode récupère l'arrondissement et le quartier associé à une parcelle
926 $quartierArrondissement = $this->getQuartierArrondissement($val['parcelle']);
927 if ( $quartierArrondissement!= NULL ){
928
929 $quartier = $quartierArrondissement['quartier'];
930 $arrondissement = $quartierArrondissement['arrondissement'];
931 }
932 // Si il n'y a pas d'arrondissement alors on vide le quartier
933 if ( strcmp($arrondissement,'') == 0 ) {
934
935 $arrondissement = NULL;
936 $quartier = NULL;
937 }
938 // On récupère la section
939 $section = $this->getSection($val['parcelle']);
940 }
941
942 // Si aucun instructeur n'est saisi et que la dossier_autorisation_type_detaille n'est pas vide
943 // alors on récupère l'instructeur et la division depuis l'affectation
944 if ( ( empty($this->valF['instructeur']) || $this->valF['instructeur'] == '' ) && $val['dossier_autorisation'] != '' ) {
945
946 //
947 $instructeurDivision = $this->getInstructeurDivision($quartier, $arrondissement, $section, $val['dossier_autorisation']);
948 if ( $instructeurDivision != NULL ){
949
950 $instructeur = $instructeurDivision['instructeur'];
951 $division = $instructeurDivision['division'];
952 }
953
954 if ( $instructeur != NULL ){
955
956 $this->valF['instructeur'] = $instructeur;
957 $this->valF['division'] = $division;
958 } else {
959 if ($this->f->isAccredited("dossier_modifier_instructeur")) {
960 $this->addToMessage("<br/> "._("Pensez a assigner un instructeur a ce dossier.")." <br/>");
961 } else {
962 $this->addToMessage("<br/> "._("Aucun instructeur compatible avec ce dossier trouve, contactez votre administrateur afin d'en assigner un a ce dossier.")." <br/>");
963 }
964 }
965 } else {
966 $this->addToMessage("<br/> "._("Aucun instructeur compatible avec ce dossier trouve, contactez votre administrateur afin d'en assigner un a ce dossier.")." <br/>");
967 }
968 //
969 $this->addToLog("triggerajouter() : end", EXTRA_VERBOSE_MODE);
970 }
971
972 function triggermodifierapres($id,&$db,$val,$DEBUG) {
973 $this->sig_parametre($db);
974 // si la parcelle est changée
975 if(($this->sig==1 and $val['sig']!='Oui' and ($val['parcelle']!=$val['parcelle_archive'])
976 or $val['parcelle_lot']!=$val['parcelle_lot_archive'])){ // parcelle_lot_archive
977 if($val['parcelle']!='' or $val['parcelle_lot']!='')
978 $this->sig_interne($this->valF['dossier'],$db,$val,$DEBUG);
979 else{
980 if($this->maj ==1){ // en maj mettre a null la geometrie si parcelle changée inexistante
981 $sql ="update ".DB_PREFIXE."dossier set geom = null, servitude = '', pos= '' where dossier ='".$id."'";
982 $res = $db -> query($sql);
983 $this->addToLog("requete trigger modifier parcelle vide -> maj pos et servitude :".$sql, VERBOSE_MODE);
984 if (database :: isError($res))
985 die($res->getMessage()."erreur ".$sql);
986 }
987 $this->addToMessage("<br>"._("Parcelle ou parcelle_lot non renseignee dans dossier")." ".$id." <br>");
988 }
989 }
990
991 // BOGUE: le test pour la nature doit etre change parce que
992 // 'erp_depot_dossier_dat' n'a pas la connexion directe avec
993 // qualification d'un dossier, mais c'est necessaire pour les tests
994 if ($this->val[array_search('a_qualifier', $this->champs)] == 't'
995 && $this->valF['a_qualifier'] === false) {
996
997 $dossier_nature_dat = array(
998 $this->f->getParameter('erp_depot_dossier_dat'),
999 $this->f->getParameter('erp_demande_ouverture_dat'));
1000
1001 // envoi du message "ERP Qualifie" pour un dossier DAT qui a besoin
1002 // de la qualification URBA
1003 if (in_array($this->valF['nature'], $dossier_nature_dat)) {
1004 $msgenque = new MessageEnqueuer();
1005 $msgenque->setDossierInstructionIdentifier($this->valF['dossier']);
1006 $msgenque->setCompetence($this->valF['autorite_competente']);
1007 $msgenque->setContraintePlu($this->valF['servitude']);
1008 $msgenque->setReferenceCadastrale(
1009 $this->getReferenceCadastrale($this->valF['dossier']));
1010 $msgenque->enqueueMessage($msgenque::$ERP_QUALIFIE);
1011 }
1012
1013 // envoi des messages a ERP en cas du dossier PC traite par URBA, et
1014 // qui etait classifie come ERP
1015 if ($this->valF['nature'] == 'PC' && $this->valF['erp'] == true) {
1016 $msgenque = new MessageEnqueuer();
1017 $msgenque->setDossierInstructionIdentifier($this->valF['dossier']);
1018 $msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_COMPLETUDE_PC);
1019 $msgenque->enqueueMessage($msgenque::$ERP_DEMANDE_QUALIFICATION_PC);
1020 }
1021
1022 }
1023
1024 }
1025
1026
1027 /**
1028 * Retourne la reference cadastrale de la demande attache a un dossier ERP
1029 * specifique
1030 * @param string $dossier L'identifiant du dossier
1031 * @return string|null La reference cadastrale si elle est trouve,
1032 * sinon NULL. En cas d'erreur de la BD, l'execution s'arrete.
1033 */
1034 function getReferenceCadastrale($dossier) {
1035 $sql = "SELECT terrain_references_cadastrales FROM ".DB_PREFIXE."demande WHERE dossier_instruction = '" . $dossier . "'";
1036 $res = $this->db->limitquery($sql, 0, 1);
1037 $this->addToLog("getReferenceCadastrale(): db->limitquery(\"".
1038 str_replace(",",", ",$sql)."\", 0, 1);", VERBOSE_MODE);
1039 // Si une erreur survient on die
1040 if (database::isError($res, true)) {
1041 // Appel de la methode de recuperation des erreurs
1042 $this->erreur_db($res->getDebugInfo(), $res->getMessage(), 'demande');
1043 }
1044 // retourne la nature du dossier
1045 while ($row =& $res->fetchRow()) {
1046 return $row[0];
1047 }
1048 // la nature n'etait pas trouve, ce qui ne devrait pas se passer
1049 return NULL;
1050 }
1051
1052
1053 function sig_parametre(&$db){
1054 if (file_exists ("../dyn/var.inc"))
1055 include ("../dyn/var.inc");
1056 if(!isset($sig))
1057 $this->sig=0;
1058 else
1059 $this->sig=1;
1060 if(!isset($auto_pos))
1061 $this->auto_pos=0;
1062 else
1063 $this->auto_pos=$auto_pos;
1064 if(!isset($auto_servitude_surfacique))
1065 $this->auto_servitude_surfacique=0;
1066 else
1067 $this->auto_servitude_surfacique=$auto_servitude_surfacique;
1068 if(!isset($auto_servitude_ligne))
1069 $this->auto_servitude_ligne=0;
1070 else
1071 $this->auto_servitude_ligne=$auto_servitude_ligne;
1072 if(!isset($auto_servitude_point))
1073 $this->auto_servitude_point=0;
1074 else
1075 $this->auto_servitude_point=$auto_servitude_point;
1076 if(!isset($auto_parcelle))
1077 $this->auto_parcelle=0;
1078 else
1079 $this->auto_parcelle=$auto_parcelle;
1080 if(!isset($auto_parcelle_lot))
1081 $this->auto_parcelle_lot=0;
1082 else
1083 $this->auto_parcelle_lot=$auto_parcelle_lot;
1084 $this->addToLog("trigger valeur sig :".$this->sig, VERBOSE_MODE);
1085 $this->addToLog("trigger valeur auto_pos :". $this->auto_pos, VERBOSE_MODE);
1086 $this->addToLog("trigger valeur auto_servitude_surfacique :".$this->auto_servitude_surfacique, VERBOSE_MODE);
1087 $this->addToLog("trigger valeur auto_servitude_ligne :". $this->auto_servitude_ligne, VERBOSE_MODE);
1088 $this->addToLog("trigger valeur auto_servitude_point :".$this->auto_servitude_point, VERBOSE_MODE);
1089 $this->addToLog("trigger valeur auto_parcelle :". $this->auto_parcelle, VERBOSE_MODE);
1090 $this->addToLog("trigger valeur auto_parcelle_lot :".$this->auto_parcelle_lot, VERBOSE_MODE);
1091 }
1092
1093
1094 function sig_interne($id,&$db,$val,$DEBUG){
1095 // Strategy interne dans var.inc
1096 // si la parcelle existe, il est cree un point au milieu de la parcelle
1097 // de maniere automatique
1098 $geom='';
1099 $parcelle=$val["parcelle"];
1100 $projection = $db -> getOne("select srid from geometry_columns where f_table_name='dossier'");
1101 if($this->auto_parcelle==1 and $val["parcelle"]!=''){
1102 $sql= "select astext(centroid(geom)) from ".DB_PREFIXE."parcelle where parcelle ='".$val["parcelle"]."'";
1103 $this->addToLog("recherche centroid parcelle :".$sql, VERBOSE_MODE);
1104 $geom = $db -> getOne($sql);
1105 if (database :: isError($geom))die($res->getMessage()."erreur ".$sql);
1106 }
1107 if($geom=='' and $this->auto_parcelle_lot==1 and $val["parcelle_lot"]!=''){ // lot
1108 $sql= "select astext(centroid(geom)) from ".DB_PREFIXE."parcelle_lot where parcelle_lot ='".$val["parcelle_lot"]."'";
1109 $this->addToLog("recherche centroid parcelle lot :".$sql, VERBOSE_MODE);
1110 $geom = $db -> getOne($sql);
1111 if (database :: isError($geom))die($res->getMessage()."erreur ".$sql);
1112 $parcelle=$val["parcelle_lot"]." ".$val["parcelle_lot_lotissement"];
1113 }
1114 if($geom!=''){ // la parcelle est exitante dans la table ou vue parcelle
1115 $sql ="update ".DB_PREFIXE."dossier set geom =geometryfromtext('".$geom."', ".$projection." ) where dossier ='".$id."'";
1116 $this->addToLog("sig_interne maj geom :".$sql, VERBOSE_MODE);
1117 $res = $db -> query($sql);
1118 if (database :: isError($res)) die($res->getMessage()."erreur ".$sql);
1119 $this->addToMessage(""._("centroid de parcelle calcule")." ".$parcelle." ");
1120 if($this->auto_pos==1) // recherche du pos
1121 $this->calcul_auto_pos($id,$db,$geom,$projection);
1122 if($this->auto_servitude_surfacique==1) // recherche de servitude surfacique
1123 $this->calcul_auto_servitude_surfacique($id,$db,$geom,$projection);
1124 if($this->auto_servitude_ligne==1) // recherche de servitude ligne
1125 $this->calcul_auto_servitude_ligne($id,$db,$geom,$projection);
1126 if($this->auto_servitude_point==1) // recherche de servitude point
1127 $this->calcul_auto_servitude_point($id,$db,$geom,$projection);
1128 $temp=strtr($this->servitude,"'"," "); // enleve le '
1129 $sql1 ="update ".DB_PREFIXE."dossier set servitude = '".$temp."' where dossier = '".$id."'";
1130 $res1 = $db -> query($sql1);
1131 $this->addToLog("maj servitudes :".$sql1, VERBOSE_MODE);
1132 if (database:: isError($res1)) die($res1->getMessage()."erreur ".$sql1);
1133 }else{ // parcelle inexistante //***
1134 if($this->maj ==1){ // en maj mettre a null la geometrie si parcelle changée inexistante
1135 $sql ="update ".DB_PREFIXE."dossier set geom = null, servitude = '', pos= '' where dossier ='".$id."'";
1136 $res = $db -> query($sql);
1137 $this->addToLog("requete sig_interne maj parcelle inexistante :".$sql, VERBOSE_MODE);
1138 if (database :: isError($res))
1139 die($res->getMessage()."erreur ".$sql);
1140 }
1141 //$this->addToMessage("<br> parcelle ".$parcelle." "._("inexistante")." ".$id."");
1142 }
1143 }
1144
1145 function calcul_auto_pos($id,&$db,$geom,$projection){
1146 // recherche du pos automatique
1147 $sql="select pos from ".DB_PREFIXE."pos WHERE ST_contains(geom, geometryfromtext('".$geom."', ".$projection."))";
1148 $pos = $db -> getOne($sql);
1149 $this->addToLog("recherche auto_pos :".$sql, VERBOSE_MODE);
1150 if($pos!=''){
1151 $sql1 ="update ".DB_PREFIXE."dossier set pos = '".$pos."' where dossier = '".$id."'";
1152 $res1 = $db -> query($sql1);
1153 $this->addToLog("maj auto_pos :".$sql1, VERBOSE_MODE);
1154 if (database:: isError($res1)) die($res1->getMessage()."erreur ".$sql1);
1155 $this->addToMessage("<br>"._("POS/PLU")." : ".$pos."");
1156 }else{
1157 $this->addToMessage("<br>"._("POS/PLU non trouve")." ".$id."");
1158 }
1159 }
1160
1161 function calcul_auto_servitude_surfacique($id,&$db,$geom,$projection){
1162 // recherche servitude surfacique
1163 $sql="select * from ".DB_PREFIXE."servitude_surfacique WHERE ST_contains(geom, geometryfromtext('".$geom."', ".$projection."))";
1164 $res=$db->query($sql);
1165 if (database:: isError($res)) die($res1->getMessage()."erreur ".$sql);
1166 $this->addToLog("requete :".$sql." executee ", VERBOSE_MODE);
1167 while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
1168 $this->addToMessage("<br>"._("servitude")." : ".$row['libelle']." - ".$row['observation']);
1169 $this->servitude.=" [".$row['libelle']."] ".$row['observation']." - ";
1170 }
1171 }
1172
1173 function calcul_auto_servitude_ligne($id,&$db,$geom,$projection){
1174 // recherche servitude ligne
1175 $sql="select * from ".DB_PREFIXE."servitude_ligne WHERE ST_contains(ST_buffer(geom, perimetre), geometryfromtext('".$geom."', ".$projection."))";
1176 $res=$db->query($sql);
1177 if (database:: isError($res)) die($res1->getMessage()."erreur ".$sql);
1178 $this->addToLog("requete :".$sql." executee ", VERBOSE_MODE);
1179 while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
1180 $this->addToMessage("<br>"._("servitude")." : ".$row['libelle']." - ".$row['observation']);
1181 $this->servitude.=" [".$row['libelle']."] ".$row['observation']." - ";
1182 }
1183 }
1184
1185 function calcul_auto_servitude_point($id,&$db,$geom,$projection){
1186 // recherche servitude point
1187 $sql="select libelle,observation, perimetre, distance(geom, geometryfromtext('".$geom."', ".$projection.")) as distance from ".
1188 DB_PREFIXE."servitude_point WHERE distance(geom, geometryfromtext('".$geom."', ".$projection."))<perimetre";
1189 $res=$db->query($sql);
1190 if (database:: isError($res)) die($res1->getMessage()."erreur ".$sql);
1191 $this->addToLog("requete :".$sql." executee ", VERBOSE_MODE);
1192 while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
1193 $this->addToMessage("<br>"._("servitude")." : ".$row['libelle']." - ".$row['observation']." a ".round($row['distance'],2)." m ");
1194 $this->servitude.=" [".$row['libelle']."] ".$row['observation']." a ".round($row['distance'],2)." m - ";
1195 }
1196 }
1197 }// fin classe
1198 ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26