radiantprestation/Vue/Ajaxchargeractesmedicaux/index.php
2026-03-03 16:48:26 +00:00

26 lines
905 B
PHP
Executable File

<?php
if(!empty($actes)) {
?>
<ul id="element-list">
<?php
foreach($actes as $v) {
$tab = explode(" <==> ",$v["libelle"]);
if (isset($tab[2]) && ($tab[2] == "Garanti" || $tab[2] == "Guaranteed")){
$style = "background-color: red; color:white;";
}elseif (isset($tab[3]) && ($tab[3] == "Demander Accord" || $tab[3] == "Request Approval")){
$style = "background-color: yellow;";
}else{
$style = "background-color: white;";
}
?>
<li style="<?php echo $style; ?>" onClick="selectElement('<?php echo $v["libelle"]; ?>');add_selected_acte_medicaux('<?php echo $v["code"]." <==> ".$v["libelle"]; ?>');"><?php echo $v["libelle"]; ?></li>
<?php } ?>
</ul>
<?php
} else{
?>
<marquee behavior="scroll" direction="left" scrollamount="10" style="color:white; background-color:red; font-size:14pt; font-weight:bold;">
<?= _("L'acte saisi n'existe pas.") ?>
</marquee>
<?php } ?>