339 lines
12 KiB
PHP
339 lines
12 KiB
PHP
<?php $this->titre = "INTER-SANTE - Exclusions standards"; ?>
|
|
|
|
<div class="inter-sante-container">
|
|
<?php if (isset($_SESSION['p_lang']) && $_SESSION['p_lang']=="en_US"): ?>
|
|
<section class="exclusion-section">
|
|
<h2 class="section-title">STANDARDS EXCLUSIONS</h2>
|
|
<div class="table-responsive">
|
|
<table class="modern-table exclusions-table">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-no">No</th>
|
|
<th class="col-desc">EXCLUSIONS ARE NOT COVERED</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$english_exclusions = [
|
|
"Any voluntary check-up except for pregnancy",
|
|
"Procedure, investigations and treatment prescribed for health conditions such as infertility, impotence malformations or constitutional deformities",
|
|
"Procedure, investigations and treatment related to a voluntary abortion",
|
|
"Procedure, investigations and treatment prescribed for aesthetic purpose",
|
|
"Sexual comfort products (Condoms, contraceptive, sexual stimulants as VIAGRA and others, etc)",
|
|
"Vitamins (Except for curative purposes in case of Hypovitaminosis); Trace element (Except for curative purpose in deficiency case and Tonics, etc.",
|
|
"Prosthesis except osteosynthesis and visceral surgery implants.",
|
|
"Medical prescription exceeding a period of 30 days unless the prescriber has directed a renewals for the same time period with a maximum of six months",
|
|
"Orthodontics treatment",
|
|
"Contact lenses, Ocular implant and intra ocular lenses",
|
|
"Procedure, investigations and treatment related to Family planning",
|
|
"Procedure, investigations and treatment related to Family planning", // Duplicate?
|
|
"Procedures related to prevention such as vaccination"
|
|
];
|
|
|
|
foreach ($english_exclusions as $index => $exclusion): ?>
|
|
<tr>
|
|
<td class="text-center"><?= $index + 1 ?></td>
|
|
<td><?= $exclusion ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="authorization-section">
|
|
<h2 class="section-title">AUTHORIZATIONS</h2>
|
|
<div class="table-responsive">
|
|
<table class="modern-table authorizations-table">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-no">No</th>
|
|
<th class="col-desc">Are reimbursed if there had the prior agreement</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$english_authorizations = [
|
|
"Hepatitis virus Viral load",
|
|
"Hepatitis virus genotype",
|
|
"Hemodialysis",
|
|
"MRI, CT-Scan",
|
|
"New acts",
|
|
"Planned surgery",
|
|
"VIP Room"
|
|
];
|
|
|
|
foreach ($english_authorizations as $index => $authorization): ?>
|
|
<tr>
|
|
<td class="text-center"><?= $index + 1 ?></td>
|
|
<td><?= $authorization ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
|
|
<?php else: ?>
|
|
|
|
<section class="exclusion-section">
|
|
<h2 class="section-title">LES EXCLUSIONS NE SONT PAS COUVERTES</h2>
|
|
<div class="table-responsive">
|
|
<table class="modern-table exclusions-table">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-no">No</th>
|
|
<th class="col-desc">Description</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$french_exclusions = [
|
|
"Tout bilan de santé non motivé par une maladie déclarée sauf pour la grossesse",
|
|
"Tout les actes, examen ou traitements prescrits pour l'état de santé tels que la Stérilité, l'impuissance, les malformations ou difformités constitutionnelle",
|
|
"Tout les actes, examen ou traitements ayant un rapport avec un avortement provoqué",
|
|
"Tout les actes, examen ou traitements prescrit dans le but esthétique",
|
|
"Les produits relevant du confort sexuel (Préservatifs, contaceptifs, des stimulants sexuels, tels que le Viagra et autres, etc.)",
|
|
"Les Vitamines (Sauf dans un but curatif dans un état d'hypovitaminose), les oligoéléments (dans un but curatif dans un état carentiel), les fortifiants, etc",
|
|
"Les prothèses à l'exception des implants d'ostéosynthèse et des prothèses de chirurgie viscéral.",
|
|
"Les prescription dépassant une période de 30 jours sauf si les prescripteurs a ordonné un renouvellement pour le même délai avec une durée maximale de 6 mois",
|
|
"Les soins d'orthodontie",
|
|
"Les lentilles de contact, implants oculaires et lentilles intra oculaires.",
|
|
"Tout les actes, examen ou traitements relatifs à la planification familiale",
|
|
"Les actes relatifs à la prévention comme la vaccination",
|
|
"Les actes relatifs à la prévention comme la vaccination" // Duplicate?
|
|
];
|
|
|
|
foreach ($french_exclusions as $index => $exclusion): ?>
|
|
<tr>
|
|
<td class="text-center"><?= $index + 1 ?></td>
|
|
<td><?= $exclusion ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
|
|
<section class="authorization-section">
|
|
<h2 class="section-title">AUTHORISATIONS</h2>
|
|
<div class="table-responsive">
|
|
<table class="modern-table authorizations-table">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-no">No</th>
|
|
<th class="col-desc">Sont remboursés s'il y a eu entente préalable</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
$french_authorizations = [
|
|
"Charge viral de l'Hépatite",
|
|
"Génotype de l'Hépatite",
|
|
"Hémodialyse",
|
|
"MRI, CT-Scan",
|
|
"Actes spéciaux ou Nouveaux",
|
|
"Intervention Chirurgicales planifiées",
|
|
"Chambre VIP"
|
|
];
|
|
|
|
foreach ($french_authorizations as $index => $authorization): ?>
|
|
<tr>
|
|
<td class="text-center"><?= $index + 1 ?></td>
|
|
<td><?= $authorization ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</section>
|
|
<?php endif; ?>
|
|
</div>
|
|
|
|
<style>
|
|
/* Modern CSS styling */
|
|
.inter-sante-container {
|
|
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
color: #333;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.section-title {
|
|
background-color: #808080;
|
|
color: white;
|
|
padding: 12px 20px;
|
|
border-radius: 5px;
|
|
font-size: 1.3rem;
|
|
margin: 30px 0 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.section-title i {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.process-title {
|
|
background-color: #808080;
|
|
color: white;
|
|
padding: 12px 20px;
|
|
border-radius: 5px;
|
|
font-size: 1.3rem;
|
|
margin: 30px 0 15px;
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.process-subtitle {
|
|
color: #808080;
|
|
border-bottom: 2px solid #808080;
|
|
padding-bottom: 5px;
|
|
margin: 25px 0 15px;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
.modern-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-bottom: 30px;
|
|
box-shadow: 0 2px 3px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.modern-table th {
|
|
background-color: #f8f9fa;
|
|
color: #808080;
|
|
font-weight: 600;
|
|
padding: 12px 15px;
|
|
text-align: left;
|
|
border-bottom: 2px solid #dee2e6;
|
|
}
|
|
|
|
.modern-table td {
|
|
padding: 12px 15px;
|
|
border-bottom: 1px solid #dee2e6;
|
|
vertical-align: top;
|
|
}
|
|
|
|
.modern-table tr:nth-child(even) {
|
|
background-color: #f8f9fa;
|
|
}
|
|
|
|
.modern-table tr:hover {
|
|
background-color: #f1f3f5;
|
|
}
|
|
|
|
.col-no {
|
|
width: 10%;
|
|
text-align: center;
|
|
}
|
|
|
|
.col-desc {
|
|
width: 90%;
|
|
}
|
|
|
|
.process-steps {
|
|
padding-left: 20px;
|
|
list-style-type: none;
|
|
}
|
|
|
|
.process-steps li {
|
|
position: relative;
|
|
padding-left: 30px;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
.process-steps li:before {
|
|
content: counter(step);
|
|
counter-increment: step;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 0;
|
|
background-color: #808080;
|
|
color: white;
|
|
width: 22px;
|
|
height: 22px;
|
|
border-radius: 50%;
|
|
text-align: center;
|
|
line-height: 22px;
|
|
font-size: 0.8rem;
|
|
}
|
|
|
|
.sub-steps {
|
|
list-style-type: disc;
|
|
padding-left: 20px;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.note {
|
|
font-style: italic;
|
|
color: #6c757d;
|
|
background-color: #f8f9fa;
|
|
padding: 8px 12px;
|
|
border-radius: 4px;
|
|
border-left: 3px solid #808080;
|
|
}
|
|
|
|
.guide-download {
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.download-btn {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
background-color: #E6E1FC;
|
|
color: #808080;
|
|
padding: 12px 20px;
|
|
border-radius: 5px;
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
transition: all 0.3s;
|
|
}
|
|
|
|
.download-btn:hover {
|
|
background-color: #D1C7F9;
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
|
|
}
|
|
|
|
.download-btn i {
|
|
margin-right: 10px;
|
|
font-size: 1.2rem;
|
|
}
|
|
|
|
.scenario-card {
|
|
background-color: white;
|
|
border-radius: 8px;
|
|
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
|
|
padding: 20px;
|
|
margin-bottom: 25px;
|
|
border-left: 4px solid #808080;
|
|
}
|
|
|
|
.scenario-title {
|
|
color: #808080;
|
|
margin-top: 0;
|
|
margin-bottom: 15px;
|
|
font-size: 1.1rem;
|
|
}
|
|
|
|
/* Responsive adjustments */
|
|
@media (max-width: 768px) {
|
|
.modern-table {
|
|
display: block;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.section-title, .process-title {
|
|
font-size: 1.1rem;
|
|
padding: 10px 15px;
|
|
}
|
|
|
|
.modern-table th,
|
|
.modern-table td {
|
|
padding: 8px 10px;
|
|
font-size: 0.9rem;
|
|
}
|
|
}
|
|
</style>
|