644 lines
20 KiB
PHP
Executable File
644 lines
20 KiB
PHP
Executable File
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:15pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td colspan="2" height="30" style=""></td>
|
|
</tr>
|
|
|
|
<tr style="background-color:white;">
|
|
<td > <?= _("LE TARIF ACTE GARANT EST-IL APPLICABLE POUR CE BENEFICIAIRE?") ?> </td>
|
|
<td width="25%" align="center">
|
|
<?= $tarifapplique['appliquerTarifGarant']=="0" ?"Non":"Oui"; ?>
|
|
</td>
|
|
|
|
</tr>
|
|
<tr>
|
|
<td colspan="2" height="8" style=""></td>
|
|
</tr>
|
|
|
|
<tr style="background-color:white;">
|
|
<td > <?= _("LE TARIF ACTE NUIT OU FERIE EST-IL APPLICABLE POUR CE BENEFICIAIRE?") ?> </td>
|
|
<td width="25%" align="center">
|
|
<?= $tarifapplique['appliquerTarifNuit']=="0" ?"Non":"Oui"; ?>
|
|
</td>
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="2" height="8" style=""></td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<div class="tab-container">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:13pt; white-space:nowrap;">
|
|
<thead>
|
|
<tr>
|
|
<th style="text-align:center"> <?= _("Etape") ?> </th>
|
|
<th style="text-align:center"> <?= _("Type Tarif Acte") ?> </th>
|
|
<th style="text-align:center"> <?= _("Désignation") ?> </th>
|
|
<th style="text-align:center"> <?= _("Appliqué") ?> </th>
|
|
<th width="10%" style="text-align:center"> <?= _("Prix Jour") ?> </th>
|
|
<th width="12%" style="text-align:center"> <?= _("Prix Nuit ou Férié") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<?php
|
|
$codeTarifActeGarant = $tarifapplique['codeTarifActeGarant'];
|
|
$codeTarifActePrestataire = $tarifapplique['codeTarifActePrestataire'];
|
|
$codeTarifActeClients = $tarifapplique['codeTarifActeClients'];
|
|
$codeTarifActeClientsPrestataire = $tarifapplique['codeTarifActeClientsPrestataire'];
|
|
$codeTarifActePolice = $tarifapplique['codeTarifActePolice'];
|
|
$codeTarifActePolicePrestataire = $tarifapplique['codeTarifActePolicePrestataire'];
|
|
$codeTarifActeCollege = $tarifapplique['codeTarifActeCollege'];
|
|
$codeTarifActeCollegePrestataire = $tarifapplique['codeTarifActeCollegePrestataire'];
|
|
$codeTarifActeAdherent = $tarifapplique['codeTarifActeAdherent'];
|
|
$codeTarifActeAdherentPrestataire = $tarifapplique['codeTarifActeAdherentPrestataire'];
|
|
$codeTarifActeBeneficiaire = $tarifapplique['codeTarifActeBeneficiaire'];
|
|
$codeTarifActeBeneficiairePrestataire = $tarifapplique['codeTarifActeBeneficiairePrestataire'];
|
|
|
|
$codeTarifActeApplique = $tarifapplique['codeTarifActeApplique'];
|
|
|
|
if($codeTarifActeGarant == $codeTarifActeApplique){
|
|
$applique = "GARANT";
|
|
}elseif($codeTarifActePrestataire == $codeTarifActeApplique){
|
|
$applique = "PRESTATAIRE";
|
|
}elseif($codeTarifActeClients == $codeTarifActeApplique){
|
|
$applique = "SOUSCRIPTEUR";
|
|
}elseif($codeTarifActeClientsPrestataire == $codeTarifActeApplique){
|
|
$applique = "SOUSCRIPTEUR PRESTATAIRE";
|
|
}elseif($codeTarifActePolice == $codeTarifActeApplique){
|
|
$applique = "POLICE";
|
|
}elseif($codeTarifActePolicePrestataire == $codeTarifActeApplique){
|
|
$applique = "POLICE PRESTATAIRE";
|
|
}elseif($codeTarifActeCollege == $codeTarifActeApplique){
|
|
$applique = "COLLEGE";
|
|
}elseif($codeTarifActeCollegePrestataire == $codeTarifActeApplique){
|
|
$applique = "COLLEGE PRESTATAIRE";
|
|
}elseif($codeTarifActeAdherent == $codeTarifActeApplique){
|
|
$applique = "ADHERENT";
|
|
}elseif($codeTarifActeAdherentPrestataire == $codeTarifActeApplique){
|
|
$applique = "ADHERENT PRESTATAIRE";
|
|
}elseif($codeTarifActeBeneficiaire == $codeTarifActeApplique){
|
|
$applique = "BENEFICIAIRE";
|
|
}elseif($codeTarifActeBeneficiairePrestataire == $codeTarifActeApplique){
|
|
$applique = "BENEFICIAIRE PRESTATAIRE";
|
|
}
|
|
?>
|
|
|
|
<tbody>
|
|
<?php if($codeTarifActeGarant!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("GARANT") ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeGarant']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeGarant']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeGarantNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActePrestataire!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("PRESTATAIRE") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActePrestataire']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActePrestataire']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActePrestataireNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActeClients!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("SOUSCRIPTEUR") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeClients']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeClients']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeClientsNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActeClientsPrestataire!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("SOUSCRIPTEUR PRESTATAIRE") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeClientsPrestataire']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeClientsPrestataire']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeClientsPrestataireNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActePolice!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("POLICE") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActePolice']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActePolice']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActePoliceNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActePolicePrestataire!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("POLICE PRESTATAIRE") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActePolicePrestataire']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActePolicePrestataire']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActePolicePrestataireNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActeCollege!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("COLLEGE") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeCollege']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeCollege']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeCollegeNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActeCollegePrestataire!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("COLLEGE PRESTATAIRE") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeCollegePrestataire']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeCollegePrestataire']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeCollegePrestataireNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActeAdherent!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("ADHERENT") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeAdherent']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAdherent']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAdherentNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActeAdherentPrestataire!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("ADHERENT PRESTATAIRE") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeAdherentPrestataire']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAdherentPrestataire']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAdherentPrestataireNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActeBeneficiaire!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("BENEFICIAIRE") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeBeneficiaire']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeBeneficiaire']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeBeneficiaireNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
|
|
<?php if($codeTarifActeBeneficiairePrestataire!=$codeTarifActeApplique): ?>
|
|
<tr style="background-color:white;">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-down" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _("BENEFICIAIRE PRESTATAIRE") ?> </td>
|
|
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeBeneficiairePrestataire']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Non"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeBeneficiairePrestataire']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeBeneficiairePrestataireNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="background-color:red; color:white">
|
|
<td height="30" align="center"> <i class="fa fa-arrow-right" aria-hidden="true"></i> </td>
|
|
<td height="30" align="center"> <?= _($applique) ?> </td>
|
|
<td >
|
|
<?= $tarifapplique['libelleTarifActeApplique']; ?>
|
|
</td>
|
|
|
|
<td align="center">
|
|
<?= _("Oui"); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeApplique']); ?>
|
|
</td>
|
|
|
|
<td align="right">
|
|
<?= format_N($tarifapplique['prixActeAppliqueNuitFerier']); ?>
|
|
</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
<tr>
|
|
<td colspan="6" height="5" style=""></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|