This commit is contained in:
2026-03-14 19:57:35 +00:00
parent f37ea0e738
commit 58b9197b90
5 changed files with 33 additions and 49 deletions

View File

@@ -28734,26 +28734,18 @@ function ajax_maj_qte_acte_hospitalisation(idPrestationactes, quantite, controle
donnees = 'idPrestationactes='+idPrestationactes+"&quantite="+quantite;
//donnee_a_affciher = "";
donnees = 'idPrestationactes='+idPrestationactes+"&quantite="+quantite;
//$("#div_prestations").html('<div style="text-align:center; color: #4caf50 ; font-size:14px;"><span><i class="fa fa-spinner fa-spin fa-5x" >' + '</span></div>');
$.ajax({
url: $("#racineWeb").val()+"Ajaxselectactesmedicauxhospitalisation/majquantite/",
type: 'POST',
data: donnees,
success: function(data) {
//prestations_hospitalisation();
},
error: function(data) {
},
complete: function() {
ajaxactespossibles_selection_hospitalisation();
//afficherPlafondHospitalisation();
}
});
}
@@ -28770,6 +28762,13 @@ function ajax_maj_prix_acte_hospitalisation(idPrestationactes, valeurActe, contr
if(controle_numerique(controle))
{
if (valeurActe <= "0"){
v_msg="Rien à faire!";
v_msgEng="Nothing to do!";
alert_ebene(v_msg, v_msgEng);
return;
}
donnees = 'idPrestationactes='+idPrestationactes+"&valeurActe="+valeurActe;
$.ajax({
@@ -28781,7 +28780,6 @@ function ajax_maj_prix_acte_hospitalisation(idPrestationactes, valeurActe, contr
error: function(data) {
},
complete: function() {
ajaxactespossibles_selection_hospitalisation();
}
});