This commit is contained in:
2026-01-03 13:20:51 +00:00
parent cc232b0744
commit 2479b7876e
2 changed files with 31 additions and 1 deletions

View File

@@ -1619,3 +1619,33 @@ function exporter_modele_assure()
}
});
}
function selectionner_adherent(id,no)
{
$("#idAdherent_C" ).val(id);
$("#numeroAdherent_C" ).val(no);
}
function afficher_adherent()
{
if ($("#numeroAdherent_C" ).val()>"")
{
window.location.assign($("#racineWeb" ).val()+"Ficheadherent/"+$("#numeroAdherent_C" ).val()+"/");
}
}
function afficher_adherent_id()
{
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()+"/");
}
}