a
This commit is contained in:
parent
7d4110106c
commit
4de26ac2e5
|
|
@ -2368,3 +2368,51 @@ function filtrergenreconjoint()
|
|||
$('#sexe').enable();
|
||||
}
|
||||
|
||||
|
||||
function prorater_prime_beneficiaire()
|
||||
{
|
||||
idAvenant = $("#idAvenant").val();
|
||||
|
||||
if(idAvenant<=" ")
|
||||
{
|
||||
v_msg="Veuillez sélectionner un avenant!";
|
||||
v_msgEng="Please select an Amendment!";
|
||||
alert_ebene(v_msg, v_msgEng);
|
||||
|
||||
$("#idAvenant").focus();
|
||||
return;
|
||||
}
|
||||
|
||||
codeLienParente=$("#codeLienParente").val();
|
||||
|
||||
if (codeLienParente=="A")
|
||||
{
|
||||
v_msg="Veuillez revoir le lien de parenté!";
|
||||
v_msgEng="Please review the relationship";
|
||||
alert_ebene(v_msg, v_msgEng);
|
||||
$("#codeLienParente").focus();
|
||||
return;
|
||||
}
|
||||
|
||||
dateEntree=$("#dateEntree").val();
|
||||
fraisCarte=$("#fraisCarte").val();
|
||||
prorata=$("#prorata").val();
|
||||
|
||||
donnees = '&dateEntree='+dateEntree;
|
||||
donnees += '&fraisCarte='+fraisCarte;
|
||||
donnees += '&prorata='+prorata;
|
||||
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaxproraterprimebeneficiaire/",
|
||||
type : 'post',
|
||||
data: donnees,
|
||||
error: function(errorData) {
|
||||
},
|
||||
success: function(data) {
|
||||
$("#div_prime").html(data);
|
||||
},
|
||||
complete: function() {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -635,7 +635,7 @@ $photoAssureCrypte = $_SESSION['photoAssureCrypte'];
|
|||
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
|
||||
|
||||
<!-- Application Scripts -->
|
||||
<script src="/Js/fonctions.js?ver=2026.01.04.31"></script>
|
||||
<script src="/Js/fonctions.js?ver=2026.01.04.32"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
raffraichier_gabarit();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user