67 lines
2.3 KiB
PHP
67 lines
2.3 KiB
PHP
<!-- Vendor JS -->
|
|
<script src="Bootstrap/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<script src="Bootstrap/js/jquery.min.js"></script>
|
|
<script src="Bootstrap/js/jquery-ui.js"></script>
|
|
<script src="Bootstrap/js/timer.jquery.js"></script>
|
|
|
|
<!-- DataTables, Select2, etc. -->
|
|
<script src="Bootstrap_new/datatables/datatable.min.js"></script>
|
|
<script src="Bootstrap_new/js/select2.min.js"></script>
|
|
<script src="Bootstrap_new/select/js/bootstrap-select.min.js"></script>
|
|
|
|
<!-- Chart.js -->
|
|
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
|
|
|
|
<!-- SweetAlert2 -->
|
|
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11.14.1/dist/sweetalert2.all.min.js"></script>
|
|
|
|
<!-- Toastr -->
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/latest/toastr.min.js"></script>
|
|
|
|
<!-- Fonctions métier centralisées -->
|
|
<script src="Js/fonctions.js?ver=<?= JS_VERSION ?>"></script>
|
|
<script src="<?= $_SESSION['dossierSociete'] ?>/Js/societe.js?ver=<?= JS_VERSION ?>"></script>
|
|
|
|
<!-- Datepicker selon langue -->
|
|
<?php if (est_anglophone()): ?>
|
|
<script src="Js/datepicker-eng.js?ver=<?= JS_VERSION ?>"></script>
|
|
<?php else: ?>
|
|
<script src="Js/datepicker-fr.js?ver=<?= JS_VERSION ?>"></script>
|
|
<?php endif; ?>
|
|
|
|
<script src="Js/html2pdf.js?ver=<?= JS_VERSION ?>"></script>
|
|
|
|
<!-- Template Main JS -->
|
|
<script src="Bootstrap/js/main.js?ver=<?= JS_VERSION ?>"></script>
|
|
|
|
<!-- Initialisations et rafraîchissements -->
|
|
<script>
|
|
$(document).ready(function() {
|
|
// Masquer le panneau de contexte au chargement
|
|
$("#barre_laterale_d").hide();
|
|
|
|
// Initialisation des selects
|
|
$('.select2').select2({ theme: 'bootstrap-5' });
|
|
$('.selectpicker').selectpicker();
|
|
|
|
// Rafraîchir le gabarit
|
|
//if (typeof raffraichir_gabarit === 'function') raffraichir_gabarit();
|
|
});
|
|
|
|
// Timer pour les messages
|
|
$('#timer').timer({
|
|
duration: '60s',
|
|
callback: function() {
|
|
if (typeof raffraichir_messagerie === 'function') raffraichir_messagerie();
|
|
},
|
|
repeat: true
|
|
});
|
|
|
|
// Toggle du panneau de contexte
|
|
$("#hideSideNav").on("click", function() {
|
|
$("#barre_laterale_d").hide('slide', { direction: 'right' }, 300);
|
|
});
|
|
$("#showSideNav").on("click", function() {
|
|
$("#barre_laterale_d").show('slide', { direction: 'right' }, 300);
|
|
});
|
|
</script>
|