This commit is contained in:
2026-01-03 00:15:26 +00:00
parent b6cf9927ae
commit 9e0b170cab
2 changed files with 115 additions and 1 deletions

View File

@@ -1348,4 +1348,29 @@ function imprimer_cp(lienEtat)
{
}
});
}
}
function creer_avenant()
{
etat=$("#codeEtatPolice_C").val();
if (etat=="RE")
{
v_msg="Attention! Police résiliée!";
v_msgEng="Warning! Terminated policy!";
alert_ebene(v_msg, v_msgEng);
return;
}
if (etat=="AN")
{
v_msg="Attention! Police annulée!";
v_msgEng="Warning! Canceled policy!";
alert_ebene(v_msg, v_msgEng);
return;
}
window.location.assign($("#racineWeb" ).val()+"Creeravenant/");
}