Assurance individuelle

This commit is contained in:
2025-12-30 08:04:49 +00:00
parent 2a2a42acfe
commit 1f44b95584
6 changed files with 220 additions and 2 deletions

View File

@@ -665,4 +665,20 @@ function college_police()
{
window.location.assign($("#racineWeb" ).val()+"Collegepolice/");
}
}
function assurance_familiale()
{
codeTypeContrat = $("#codeTypeContrat_C").val();
if (codeTypeContrat!="F")
{
v_msg="Ce n\'est pas une police FAMILIALE!";
v_msgEng="This is not a FAMILIY policy!";
alert_ebene(v_msg, v_msgEng);
return;
}
window.location.assign($("#racineWeb" ).val()+"Assuranceindividuelle/");
}