a
This commit is contained in:
parent
8abdecea6b
commit
f1a4275a56
|
|
@ -218,7 +218,7 @@ function alert_ebene(p_msg, p_msg_eng)
|
|||
* CONFIRMATION
|
||||
* Affiche une boîte de dialogue Oui/Non et retourne une promesse.
|
||||
*/
|
||||
/*
|
||||
|
||||
function confirm_ebene(p_msg, p_msg_eng) {
|
||||
const codeLangue = $("#codeLangue").val();
|
||||
const message = (codeLangue === "en_US") ? p_msg_eng : p_msg;
|
||||
|
|
@ -231,7 +231,8 @@ function confirm_ebene(p_msg, p_msg_eng) {
|
|||
cancelButtonText: codeLangue === "en_US" ? 'No' : 'Non'
|
||||
}).then(result => result.isConfirmed);
|
||||
}
|
||||
*/
|
||||
|
||||
/*
|
||||
function confirm_ebene(p_msg, p_msg_eng)
|
||||
{
|
||||
codeLangue = $("#codeLangue").val();
|
||||
|
|
@ -245,7 +246,7 @@ function confirm_ebene(p_msg, p_msg_eng)
|
|||
return confirm(p_msg);
|
||||
}
|
||||
}
|
||||
|
||||
*/
|
||||
|
||||
/**
|
||||
* SAISIE TEXTE (PROMPT)
|
||||
|
|
@ -3067,3 +3068,28 @@ function incorporer_assures_inmportes()
|
|||
}
|
||||
*/
|
||||
}
|
||||
|
||||
function afficher_police_id()
|
||||
{
|
||||
idPolice=$("#idPolice_C" ).val();
|
||||
|
||||
if (idPolice>"")
|
||||
{
|
||||
ajax_context_police_afficher(idPolice);
|
||||
}
|
||||
}
|
||||
|
||||
function ajax_context_police_afficher(idPolice)
|
||||
{
|
||||
donnees = 'idPolice='+idPolice;
|
||||
$.ajax({
|
||||
url: $("#racineWeb").val()+"Ajaxcontextpolice/",
|
||||
type : 'post',
|
||||
data: donnees,
|
||||
error: function(errorData) {
|
||||
},
|
||||
complete: function() {
|
||||
window.location.assign($("#racineWeb" ).val()+"Fichepolice/");
|
||||
}
|
||||
});
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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.59"></script>
|
||||
<script src="/Js/fonctions.js?ver=2026.01.04.61"></script>
|
||||
|
||||
<script type="text/javascript">
|
||||
raffraichier_gabarit();
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user