76 lines
1.7 KiB
PHTML
76 lines
1.7 KiB
PHTML
<div id="center">
|
|
<h1 class="titre">CONVENTIONS COLLECTIVES APPLICABLES</h1>
|
|
<div class="paragraph">
|
|
<table class="identite">
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">
|
|
Numéro identifiant Siren
|
|
</td>
|
|
<td width="350" class="StyleInfoData">
|
|
<?=$this->SirenTexte($this->siren)?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="200" class="StyleInfoLib">Raison Sociale</td>
|
|
<td width="350" class="StyleInfoData"><?=$this->raisonSociale?></td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<h2>Conventions collectives</h2>
|
|
<div class="paragraph">
|
|
<table>
|
|
<?php
|
|
if (count($this->conventions)>0){
|
|
foreach ($this->conventions as $conv) {
|
|
?>
|
|
<tr>
|
|
<td colspan="4">
|
|
<table>
|
|
<tr>
|
|
<td width="20"> </td>
|
|
<td width="90" class="StyleInfoData">
|
|
<u>
|
|
<a href="http://www.legifrance.gouv.fr/rechConvColl.do?champActivite=&champIDCC=&champNumeroBrochure=<?=substr($conv->idCC,0,4)?>&bouton=Rechercher" target="_blank">Brochure <?=substr($conv->idCC,0,4)?>
|
|
</a>
|
|
</u>
|
|
</td>
|
|
<td width="300" class="StyleInfoData"><b><?=$conv->nomCC?></b>
|
|
</td>
|
|
<td class="StyleInfoData"><font size="1"><i>Journal Officiel
|
|
<?php
|
|
if (trim($conv->dateCC)<>'') echo ', '.$conv->dateCC;
|
|
if (trim($conv->nbPageCC)*1>0) echo ', '.$conv->nbPageCC.' pages.';
|
|
if (trim($conv->isbnCC)<>'') echo '<br/>ISBN '.$conv->isbnCC;
|
|
?>
|
|
</i></font></td>
|
|
</tr>
|
|
</table>
|
|
<hr width="100%"/>
|
|
</td>
|
|
</tr>
|
|
<?
|
|
}
|
|
} else {
|
|
?>
|
|
<tr>
|
|
<td width="30"> </td>
|
|
<td width="100" class="StyleInfoLib"> </td>
|
|
<td colspan="2" class="StyleInfoData">Néant</td>
|
|
</tr>
|
|
<tr>
|
|
<td colspan="4"> </td>
|
|
</tr>
|
|
<?
|
|
}
|
|
?>
|
|
</table>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|