a
This commit is contained in:
parent
5e1d476168
commit
a449a6c16c
|
|
@ -3242,7 +3242,6 @@ function ajax_maj_qte_medicament(idMedicament, quantite, controle)
|
|||
if (input) {
|
||||
input.focus();
|
||||
}
|
||||
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
|
|
@ -3267,6 +3266,10 @@ function ajax_maj_posologie_medicament(idMedicament, posologie, controle)
|
|||
data: donnees,
|
||||
success: function(data) {
|
||||
$("#medicaments").html(data);
|
||||
var input = document.getElementById("dureeTraitement" + idMedicament);
|
||||
if (input) {
|
||||
input.focus();
|
||||
}
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
|
|
@ -24450,6 +24453,10 @@ function ajax_maj_duree_medicament(idMedicament, duree, controle)
|
|||
data: donnees,
|
||||
success: function(data) {
|
||||
$("#medicaments").html(data);
|
||||
var input = document.getElementById("renouvelable" + idMedicament);
|
||||
if (input) {
|
||||
input.focus();
|
||||
}
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
|
|
@ -25929,8 +25936,6 @@ function maj_medecin_dentaire()
|
|||
type: 'POST',
|
||||
data: donnees,
|
||||
success: function(data) {
|
||||
|
||||
// maj_fraisexclu_cso();
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
|
|
@ -25944,7 +25949,6 @@ function maj_medecin_dentaire()
|
|||
|
||||
function ajax_maj_renouvelable_medicament(idMedicament, renouvelable, controle)
|
||||
{
|
||||
|
||||
donnees = 'idMedicament='+idMedicament+"&renouvelable="+renouvelable;
|
||||
|
||||
$.ajax({
|
||||
|
|
@ -25953,11 +25957,14 @@ function ajax_maj_renouvelable_medicament(idMedicament, renouvelable, controle)
|
|||
data: donnees,
|
||||
success: function(data) {
|
||||
$("#medicaments").html(data);
|
||||
var input = document.getElementById("frequenceRenouvellement" + idMedicament);
|
||||
if (input) {
|
||||
input.focus();
|
||||
}
|
||||
},
|
||||
error: function(data) {
|
||||
},
|
||||
complete: function() {
|
||||
//controle.focus();
|
||||
}
|
||||
});
|
||||
|
||||
|
|
@ -25965,8 +25972,6 @@ function ajax_maj_renouvelable_medicament(idMedicament, renouvelable, controle)
|
|||
|
||||
function ajax_maj_frequence_medicament(idMedicament, frequence, controle)
|
||||
{
|
||||
|
||||
|
||||
frequence=frequence.replace(",",".");
|
||||
controle.value=frequence;
|
||||
|
||||
|
|
@ -25984,7 +25989,6 @@ function ajax_maj_frequence_medicament(idMedicament, frequence, controle)
|
|||
error: function(data) {
|
||||
},
|
||||
complete: function() {
|
||||
//controle.focus();
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -892,7 +892,7 @@
|
|||
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/toastr@2.1.4/build/toastr.min.css" crossorigin="anonymous">
|
||||
<script src="https://cdn.jsdelivr.net/npm/toastr@2.1.4/build/toastr.min.js" crossorigin="anonymous"></script>
|
||||
|
||||
<script src="Js/fonctions.js?ver=2026.06.24.19"></script>
|
||||
<script src="Js/fonctions.js?ver=2026.06.24.00"></script>
|
||||
<script src="Bootstrap/js/bootstrap.min.js"></script>
|
||||
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue@3/dist/vue.global.prod.js"></script>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user