diff --git a/Class/class.newFiche.php b/Class/class.newFiche.php index 5ef3619..e58f3f8 100644 --- a/Class/class.newFiche.php +++ b/Class/class.newFiche.php @@ -217,6 +217,9 @@ class Class_newFiche return $result->execute(); } + /** + * Passe la + */ public function validSheet(): bool { $req = 'UPDATE remboursement diff --git a/Class/class.user.php b/Class/class.user.php index c4322de..e76baae 100644 --- a/Class/class.user.php +++ b/Class/class.user.php @@ -35,6 +35,9 @@ class Class_user return $result; } + /** + * Update les lignes remboursement de la bdd a la connexion du comptable + */ public function updateBdd(): void { $curMonth = date('Ym'); diff --git a/controleurs/c_actionFiche.php b/controleurs/c_actionFiche.php index d9e4841..38fbe2d 100644 --- a/controleurs/c_actionFiche.php +++ b/controleurs/c_actionFiche.php @@ -1,10 +1,8 @@ get_nbFicheAvalider() / $gestionFiche::$NB_LIGNES_FICHEAVALIDER); - $lesFiches = $gestionFiche->get_ficheAvalider($currentPage); - include("vues/v_fichesAvalider.php"); diff --git a/controleurs/c_gestionFiche.php b/controleurs/c_gestionFiche.php index ef6a2e1..388e0bc 100644 --- a/controleurs/c_gestionFiche.php +++ b/controleurs/c_gestionFiche.php @@ -3,7 +3,6 @@ require_once(__DIR__ . '/../Class/class.gestionFiche.php'); $typeU = $_SESSION['uType']; - $gestionFiche = new Class_gestionFiche($pdo); $LesUtilisateurs = $gestionFiche->getLesUtilisateurs(); //RENVOIE LISTE USERS @@ -26,8 +25,6 @@ if(isset($_GET['page']) && !empty($_GET['page'])){ } $pages = ceil($gestionFiche->get_nbRemboursement($userId) / $gestionFiche::$NB_LIGNES_PAGINATION); - - $lesFiches = $gestionFiche->get_Page($currentPage, $userId); include("vues/v_gestionFiches.php"); diff --git a/controleurs/c_nouvelleFiche.php b/controleurs/c_nouvelleFiche.php index 9e1760a..6467eb4 100644 --- a/controleurs/c_nouvelleFiche.php +++ b/controleurs/c_nouvelleFiche.php @@ -35,13 +35,12 @@ if (isset($_GET['currentList'])) { //Date du formulaire HF $dateFormHFMin = substr($date, 0, 4) . '-' . substr($date, 4) . '-01'; - $dateFormHFMax = date("Y-m-t", mktime(0, 0, 0, date('m', $dateTimeStamp), 1, date('Y', $dateTimeStamp))); // retourne le dernier jour du mois (30 ou 31) - + // retourne le dernier jour du mois (30 ou 31) + $dateFormHFMax = date("Y-m-t", mktime(0, 0, 0, date('m', $dateTimeStamp), 1, date('Y', $dateTimeStamp))); } //Date du header en français try { - $format = new IntlDateFormatter( 'fr_FR', IntlDateFormatter::FULL, @@ -90,5 +89,4 @@ if ( $disabled = 'disabled'; } - include(__DIR__ . '/../vues/v_newFiche.php'); diff --git a/include/menu.php b/include/menu.php index da1f506..9a1554a 100644 --- a/include/menu.php +++ b/include/menu.php @@ -78,4 +78,4 @@
- \ No newline at end of file + diff --git a/include/newFiche.js b/include/newFiche.js index fe14e9c..7ece9ad 100644 --- a/include/newFiche.js +++ b/include/newFiche.js @@ -7,7 +7,6 @@ $(document).ready(function () { * Partie enregistrement frais F */ $('.frsFrt').on('change', function (e) { - console.log($(this).val()) val = $(this).val(); val = val.replace(',', '.') @@ -97,7 +96,6 @@ $(document).on('click', '.btnRefuseFraisHf', function () { idFrais = $(this).parent().parent().attr('data-id') fiche = $('#idFiche').attr('data-id') etatLigne = $(this).attr('data-status') - console.log(etatLigne) //set on refus $.ajax({ // url: "../controleurs/c_actionFiche.php?action=refusFraisHF&fiche=" + fiche + "&idFrais=" + idFrais + "&state=" + etatLigne, @@ -197,11 +195,12 @@ $(document).on('click', '#validSheetBtn', function () { listeFraisF.push(tabData); }) - nbFraisHf = $('tr.fraisHF').length + nbFraisHf = $('tr.fraisHF').length data = { fraisF: listeFraisF, - nbJustif: nbFraisHf + nbJustif: nbFraisHf, + mttFrsHf: mttFrsHf } fiche = $('#idFiche').attr('data-id') @@ -233,12 +232,6 @@ function calcPrixTotalFrsF() { */ function calcPrixTotalFrsHorsF() { - console.log($('td#MttFrsHF').length) - - // if ($('td#MttFrsHF').length == 0) { - // vf - // } - var prixTotal = 0; $('td#MttFrsHF').each(function () { prixTotal += parseFloat($(this).html().replace('€', '')) diff --git a/include/proceduresJava.js b/include/proceduresJava.js deleted file mode 100644 index 585e0fc..0000000 --- a/include/proceduresJava.js +++ /dev/null @@ -1,100 +0,0 @@ -if(document.images) /* PRECHARGEMENT DE L IMAGE DANS LE CACHE DU NAVIGATEUR */ - { - zTous = new Image; - zTous = "images/cocheR.gif"; - } - -function format_euro(valeur) -{ -// formate un nombre avec 2 chiffres après la virgule et un espace separateur de milliers - var ndecimal=2; - var separateur=' '; - var deci=Math.round( Math.pow(10,ndecimal)*(Math.abs(valeur)-Math.floor(Math.abs(valeur)))) ; - var val=Math.floor(Math.abs(valeur)); - if ((ndecimal==0)||(deci==Math.pow(10,ndecimal))) {val=Math.floor(Math.abs(valeur)); deci=0;} - var val_format=val+""; - var nb=val_format.length; - for (var i=1;i<4;i++) - { - if (val>=Math.pow(10,(3*i))) - { - val_format=val_format.substring(0,nb-(3*i))+separateur+val_format.substring(nb-(3*i)); - } - } - if (ndecimal>0) - { - var decim=""; - for (var j=0;j<(ndecimal-deci.toString().length);j++) {decim+="0";} - deci=decim+deci.toString(); - val_format=val_format+","+deci; - } - if (parseFloat(valeur)<0) {val_format="-"+val_format;} - return val_format; -} - -// ========================= fonctions de navigation dans les listes (mois/visiteurs) -function premier(statut) - { - if (statut=='V') { - document.choixM.lstMois.value = document.choixM.lstMois.options[0].value; - document.choixM.submit();} - else { - document.choixV.lstVisiteurs.value = document.choixV.lstVisiteurs.options[0].value; - document.choixV.submit();} - } - -function precedent(statut) - { - if (statut=='V') { - document.choixM.lstMois.value = document.choixM.lstMois.options[Math.max(0,document.choixM.lstMois.selectedIndex-1)].value; - document.choixM.submit(statut);} - else { - document.choixV.lstVisiteurs.value = document.choixV.lstVisiteurs.options[Math.max(0,document.choixV.lstVisiteurs.selectedIndex-1)].value; - document.choixV.submit();} - } - -function suivant(statut) - { - if (statut=='V') { - document.choixM.lstMois.value = document.choixM.lstMois.options[(Math.min((document.choixM.lstMois.options.length-1),document.choixM.lstMois.selectedIndex+1))].value; - document.choixM.submit();} - else { - document.choixV.lstVisiteurs.value = document.choixV.lstVisiteurs.options[(Math.min((document.choixV.lstVisiteurs.options.length-1),document.choixV.lstVisiteurs.selectedIndex+1))].value; - document.choixV.submit();} - } - -function dernier(statut) - { - if (statut=='V') { - document.choixM.lstMois.value = document.choixM.lstMois.options[(document.choixM.lstMois.options.length-1)].value; - document.choixM.submit();} - else { - document.choixV.lstVisiteurs.value = document.choixV.lstVisiteurs.options[(document.choixV.lstVisiteurs.options.length-1)].value; - document.choixV.submit();} - } - -// ========================= acivation/desactivation des cases a cocher "justificatifs" pour les frais hors forfaits -function tousLesJustificatifs(frm) - { - inputs = frm.getElementsByTagName("input"); - var sens = frm.zSens.value; - for(i=0 ; i prevMonth; RETURN true; END; diff --git a/vues/v_connexion.php b/vues/v_connexion.php index 660f3db..2529bea 100644 --- a/vues/v_connexion.php +++ b/vues/v_connexion.php @@ -1,4 +1,6 @@ - +
@@ -23,8 +25,6 @@
- - @@ -44,26 +44,3 @@
- - + @@ -42,7 +42,7 @@ - + dateComplete($uneFiche['rMois']) ?> @@ -57,7 +57,7 @@ href="index.php?direction=nouvelleFiche&userId=&dateListing=">voir - + @@ -66,7 +66,7 @@ PAGINATION: --> - 1) { ?> + 1): ?>
- \ No newline at end of file + diff --git a/vues/v_homePage.php b/vues/v_homePage.php index 1bf6a42..4297ed3 100644 --- a/vues/v_homePage.php +++ b/vues/v_homePage.php @@ -1,4 +1,7 @@ -

BONJOUR NOUS SOMMES LE

+

BONJOUR + NOUS SOMMES LE + +

diff --git a/vues/v_newFiche.php b/vues/v_newFiche.php index 2dd86da..60131e6 100644 --- a/vues/v_newFiche.php +++ b/vues/v_newFiche.php @@ -157,7 +157,8 @@ if ($disabled == ''):
- @@ -166,7 +167,6 @@ if ($disabled == ''): -