This commit is contained in:
2026-01-04 06:48:46 +00:00
parent 9f1cad2494
commit 7f006e3409
3 changed files with 22 additions and 7 deletions

View File

@@ -1717,8 +1717,7 @@ function creer_beneficiaires()
// etatadh=$("#codeEtatAdherent_C").val();
etatadh=$("#codeEtatAdherent").val();
alert("etatadh = "+etatadh);
if (etatadh != "V" && etatadh != "W")
if (etatadh != "V" && etatadh != "W")
{
v_msg="Attention! cette famille n\'est pas en vigueur!";
v_msgEng="Warning! this family is not in force!";
@@ -1729,3 +1728,12 @@ function creer_beneficiaires()
window.location.assign($("#racineWeb" ).val()+"Creerbeneficiaire/");
}
function afficher_adherent_id()
{
idAdherent = $("#idAdherent_C" ).val();
if (idAdherent>"0")
{
window.location.assign($("#racineWeb" ).val()+"Ficheadherent/"+$("#idAdherent_C" ).val()+"/");
}
}