Merge filtre sur les surveillances
This commit is contained in:
parent
d697df2785
commit
a2bc2d15c6
@ -7,10 +7,12 @@ function readann($file, $filtre){
|
||||
$handle = fopen($file, "r");
|
||||
while (($ann = fgetcsv($handle, 3000, ';')) !== FALSE) {
|
||||
$row++;
|
||||
if ($row==1) {
|
||||
if ($row==1)
|
||||
{
|
||||
// Ligne d'entête, on repère les colonnes
|
||||
$num = count($ann);
|
||||
for ($i=0; $i<$num; $i++) {
|
||||
for ($i=0; $i<$num; $i++)
|
||||
{
|
||||
if ($ann[$i]=='SITE_CNASEA') $colSiteCnasea=$i;
|
||||
elseif($ann[$i]=='Siren') $colSiren=$i;
|
||||
elseif($ann[$i]=='Nic') $colNic=$i;
|
||||
@ -28,20 +30,32 @@ function readann($file, $filtre){
|
||||
elseif($ann[$i]=='Texte Annonce') $colTexteAnn=$i;
|
||||
elseif($ann[$i]=='Date évènement') $colDateEven=$i;
|
||||
}
|
||||
} elseif ($filtre!='' && $ann[$colChapitre]!=$filtre){
|
||||
|
||||
}else{
|
||||
$tab[$count]['RaisonSociale'] = $ann[$colRaisonSociale];
|
||||
$tab[$count]['Siren'] = $ann[$colSiren];
|
||||
$tab[$count]['SiteCnasea'] = $ann[$colSiteCnasea];
|
||||
$tab[$count]['Ref'] = $ann[$colRef];
|
||||
$tab[$count]['Parution'] = $ann[$colParution];
|
||||
$tab[$count]['Bodacc'] = $ann[$colBodacc];
|
||||
$tab[$count]['DatePar'] = WDate::dateT('Ymd','d/m/Y',$ann[$colDatePar]);
|
||||
$tab[$count]['Tribunal'] = $ann[$colTribunal];
|
||||
$tab[$count]['Even'] = str_replace(', ','<br/>',$ann[$colEven]);
|
||||
$tab[$count]['TexteAnn'] = $ann[$colTexteAnn];
|
||||
$count++;
|
||||
}
|
||||
elseif ($filtre!='' && $filtre!='bodacc' && $ann[$colChapitre]!=$filtre )
|
||||
{
|
||||
//On fait rien
|
||||
}
|
||||
else
|
||||
{
|
||||
//$filtre=='bodacc'
|
||||
if( substr($_SESSION['tabInfo']['login'],0,6)=='cnasea' && $ann[$colBodacc]!='A' && $ann[$colBodacc]!='B' && $ann[$colBodacc]!='C' )
|
||||
{
|
||||
//on supprime toutes les annonces pas bodacc
|
||||
}
|
||||
else
|
||||
{
|
||||
$tab[$count]['RaisonSociale'] = $ann[$colRaisonSociale];
|
||||
$tab[$count]['Siren'] = $ann[$colSiren];
|
||||
$tab[$count]['SiteCnasea'] = $ann[$colSiteCnasea];
|
||||
$tab[$count]['Ref'] = $ann[$colRef];
|
||||
$tab[$count]['Parution'] = $ann[$colParution];
|
||||
$tab[$count]['Bodacc'] = $ann[$colBodacc];
|
||||
$tab[$count]['DatePar'] = WDate::dateT('Ymd','d/m/Y',$ann[$colDatePar]);
|
||||
$tab[$count]['Tribunal'] = $ann[$colTribunal];
|
||||
$tab[$count]['Even'] = str_replace(', ','<br/>',$ann[$colEven]);
|
||||
$tab[$count]['TexteAnn'] = $ann[$colTexteAnn];
|
||||
$count++;
|
||||
}
|
||||
}
|
||||
}
|
||||
fclose($handle);
|
||||
|
@ -14,13 +14,14 @@ else{
|
||||
$filtre = '';
|
||||
if (isset($_REQUEST['filtre'])) {
|
||||
switch (trim(strtolower($_REQUEST['filtre']))) {
|
||||
case 'procol': $filtre='procol'; break;
|
||||
case 'mmd': $filtre='mmd'; break;
|
||||
case 'radiations': $filtre='radiations'; break;
|
||||
case 'ventes': $filtre='ventes'; break;
|
||||
case 'comptes': $filtre='comptes'; break;
|
||||
case 'creations': $filtre='creations'; break;
|
||||
default: $filtre=''; break;
|
||||
case 'procol': $filtre = 'procol'; break;
|
||||
case 'mmd': $filtre = 'mmd'; break;
|
||||
case 'radiations': $filtre = 'radiations'; break;
|
||||
case 'ventes': $filtre = 'ventes'; break;
|
||||
case 'comptes': $filtre = 'comptes'; break;
|
||||
case 'creations': $filtre = 'creations'; break;
|
||||
case 'bodacc': $filtre = 'bodacc'; break;
|
||||
default: $filtre = ''; break;
|
||||
}
|
||||
}
|
||||
|
||||
@ -78,6 +79,7 @@ else{
|
||||
<option value="radiations" <?if ($filtre=='radiations') echo 'selected';?>>Radiations</option>
|
||||
<option value="ventes" <?if ($filtre=='ventes') echo 'selected';?>>Ventes/Cessions</option>
|
||||
<option value="mmd" <?if ($filtre=='mmd') echo 'selected';?>>Modifications diverses</option>
|
||||
<?php /* <option value="bodacc" <?if ($filtre=='bodacc') echo 'selected';?>>BODACC</option> */ ?>
|
||||
</select></form></td>
|
||||
</tr>
|
||||
<tr>
|
||||
|
Loading…
x
Reference in New Issue
Block a user