serat
This commit is contained in:
@@ -45386,4 +45386,49 @@ function retirer_un_menu_vue_profil(codeMenu)
|
||||
afficher_menu_vue_profil();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function selectionner_rejet_rh(idMvtTemp, rejet)
|
||||
{
|
||||
donnees = 'idMvtTemp='+idMvtTemp+'&rejet='+rejet;
|
||||
v_url = $("#racineWeb").val()+"Ajaxmouvementassurevalider/selectionrejet/";
|
||||
$.ajax({
|
||||
url: v_url,
|
||||
type: 'POST',
|
||||
data: donnees,
|
||||
success: function(data) {
|
||||
// alert(data);
|
||||
// $('#div_test_gabarit').html(data);
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
complete: function() {
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function maj_observation_rejet_rh(idMvtTemp)
|
||||
{
|
||||
donnees = 'idMvtTemp='+idMvtTemp;
|
||||
|
||||
$("#div_patienter").html('<div style="padding-top:80px; text-align:center; font-size:14px; color: #0088cf; "><span><i class="fa fa-spinner fa-spin fa-5x" >' + '</span></div>');
|
||||
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaxmouvementassurevalider/majobservation/",
|
||||
type : 'post',
|
||||
data: donnees,
|
||||
error: function(errorData){
|
||||
alert("Erreur : "+errorData);
|
||||
},
|
||||
success: function(data) {
|
||||
//alert("Success : "+data);
|
||||
$("#div_patienter").html('');
|
||||
|
||||
$('#div_observation_rh').html(data);
|
||||
$('#div_observation_rh').modal("show");
|
||||
},
|
||||
complete: function() {
|
||||
|
||||
}
|
||||
});
|
||||
}
|
||||
Reference in New Issue
Block a user