/[openfoncier]/trunk/app/sitadel.php
ViewVC logotype

Annotation of /trunk/app/sitadel.php

Parent Directory Parent Directory | Revision Log Revision Log


Revision 182 - (hide annotations)
Fri Oct 7 10:51:05 2011 UTC (13 years, 3 months ago) by fraynaud
File size: 30943 byte(s)
modif


1 fraynaud 178 <?php
2     // $Id: export_sitadel.php,v 1.20 2010-11-15 14:50:40 fraynaud Exp $
3     /*
4     transfert de dossier à SITADEL
5     realisé ville arles par fr+jlb
6     voir parametrage trt/sitadel.inc
7     */
8     require_once "../obj/utils.class.php";
9     require_once "../app/sitadel.class.php";
10     $f = new utils(NULL, "export", _("export SITADEL"), "ico_reqmo.png", "export");
11     $f->addHTMLHeadJs(array("../js/script.js"));
12     // GET
13     if (isset ($_GET['validation'])){
14     $validation=$_GET['validation'];
15     }else{
16     $validation=0;
17     }
18     /**
19     * Description de la page
20     */
21     $description = _("Cette page vous permet de Transmettre les dossiers suivant la procedure SITADEL");
22     $f->displayDescription($description);
23     //controle
24     $DEBUG=1;
25     $x=array();
26     $cpt_depot=0;
27     $cpt_decision=0;
28     $cpt_suivi1=0;
29     $cpt_suivi2=0;
30     $cpt_transfert=0;
31     $cpt_modificatif=0;
32     include("sitadel.inc");
33     // parametres collectivite
34    
35     // =============================================================================
36     // validation = 0
37     // =============================================================================
38     if($validation==0){
39     $validation=1;
40     echo "<form method=\"POST\" action=\"sitadel.php?validation=".$validation."\" name=f1>";
41     echo " "._("debut")." ";
42     echo "<input type='text' name='datedebut' id=\"datedebut\" value=\"";
43     echo "\" size=\"15\" class=\"champFormulaire datepicker\" onchange='fdate(this)' onkeyup=\"\" onclick=\"\" />";
44     echo " "._("fin")." ";
45     echo "<input type='text' name='datefin' id=\"datefin\" value=\"";
46     echo "\" size=\"15\" class=\"champFormulaire datepicker\" onchange='fdate(this)' onkeyup=\"\" onclick=\"\" />";
47     echo " "._("Numero d ordre d envoi")." : "."<SELECT name='numero'>";
48     for($i=1;$i<11;$i++){
49     echo "<option value ='".$i."'>".$i."</option>";
50     }
51     echo "</select>";
52     echo "<br><br><input type='submit' value='export SITADEL'>";
53     echo "<br><br></form>";
54    
55     }else { // ===================== extraction =================================
56    
57     $correct=true;
58     $longueurenregistrement= 0 ; // a calculer
59     // entete
60     $nombreenregistrement=1; // l entete est comptée dans le nombre enregistrement
61 fraynaud 181 if($_POST["datedebut"]=="")$correct=false;
62 fraynaud 178 if($_POST["datefin"]=="") $correct=false;
63 fraynaud 181 $correct=true; // a enlever apres test
64 fraynaud 178 if ($correct==true){ // ***
65     // dossiers concernés
66     $sql= "select * from dossier";
67 fraynaud 179 $sql.= " where (nature='PC' or nature = 'PD' or nature = 'PA' or nature = 'DP')";
68 fraynaud 178 //$sql.= " AND ((date_depot>='".$this->datedebut."' AND date_depot<='".$this->datefin."')";
69 fraynaud 179 //$sql.= " OR (date_decision>='".$this->datedebut."' AND date_decision<='".$this->datefin."'))";
70     $sql.= " and dossier = 'PC11R0004'";
71 fraynaud 178 $res = $f->db -> query ($sql);
72     $f->isDatabaseError($res);
73     //initialisation
74     $export="";
75     $bl="";
76    
77     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
78     // initialisation
79     $g = new sitadel($row['dossier']);
80     $g->row=$row;
81     $departement =$f->collectivite["departement"];
82     $commune =$f->collectivite["commune"];
83    
84     // depot
85     $depot="";
86 fraynaud 179 // type different de transfert
87     if($row['types']!='Transfert'){
88     $depot.=$g->entete("DEPOT",$departement,$commune);
89     $depot.=$g->etatcivil();
90     $depot.=$g->adresse();
91     $depot.=$g->delegataire();
92 fraynaud 182 $depot.=$g->adresse_terrain();
93 fraynaud 179 $depot.=$g->parcelle();
94     // ===========================
95     // contrat maison individuelle
96     // ===========================
97     // sitadel : contrat|
98     // openfoncier : non renseigne
99     $depot.= "|";
100     // ==========
101     // architecte
102     // ==========
103     // sitadel : architecte|
104     // openfoncier : architecte >0
105     if($row['architecte']>0)
106     $depot.= "1|";
107     else
108     $depot.= "0|";
109     // =====================
110     // utilisation data cnil
111     // ======================
112     // sitadel : cnil
113     // openfoncier : non renseigne
114     $depot.= "1";
115     // fin d enregistrement depot
116     $depot.="\n";
117     }
118 fraynaud 178
119     //decision
120 fraynaud 179 // type different de modificatif
121     if($row['types']!='Modificatif'){
122     $decision="";
123 fraynaud 181 $avis_sitadel="";
124     $avis_sitadel_motif="";
125 fraynaud 179 // enregistrement decision dans tous les cas
126     $decision.=$g->entete("DECISION",$departement,$commune);
127     //if ($row['date_decision']== '0000-00-00'
128     // or !isset($row['date_decision'])){
129 fraynaud 181 if(isset($row['date_decision']) or $row['date_decision']==""){
130 fraynaud 179 // avis_sitadel et avis_sitadel_motif
131     if($row['avis']!=''){
132     $avis_sitadel = 0;
133     $avis_sitadel_motif=0 ;
134     $sql="select sitadel, sitadel_motif from avis where avis ='".$row['avis']."'";
135     $res1 = $f->db -> query ($sql);
136     $f->isDatabaseError($res1);
137 fraynaud 181
138 fraynaud 179 while ($row1=& $res1->fetchRow(DB_FETCHMODE_ASSOC)){
139     $avis_sitadel = $row1['sitadel'];
140     $avis_sitadel_motif = $row1['sitadel_motif'];
141     }
142 fraynaud 181 echo $avis_sitadel."***";
143 fraynaud 179 $decision.= $g->decision_groupe1($avis_sitadel,$avis_sitadel_motif);
144     }
145 fraynaud 181 // si la decision est favorable, envoi des informations statistiques
146 fraynaud 179 if($avis_sitadel==2 or $avis_sitadel==4
147     or $avis_sitadel==5){
148     // si decision favorable, expresse ou tacite GROUPE 2
149     $decision.= $g->amenagement();
150     if($row['travaux']!=''){
151 fraynaud 181 $sql= "select codelascot,libelle
152 fraynaud 179 from travaux where travaux=".$row['travaux'];
153     $res2 = $f->db -> query ($sql);
154     $f->isDatabaseError($res2);
155     while ($row2=& $res2->fetchRow(DB_FETCHMODE_ASSOC)){
156     $travaux = $row2['libelle'];
157 fraynaud 181 $lascot = $row2['codelascot'];
158 fraynaud 179 }
159     $decision.= $g->travaux($travaux,$lascot);
160     }
161     $sql3="select * from destination_shon where dossier = '".
162     $row['dossier']."' order by destination";
163     $res3 = $f->db -> query ($sql3);
164     $f->isDatabaseError($res3);
165     $temp = array();
166     while ($row3=& $res3->fetchRow(DB_FETCHMODE_ASSOC)){
167     $shonant[$row3['destination']]=$row3["shon_anterieure"];
168     $shondem[$row3['destination']]=$row3["shon_demolie"];
169     $shonanttr[$row3['destination']]=$row3["shon_anterieure_supprimee"];
170     $shonprojtr[$row3['destination']]=$row3["shon_nouvelle_transformee"];
171     $shoncr1[$row3['destination']]=$row3["shon_nouvelle"];
172     $shoncr2[$row3['destination']]=$row3["shon_shob_transformee"];
173     }
174     $decision.= $g->destination($shonant);
175     $decision.= $g->destination($shondem);
176     $decision.= $g->destination($shonanttr);
177     $decision.= $g->destination($shonprojtr);
178     $decision.= $g->destination($shoncr1);
179     $decision.= $g->destination($shoncr2);
180    
181     $decision.= $g->descriptif();
182 fraynaud 181 $decision.="\n";
183     }
184     }
185 fraynaud 179 }
186 fraynaud 178
187 fraynaud 181 // suivi DOC : mettre le test date
188     $suivi1="";
189     // enregistrement decision dans tous les cas
190     // $nombreenregistrement++;
191     $suivi1.=$g->entete("SUIVI",$departement,$commune);
192     $suivi1.=$g->chantier();
193     $suivi1.="\n";
194    
195     // suivi DAT : mettre le test date
196     $suivi2="";
197     // enregistrement decision dans tous les cas
198     // $nombreenregistrement++;
199     $suivi2.=$g->entete("SUIVI",$departement,$commune);
200     $suivi2.=$g->achevement();
201     $suivi2.="\n";
202    
203    
204    
205    
206    
207    
208    
209    
210    
211 fraynaud 178 if($DEBUG==1){
212     echo $depot."<br>";
213     echo $decision."<br>";
214 fraynaud 181 echo $suivi1."<br>";
215     echo $suivi2."<br>";
216 fraynaud 178 }
217    
218    
219     }
220    
221    
222    
223    
224     /*
225    
226     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
227    
228    
229    
230 fraynaud 179
231 fraynaud 178 // ==================================================================================
232     // evenement de decision sur une période *** DECISION ***
233     // ==================================================================================
234     $sql= "select annee, dossier.dossier, dossier.nature,
235     terrain_surface, amenagement, travaux.libelle as travaux_libelle,
236     shon,logement_nombre, piece_nombre,
237     date_decision, avis.sitadel as avis_sitadel, avis.sitadel_motif as avis_sitadel_motif,
238     travaux.codelascot as lascot
239     from dossier left join travaux on dossier.travaux=travaux.travaux
240     left join avis on avis.avis= dossier.avis";
241     $sql.= " where date_decision>='".substr($_POST["datedebut"],6,4).
242     "-".substr($_POST["datedebut"],3,2)."-".
243     substr($_POST["datedebut"],0,2)."'";
244     $sql.= " AND date_decision<='".substr($_POST["datefin"],6,4).
245     "-".substr($_POST["datefin"],3,2)."-".
246     substr($_POST["datefin"],0,2)."'";
247     $sql.= " AND (dossier.nature='PC' or dossier.nature = 'PD' or dossier.nature = 'PA' or dossier.nature = 'DP')";
248     $sql.= " AND types != 'Modificatif'";
249     echo "<BR><br><font style='background-color:#ffffff;border : 1px solid #000000'>DECISION</font> ".$sql;
250     $res = $f->db -> query ($sql);
251     $f->isDatabaseError($res);
252 fraynaud 181
253 fraynaud 178 // ==================================================================================
254     // suivi DOC *** suivi DOC ***
255     // ==================================================================================
256     // Evenement declancheur DATE OUVERTURE DE CHANTIER
257     $sql= "select annee, dossier.dossier, dossier.nature, annee,
258     date_chantier, shon
259     from dossier ";
260     $sql.= " where date_chantier>='".substr($_POST["datedebut"],6,4).
261     "-".substr($_POST["datedebut"],3,2)."-".
262     substr($_POST["datedebut"],0,2)."'";
263     $sql.= " AND date_chantier<='".substr($_POST["datefin"],6,4).
264     "-".substr($_POST["datefin"],3,2)."-".
265     substr($_POST["datefin"],0,2)."'";
266     echo "<BR><br><font style='background-color:#ffffff;border : 1px solid #000000'>SUIVI</font> ".$sql;
267     // faut il en faire suivi 1 et suivi 2 ou dans une meme requete
268     $res = $f->db -> query ($sql);
269     $f->isDatabaseError($res);
270     $suivi1="";
271    
272    
273    
274     // ==================================================================================
275     // Transfert TRANSFERT
276     // ==================================================================================
277     // element declancheur : Transfert
278     // zone types= Transfert
279     $sql= "select date_achevement, annee, dossier.dossier, demandeur_civilite, dossier.nature,demandeur_categorie,
280     categorie_demandeur.libelle as categorie_libelle,demandeur_nom,demandeur_societe,demandeur_adresse,
281     demandeur_ville,demandeur_cp,demandeur_email,delegataire,parcelle, terrain_numero,
282     terrain_numero_complement,terrain_adresse,terrain_adresse_complement, terrain_ville, terrain_cp,
283     architecte from dossier
284     left join categorie_demandeur on demandeur_categorie= categorie_demandeur.categorie_demandeur";
285     $sql.= " where date_depot>='".substr($_POST["datedebut"],6,4).
286     "-".substr($_POST["datedebut"],3,2)."-".
287     substr($_POST["datedebut"],0,2)."'";
288     $sql.= " AND date_depot<='".substr($_POST["datefin"],6,4).
289     "-".substr($_POST["datefin"],3,2)."-".
290     substr($_POST["datefin"],0,2)."'";
291     $sql.= " AND types= 'Transfert'";
292     echo "<BR><br><font style='background-color:#ffffff;border : 1px solid #000000'>TRANSFERT</font> ".$sql;
293     // date du transfert ?
294     $res = $f->db -> query ($sql);
295     $f->isDatabaseError($res);
296     $transfert="";
297     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
298     $nombreenregistrement++;
299     $cpt_transfert++;
300     // sitadel : mouv|typpermis|equivalence|dep|commune|andepnumpc|indmod
301     // typepermis = dossier.nature
302     // annee = dossier.annee
303     // andepnumpc|indmod = substr dossier.dossier
304     $transfert.="TRANSFERT|".$row['nature']."||".$departement."|".$commune."|".$row['annee']."|".
305     substr($row['dossier'],4,5)."|".substr($row['dossier'],9,2)."|";
306     //ajout aout2010-----IDEM DEPOT codedemo à suivi (---- sauf civtiers|*prenomtier*|nomtier|*numvoietiers*|*typvoietiers*|
307     // libvoietiers|lieudittier|communetier|codpostier|*bptier*|*cedextier*|*paystier*|
308     // *divtertier et telmo----)
309     // codemo|
310     if($row['demandeur_categorie']==9 or $row['demandeur_categorie']=="")
311     $codemo=1;// personne physique
312     else
313     $codemo=2;// personne morale
314     $transfert.=$codemo."|"; // 1 personne physique ; 2 sinon
315     // openfoncier civilite (5/8 ok), nom (80/30-> substr), societe (80/50->substr)
316     // civpart|prenompart|nompart|denopm|rspm|siret|catjur|civrep|prenomrep|nomrep|
317     // suivant codemo = 1 (personne physique) ou 2 (personne morale)
318     // attention : $row['demandeur_civilite']. non standart
319    
320     if($codemo==1){
321     // civpart|*prenompart*|nompart||||||
322    
323     $transfert.= "||";
324     $transfert.= maj(substr($row['demandeur_nom'],0,30))."|||||||";
325     }else{
326     //denopm|rspm|*siret*|*catjur*|civrep|*prenomrep*|nomrep|
327     $transfert.="|||".maj(substr($row['demandeur_societe'],0,50))."|";
328     $transfert.=maj(substr($row['categorie_libelle'],0,30))."|";
329     $transfert.="||||".
330     maj(substr($row['demandeur_nom'],0,30))."|"; // pas de prenom
331     }
332     // openfoncier : adresse (80/ 26+38 -> substr sur 2 zones) - cp (5/5 OK) - ville (30/36 -> OK)
333     // *numvoiemo*|*typvoiemo*|libvoiemo|lieuditmo(+)|communemo|codposmo|*bpmo*|*cedexmo*|*paysmo*|*divetermo|
334     $transfert.= "|||".maj(substr($row['demandeur_adresse'],0,26))."|".
335     maj(substr($row['demandeur_adresse'],26,38))."|";
336     $transfert.= maj($row['demandeur_ville'])."|".$row['demandeur_cp']."|||||";
337     // sitadel : melmo|
338     $transfert.= $row['demandeur_email']."|";
339     // sitadel: suivi
340     if($row['delegataire']=='Oui'){
341     $transfert.= "1";
342     }else{
343     $transfert.= "0";
344     }
345     //-------------------
346     $transfert.="\n";
347     }// fin while transfert
348     //$res -> free ();
349     if($DEBUG==1){
350     $temp=explode("\n",$transfert);
351     $temp1=sizeof($temp)-1;
352     for($g=0;$g<$temp1;$g++){
353     $temp2=array();
354     $temp2 = explode("|",$temp[$g]);
355     $v=$g+1;
356     echo "<br><br> DAT : ".$v." ============== <br>";
357     for($k=0;$k<sizeof($temp2);$k++){
358     $t=$k+1;
359     echo $t." : ".$temp2[$k]."<br>";
360     }
361     }
362     } // debug
363    
364     // ==================================================================================
365     // modificatif MODIFICATIF
366     // ==================================================================================
367     // element declancheur : modificatif
368     // zone types= Modificatif
369     // suivant date-depot et dcision du modificatif
370     $sql= "select annee, dossier.dossier, dossier.nature,
371     dossier.date_decision, avis.sitadel as avis_sitadel, avis.sitadel_motif as avis_sitadel_motif,
372     dossier.terrain_numero,dossier.terrain_adresse,dossier.terrain_cp,dossier.terrain_ville,
373     dossier.parcelle,
374     dossier.terrain_surface,
375     travaux.codelascot as lascot,
376     date_achevement, shon, hauteur, piece_nombre, logement_nombre, batiment_nombre
377     from dossier left join avis on avis.avis= dossier.avis
378     left join travaux on dossier.travaux=travaux.travaux";
379     $sql.= " where (date_depot>='".substr($_POST["datedebut"],6,4).
380     "-".substr($_POST["datedebut"],3,2)."-".
381     substr($_POST["datedebut"],0,2)."'";
382     $sql.= " AND date_depot<='".substr($_POST["datefin"],6,4).
383     "-".substr($_POST["datefin"],3,2)."-".
384     substr($_POST["datefin"],0,2)."'";
385     $sql.= " AND types= 'Modificatif')";
386     $sql.= " or (date_decision>='".substr($_POST["datedebut"],6,4).
387     "-".substr($_POST["datedebut"],3,2)."-".
388     substr($_POST["datedebut"],0,2)."'";
389     $sql.= " AND date_decision<='".substr($_POST["datefin"],6,4).
390     "-".substr($_POST["datefin"],3,2)."-".
391     substr($_POST["datefin"],0,2)."'";
392     $sql.= " AND types= 'Modificatif')";
393     echo "<BR><br><font style='background-color:#ffffff;border : 1px solid #000000'>MODIFICATIF</font>".$sql;
394     // ou dat ???
395     $res = $f->db -> query ($sql);
396     $f->isDatabaseError($res);
397     $modificatif="";
398     // aout 2010 -------------------------------------------------------------------
399     while ($row=& $res->fetchRow(DB_FETCHMODE_ASSOC)){
400     $nombreenregistrement++;
401     $cpt_modificatif++;
402     // sitadel : mouv|typpermis|equivalence|dep|commune|andepnumpc|indmod
403     // typepermis = dossier.nature
404     // annee = dossier.annee
405     // andepnumpc|indmod = substr dossier.dossier
406     $modificatif.="MODIFICATIF|".$row['nature']."||".$departement."|".$commune."|".$row['annee']."|".
407     substr($row['dossier'],4,5)."|".substr($row['dossier'],9,2)."|";
408     // sitadel : collectivite|natdec|datredec|motifannul difference avec decision -> *** dateredec a la place de datedec
409     $modificatif.= '1|'; // au nom de la commune
410     // zone supplementaire dans avis
411     // ALTER TABLE `avis` ADD `sitadel_motif` VARCHAR( 1 ) NOT NULL ;
412     // 0 à 8
413     $modificatif.= $row['avis_sitadel']."|";
414     // date au format francais 8 caracteres
415     if ($row['date_decision']!= '0000-00-00' and isset($row['date_decision']))
416     $modificatif.= substr($row['date_decision'],8,2).''.substr($row['date_decision'],5,2)."".substr($row['date_decision'],0,4)."|";
417     else
418     $modificatif.= "|";
419     // Motif d annulation
420     // zone supplementaire dans avis;
421     // ALTER TABLE `avis` ADD `sitadel_motif` VARCHAR( 1 ) NOT NULL ;
422     $modificatif.= $row['avis_sitadel_motif']."";
423     if(isset($row['avis_sitadel']))
424     $avis = $row['avis_sitadel'];
425     else
426     $avis =0;
427     // =============================================================
428     // GROUPE 2 si decision favorable, expresse ou tacite GROUPE 2
429     // =============================================================
430     if($avis==2 or $avis==4 or $avis==5 or $avis==0){// decision positive ou encours
431     // sitadel : |numvoiete|*typvoiete*|libvoiete|lieudite|communete|codposte|*bpte*|*cedexte*|
432     $modificatif.= "|".substr($row['terrain_numero'],0,4)."|"; // typevoie
433     $modificatif.= "|".maj(substr($row['terrain_adresse'],0,26))."|".
434     maj(substr($row['terrain_adresse'],26,38))."|";
435     $modificatif.= maj($row['terrain_ville'])."|";
436     $modificatif.= $row['terrain_cp']."|";
437     $modificatif.= "||";
438     // sitadel : scadastre1|ncadastre1|*scadastre2*|*ncadastre2*|*scadastre3*|*ncadastre3*|
439     $modificatif.= substr($row['parcelle'],0,2)."|";
440     $modificatif.= substr($row['parcelle'],2,4)."|||||";
441     //terrain/libmotif/natrav/annexe/nvmax
442     $modificatif.= floor($row['terrain_surface'])."|";
443     //libmotif
444     $modificatif.= '|';
445     //natrav
446     $nattrav="0000";
447     if($row['lascot']=='2') $nattrav="1000";
448     if($row['lascot']=='3') $nattrav="0100";
449     $modificatif.= $nattrav."|";
450     //annexe
451     $modificatif.= "00000|";
452     //nvmax
453     $modificatif.= "|";
454     // shon avant travaux shionnnant1 a 9 -> non renseigne
455     $modificatif.= "|||||||||";
456     //shondem1 à 9| shonanttr1 à 9| shonprojtr 1 à 9|shoncr1 a 9 |shon2cr1 a 9
457     // table destination
458     $sql1="select destination, shon from destination_shon where dossier = '". $row['dossier']."'";
459     // faire une boucle et remplir
460     //**************************************************************
461     $res1 = $f->db -> query ($sql1);
462     $f->isDatabaseError($res);
463     //
464     $tmpPD = array(); // shon existante demolie
465     for($i=0;$i<=9;$i++)
466     {
467     $tmpPD[$i]='';
468     }
469     //
470     $tmplascot4 = array(); // shon changement de destination
471     for($i=0;$i<=9;$i++)
472     {
473     $tmplascot4[$i]='';
474     }
475     //
476     $tmplascot1 = array(); // shon nouvellement construite
477     for($i=0;$i<=9;$i++)
478     {
479     $tmplascot1[$i]='';
480     }
481     //
482     $tmplascot2 = array(); // shon cree par transformation
483     for($i=0;$i<=9;$i++)
484     {
485     $tmplascot2[$i]='';
486     }
487     while ($row1=& $res1->fetchRow(DB_FETCHMODE_ASSOC)){
488     // shonprojtr1 a 9 / shoncr1 a 9 /
489     if($row['nature']== 'PD') {
490     $tmpPD[$row1['destination']] = $row1['shon']; // shon existante demolie -> a remplir
491     }
492     if($row['lascot']== '4') {
493     $tmplascot4[$row1['destination']] = $row1['shon'];// shon changement de destination -> a remplir
494     }
495     if($row['lascot']== '1'){
496     $tmplascot1[$row1['destination']] = $row1['shon'];// shon nouvellement construite -> a remplir
497     }
498     if($row['lascot']== '2') {
499     $tmplascot2[$row1['destination']] = $row1['shon'];// shon cree par transformation -> a remplir
500     }
501     }
502     // shon existante demolie -> a remplir
503     for($i=1;$i<=9;$i++)
504     {
505     $modificatif.=$tmpPD[$i].'|';
506     }
507     //
508     $modificatif.= "|||||||||";// shon supprimmee par changement de destination -> non renseigne
509     //
510     //$row['lascot']== '4' shon changement de destination
511     for($i=1;$i<=9;$i++)
512     {
513     $modificatif.=$tmplascot4[$i].'|';
514     }
515     //shon nouvellement construite
516     for($i=1;$i<=9;$i++)
517     {
518     $modificatif.=$tmplascot1[$i].'|';
519     }
520     //shon cree par transformation
521     for($i=1;$i<=9;$i++)
522     {
523     $modificatif.=$tmplascot2[$i].'|';
524     }
525     //**************************************************************
526     // cpublic : non renseignee N par defaut
527     // O/N transport/enseignement/sante/social/special/culture
528     $modificatif.= "000000";
529     // nbmaison : nombre de maison
530     $modificatif.= "|".$row['batiment_nombre'];
531     // nblogcoll : nombre de logement collectif
532     $modificatif.= "|".$row['logement_nombre'];
533     // nbtotlog : nombre de logement total
534     $modificatif.= "|".$row['logement_nombre'];
535     // natres : nature des residences
536     // O/N 1=ages, 2=etudiant, 3=tourisme, 4=hotel, 5=social, 6= handicap, 7=autres
537     $modificatif.= "|0000000";
538     // libres= si autre residence (long max 1000 c)
539     $modificatif.= "|";
540     // util : O/N personnel, principale, secondaire, vente, location
541     $modificatif.= "|00000";
542     //chambres
543     $modificatif.= "|";
544     //finis (nb logement locatif sociaux)/finaa(nb logementfinancement aidé)
545     //finptz (nb logement pret taux 0)/finaf (nb logement autrement)/
546     //piec1 à 6 (nb logement 1 a 6pieces )
547     $modificatif.= "||||||||||";
548     }//fin GROUPE 2
549     $modificatif.="\n";
550     }// fin while modificatif
551    
552     if($DEBUG==1){
553     $temp=explode("\n",$modificatif);
554     $temp1=sizeof($temp)-1;
555     for($g=0;$g<$temp1;$g++){
556     $temp2=array();
557     $temp2 = explode("|",$temp[$g]);
558     $v=$g+1;
559     echo "<br><br> DAT : ".$v." ============== <br>";
560     for($k=0;$k<sizeof($temp2);$k++){
561     $t=$k+1;
562     echo $t." : ".$temp2[$k]."<br>";
563     }
564     }
565     } // fin debug
566    
567     // ***************************************
568     // entete de l enregistrement page 8 et 9
569     // ***************************************
570     // numero
571     //$numero= $db -> nextId('sitadel');
572     $numero=$_POST["numero"];
573     $fichiertransmis = date('ymj').$departement.$commune;
574     $longueurenregistrement= 0 ; // a calculer *** enregistrement le plus long
575     $entete = "SITADEL|".$departement."|".$commune."|".$region."|".$fichiertransmis."|".$numero."|";
576     // calcul enregistrement le plus long
577     $tmpenr="";
578     $tmpenr=$depot.$decision.$suivi1.$suivi2.$transfert.$modificatif;
579     if($flag_utf8_decode==1){
580     $tmpenr=utf8_decode($tmpenr);
581     }else{
582     if($flag_utf8_encode==1){
583     $tmpenr=utf8_encode($tmpenr);
584     }
585     }
586     $nbenr = explode("\n",$tmpenr);
587     $tmp=array();
588     $cpt=0;
589     for($i=0;$i<sizeof($nbenr);$i++){
590     // mb_strlen( variable,encoding) PHP 4 >= 4.0.6, PHP 5
591     // Le paramètre encoding est l'encodage des caractères.
592     // S'il est omis, l'encodage de caractres interne sera utilisé.
593     $tmp[$i] = strlen($nbenr[$i]);
594     //echo strlen($nbenr[$i])." ".$nbenr[$i]."<br>";
595     $cpt++;
596     }
597     $longueurenregistrement=max($tmp);
598     //tri tableau
599     array_multisort($tmp,SORT_DESC);
600     //exact cpt-1+1 (cpt -1( tableau 0 à n ) +1(enregistrement entete) )
601     echo "<BR><br>Nombre Total Enregistrement : ".$cpt." <-> ".$nombreenregistrement."<br><br>";
602     echo "Detail :<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- DEPOT : ".$cpt_depot."<br>";
603     echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- DECISION vide suite DEPOT: ".$cpt_decisionsuivantdepot."<br>";
604     echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- DECISION : ".$cpt_decision."<br>";
605     echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- SUIVI 1 : ".$cpt_suivi1."<br>";
606     echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- SUIVI 2 : ".$cpt_suivi2."<br>";
607     echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- TRANSFERT : ".$cpt_transfert."<br>";
608     echo "&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- MODIFICATIF : ".$cpt_modificatif."<br>";
609     echo "TOTAL : ".($cpt_depot+$cpt_decisionsuivantdepot+$cpt_decision+$cpt_suivi1+$cpt_suivi2+$cpt_transfert+$cpt_modificatif)." + 1 enregistrement(entete)";
610     echo "<br><br>Longueur Enregistrement le plus long : ".max($tmp)." <-> ".$tmp[0];
611    
612     // Date de modification
613     $datemodification = date('y').str_pad (DATE('m'), 2, "0", STR_PAD_LEFT).str_pad (DATE('j'), 2, "0", STR_PAD_LEFT);
614    
615    
616    
617     $entete.= $longueurenregistrement."|".$datemodification."|".$nombreenregistrement."|openFoncier|".$versionapplicatif."\n";
618     $export=$entete.$depot.$decision.$suivi1.$suivi2.$transfert.$modificatif;
619    
620     if($flag_utf8_decode==1){
621     $export=utf8_decode($export);
622     }else{
623     if($flag_utf8_encode==1){
624     $export=utf8_encode($export);
625     }
626     }
627     //$str = htmlentities($str, ENT_QUOTES);
628     // ecriture des fichiers en tmp
629     $fichier = "../tmp/SITADEL".substr($_POST["datedebut"],3,2).
630     "".substr($_POST["datedebut"],8,4)."_test";
631     $inf = fopen($fichier,"w");
632     //$export=substr($export,0,strlen($export)-1); // un \n en trop
633     fwrite($inf,$export);
634     fclose($inf);
635     echo "<table class='dossier' width='95%'>";
636     echo "<tr class='dossier'><td>";
637     echo "<br>Fichier ".$fichier." sauvegarde<br><br><br>";
638     $affiche="";
639     if($DEBUG==1)
640     $affiche= str_replace("\n","<br>",$export);
641     // affichage
642     echo "<br /><br />Pour telecharger le fichier, cliquer ici : <a href=\"".$fichier."\" target=\"_blank\">";
643     echo "<img src=\"../app/img/ico_trace.png\" alt=\"Telecharger le fichier CNEN\" title=\"Telecharger le fichier CNEN\" />";
644     echo "</a> avec le bouton droit et enregistrer la cible du lien sous. <br /><br />";
645     echo $affiche;
646     //echo"<img src='../img/retour.png' align='top' border='0'>";
647     // echo "</a></center>";
648     echo "</td></tr></table>";
649     */
650     }else
651     echo "remplissez les 2 dates";
652     }//validation
653     ?>

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26