issue #0000031 : Affichage nouveau numero RC sinon affichage ancien RC ou numero WALDEC
This commit is contained in:
parent
4f06d7305d
commit
cba2dd0fb5
@ -169,6 +169,7 @@ if ( $cache->startCapture($fileName.'.html') == FALSE){
|
||||
?>
|
||||
<?php
|
||||
//Numéro RC
|
||||
$flagNewRC = FALSE;
|
||||
if (isset($etab['numRC']) && $etab['numRC']!='') {
|
||||
?>
|
||||
<tr>
|
||||
@ -177,20 +178,28 @@ if ( $cache->startCapture($fileName.'.html') == FALSE){
|
||||
<td width="350" class="StyleInfoData"><?=$etab['numRC']?></td>
|
||||
</tr>
|
||||
<?php
|
||||
$flagNewRC = TRUE;
|
||||
}
|
||||
?>
|
||||
<?php
|
||||
//Autre identifiant : Numéro WALDEC
|
||||
if ($etab['AutreId']<>'') {
|
||||
?>
|
||||
//Autre identifiant : Numéro WALDEC ou ancien numéro RC si le nouveau n'est pas disponible
|
||||
if (isset($etab['AutreId']) && $etab['AutreId']!='' && (!$flafNewRC || substr($etab['AutreId'],0,1)=='W'))
|
||||
{
|
||||
$libTrib = '';
|
||||
?>
|
||||
<tr>
|
||||
<td width="30"> </td>
|
||||
<td width="200" class="StyleInfoLib">
|
||||
<?php
|
||||
if (substr($etab['AutreId'],0,1)=='W') print 'Identifiant Association WALDEC';
|
||||
elseif (preg_match('/(A|B|C|D)/i', $etab['AutreId']))
|
||||
{
|
||||
print 'Numéro R.C.';
|
||||
$libTrib = ' RCS '.preg_replace('/(^TC |^TI |^TGIcc )/i','',$etab['TribunalLib']);
|
||||
}
|
||||
?>
|
||||
</td>
|
||||
<td width="350" class="StyleInfoData"><?=$etab['AutreId']?></td>
|
||||
<td width="350" class="StyleInfoData"><?=$etab['AutreId'].$libTrib?></td>
|
||||
</tr>
|
||||
<?
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user