Merge branch 'main' of git.ebene.ovh:ebene/radiantrh
This commit is contained in:
commit
d8bcdf9260
|
|
@ -1619,3 +1619,44 @@ function exporter_modele_assure()
|
|||
}
|
||||
});
|
||||
}
|
||||
|
||||
function selectionner_adherent(id,no)
|
||||
{
|
||||
$("#idAdherent_C" ).val(id);
|
||||
$("#numeroAdherent_C" ).val(no);
|
||||
}
|
||||
|
||||
function afficher_adherent()
|
||||
{
|
||||
debugger;
|
||||
|
||||
if ($("#numeroAdherent_C" ).val()>"")
|
||||
{
|
||||
window.location.assign($("#racineWeb" ).val()+"Ficheadherent/"+$("#numeroAdherent_C" ).val()+"/");
|
||||
}
|
||||
}
|
||||
|
||||
function afficher_adherent_id()
|
||||
{
|
||||
debugger;
|
||||
codeTypeContrat = $("#codeTypeContrat_C").val();
|
||||
if (codeTypeContrat=="F")
|
||||
{
|
||||
afficher_adherent_familiale_id();
|
||||
return;
|
||||
}
|
||||
|
||||
idAdherent = $("#idAdherent_C" ).val();
|
||||
if (idAdherent>"0")
|
||||
{
|
||||
window.location.assign($("#racineWeb" ).val()+"Ficheadherent/"+$("#idAdherent_C" ).val()+"/");
|
||||
}
|
||||
}
|
||||
|
||||
function afficher_adherent_id_plus(idAdherent)
|
||||
{
|
||||
if (idAdherent>"0")
|
||||
{
|
||||
window.location.assign($("#racineWeb" ).val()+"Ficheadherent/"+idAdherent+"/");
|
||||
}
|
||||
}
|
||||
|
|
@ -32,6 +32,10 @@
|
|||
</h4>
|
||||
</div>
|
||||
|
||||
<input type="hidden" id="prestationPossible" name="prestationPossible" value="<?= $prestationPossible ?>">
|
||||
<input type="hidden" id="codeTypeContrat_C" value="<?= $_SESSION['codeTypeContrat'] ?? '' ?>">
|
||||
|
||||
|
||||
<div class="row mb-3 g-3 mt-1">
|
||||
<div class="col-md-7">
|
||||
<div class="input-group shadow-sm">
|
||||
|
|
@ -73,7 +77,7 @@
|
|||
$estsupprimable = ($this->nettoyer($adherent['primeArchive']) == "0");
|
||||
$statusClass = $estsupprimable ? 'status-actif' : 'status-archive';
|
||||
?>
|
||||
<tr class="<?= $statusClass ?> cursor-pointer" onclick="selectionner_adherent(<?= $idAdh ?>,'<?= $noAdh ?>');">
|
||||
<tr class="<?= $statusClass ?>">
|
||||
<td class="text-center">
|
||||
<span class="badge bg-light text-dark border fw-bold"><?= $noAdh ?></span>
|
||||
</td>
|
||||
|
|
@ -93,7 +97,7 @@
|
|||
</div>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<button class="btn btn-sm btn-white border shadow-sm" onclick="afficher_adherent_id();">
|
||||
<button class="btn btn-sm btn-white border shadow-sm" onclick="afficher_adherent_id_plus(<?= $idAdh ?>);">
|
||||
<i class="fas fa-user-edit text-primary"></i>
|
||||
</button>
|
||||
</td>
|
||||
|
|
|
|||
|
|
@ -18,6 +18,7 @@
|
|||
</div>
|
||||
|
||||
<input type="hidden" id="prestationPossible" name="prestationPossible" value="<?= $prestationPossible ?>">
|
||||
<input type="hidden" id="codeTypeContrat_C" value="<?= $_SESSION['codeTypeContrat'] ?? '' ?>">
|
||||
<button class="d-none" id="btn_liste_assures" data-bs-toggle="modal" data-bs-target="#pop_liste_assures"></button>
|
||||
<button class="d-none" id="btn_exporter_liste_assures" data-bs-toggle="modal" data-bs-target="#pop_exporter_liste_assures"></button>
|
||||
<button class="d-none" id="btn_liste_assures_sans_format" data-bs-toggle="modal" data-bs-target="#pop_liste_liste_assures_sans_format"></button>
|
||||
|
|
|
|||
|
|
@ -595,7 +595,7 @@ $activeChildId = $menuData['child'];
|
|||
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
||||
|
||||
<!-- Application Scripts -->
|
||||
<script src="/Js/fonctions.js?ver=2026.01.03.21"></script>
|
||||
<script src="/Js/fonctions.js?ver=2026.01.03.32"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
setInterval(function() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user