fixed issue #0000143, correction suite à commentaire
This commit is contained in:
parent
26a1dfc76d
commit
ad893ed774
@ -6,10 +6,11 @@ elseif (!preg_match('/\bINDISCORE\b/i', $_SESSION['tabInfo']['droits']))
|
||||
else {
|
||||
|
||||
$siret=trim(preg_replace('/[^0-9]/', '', $_REQUEST['siret']));
|
||||
if (strlen($siret)<>0 && strlen($siret)<>9 && strlen($siret)<>14) die('Paramètres incorrects !');
|
||||
if (strlen($siret)<>0 && strlen($siret)<>9 && strlen($siret)<>14) die('Paramètres incorrects !');
|
||||
|
||||
$idEntreprise=trim(preg_replace('/[^0-9]/', '', $_REQUEST['idEntreprise']))*1; // Si id=0 alors non communiqué
|
||||
if (($siret*1)==0 && $idEntreprise==0) die('Paramètres incorrects !');
|
||||
$idEntreprise=trim(preg_replace('/[^0-9]/', '', $_REQUEST['idEntreprise']))*1;
|
||||
// Si id=0 alors non communiqué
|
||||
if (($siret*1)==0 && $idEntreprise==0) die('Paramètres incorrects !');
|
||||
$siren=substr($siret,0,9);
|
||||
|
||||
function formatPct($pct) {
|
||||
@ -192,6 +193,16 @@ if ($etab['NbBilansScore']>0 && $etab['Bilans'][0]['Millesime']>=$millesimeMax)
|
||||
<tr><td colspan="3"> </td></tr>
|
||||
</table>
|
||||
|
||||
<h2>Paiements</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="550" colspan="2" class="StyleInfoData">
|
||||
<?=html_entity_decode($etab['infoPaiement'])?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Conclusion</h2>
|
||||
<table>
|
||||
<tr>
|
||||
|
@ -91,7 +91,7 @@ if( ( ($siren*1!=0 ) || ($siren*1>100) ) && file_exists($pathImg) )
|
||||
<?php
|
||||
}
|
||||
//Numéro RC
|
||||
$element = formatElement('identite', 'numrc', array($etab['NumRC']));
|
||||
$element = formatElement('identite', 'numrc', array($etab['NumRC'], $etab['tribunalLib']));
|
||||
if($element!==false){ echo dRow($element['lib'], $element['data']); }
|
||||
|
||||
//Autre identifiant : Numéro WALDEC ou ancien numéro RC si le nouveau n'est pas disponible
|
||||
@ -102,7 +102,7 @@ $element = formatElement('identite', 'actif', array($etab['Siren'], $siret, $idE
|
||||
if($element!==false){ echo dRow($element['lib'], $element['data']); }
|
||||
|
||||
//Situation Jurique + affichage date de radiation
|
||||
$element = formatElement('identite', 'situationjuridique', array($etab['SituationJuridique'], $etab['DateRadiation'], $etab['Siret'], $idEntreprise));
|
||||
$element = formatElement('identite', 'situationjuridique', array($etab['SituationJuridique'], $etab['DateRadiation'], $etab['EntActiveRCS'], $etab['Siret'], $idEntreprise));
|
||||
if($element!==false){ echo dRow($element['lib'], $element['data']); }
|
||||
?>
|
||||
</table>
|
||||
@ -1817,6 +1817,16 @@ if ($etab['NbBilansScore']>0 && $etab['Bilans'][0]['Millesime']>=$millesimeMax)
|
||||
<tr><td colspan="3"> </td></tr>
|
||||
</table>
|
||||
|
||||
<h2>Paiements</h2>
|
||||
<table>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="550" colspan="2" class="StyleInfoData">
|
||||
<?=html_entity_decode($etab['infoPaiement'])?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Conclusion</h2>
|
||||
<table>
|
||||
<tr>
|
||||
|
@ -601,8 +601,14 @@ require_once 'partenaires/classMCoface.php';
|
||||
$etab = scoresws_indiscore($siret, $siren, $idEntreprise);
|
||||
$firephp->log($etab,'indiscore');
|
||||
?>
|
||||
|
||||
<p><?=htmlentities($etab['infoPaiement'])?></p>
|
||||
<table>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="550" colspan="2" class="StyleInfoData">
|
||||
<?=html_entity_decode($etab['infoPaiement'])?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
||||
<h2>Procédures collectives</h2>
|
||||
<table>
|
||||
|
Loading…
x
Reference in New Issue
Block a user