diff --git a/Class/class.newFiche.php b/Class/class.newFiche.php index 4f407f7..6693c77 100644 --- a/Class/class.newFiche.php +++ b/Class/class.newFiche.php @@ -12,30 +12,46 @@ class Class_newFiche public function listFraisForfaitaires(): array { - $req = 'SELECT "fLibelle", round("fMontant", 2) AS "fMontant", "fId" FROM forfait'; + $req = 'SELECT "fLibelle", NULL AS "lfQuantite", round("fMontant", 2) AS "fMontant", 0 AS "fTotal", "fId" FROM forfait'; $result = $this->pdo->prepare($req); $result->execute(); return $result->fetchAll(); } - public function listFraisHF():array + public function listFraisForfaitForU(string $idUser, int $month): array { - // + $req = 'SELECT "fLibelle", "lfQuantite", ROUND("fMontant", 2) AS "fMontant", ROUND("lfQuantite" * "fMontant", 2) AS "fTotal", "fId" + FROM remboursement + INNER JOIN "ligne_forfait" ON "rVisiteur" = "lfVisiteur" AND "rMois" = "lfMois" + INNER JOIN "forfait" ON "fId" = "lfForfait" + WHERE "rVisiteur" = :idUser AND "rMois" = :monthF;'; + + $result = $this->pdo->prepare($req); + $result->bindParam('idUser', $idUser); + $result->bindParam('monthF', $month); + $result->execute(); + + return $result->fetchAll(); } - public function endInter(string $id) + public function listFraisHF(string $idVisiteur, int $month): array { - $req = "UPDATE intervention - SET iHeureFin = NOW() - WHERE iCis = :cis AND iId = :idInter AND iHeureFin IS NULL"; + $req = 'SELECT to_char("lhDate", \'YYYY-mm-dd\') AS "lhDate", + "lhLibelle", ROUND("lhMontant",2) as "lhMontant", + "lhJustificatif", "lhRefus" + FROM remboursement + inner join "ligne_hors_forfait" on "rVisiteur" = "lhVisiteur" + AND "rMois" = "lhMois" + + WHERE "rVisiteur" = :idVisiteur AND "rMois" = :mois + ORDER BY "lhDate";'; - $cis = explode('-', $id)[0]; - $idInter = explode('-', $id)[1]; - - $result = PdoBD::$monPdo->prepare($req); - $result->bindParam(':cis', $cis); - $result->bindParam(':idInter', $idInter); + $result = $this->pdo->prepare($req); + $result->bindParam(':idVisiteur', $idVisiteur); + $result->bindParam(':mois', $month); $result->execute(); + + return $result->fetchAll(); } } \ No newline at end of file diff --git a/controleurs/c_nouvelleFiche.php b/controleurs/c_nouvelleFiche.php index d374d15..f28eb2b 100644 --- a/controleurs/c_nouvelleFiche.php +++ b/controleurs/c_nouvelleFiche.php @@ -2,6 +2,21 @@ require_once(__DIR__ . '/../Class/class.newFiche.php'); $newFiche = new Class_newFiche($pdo); -$typesFraisForfaitaires = $newFiche->listFraisForfaitaires(); + +$_SESSION['userId'] = 'b34'; + +/** + * Liste des frais forfaitaires du mois et de l'user :: sinon afficher les libelle + */ +$listeFraisForfaitaire = $newFiche->listFraisForfaitForU($_SESSION['userId'], '202011'); +if (count($listeFraisForfaitaire) == 0) { + $listeFraisForfaitaire = $newFiche->listFraisForfaitaires(); +} + +/** + * Listes des frais HF + */ +$listeFraisHf = $newFiche->listFraisHF($_SESSION['userId'], '202011'); + include(__DIR__ . '/../vues/v_newFiche.php'); diff --git a/include/appelIni.php b/include/appelIni.php index 03b3c5c..633f97b 100644 --- a/include/appelIni.php +++ b/include/appelIni.php @@ -1,10 +1,12 @@ -stocker le nom d'utilisateur et le mot de passe dans la classe n'est pas une très bonne idée pour le code mis en production ... Une bonne solution consiste a stocker les paramètres de connexion à la base de données dans un fichier .ini et à en restreindre l'accès. Par exemple de cette façon: +stocker le nom d'utilisateur et le mot de passe dans la classe n'est pas une très bonne idée pour le code mis en +production ... Une bonne solution consiste a stocker les paramètres de connexion à la base de données dans un fichier +.ini et à en restreindre l'accès. Par exemple de cette façon: private static $serveur='mysql:host=localhost'; - private static $bdd='dbname=gsb2021'; - private static $user='root' ; - private static $mdp='root' ; - +private static $bdd='dbname=gsb2021'; +private static $user='root' ; +private static $mdp='root' ; + gsb.ini: [database] driver = mysql @@ -12,22 +14,23 @@ host = localhost port = 3306 schema = gsb2021 username = root -password = root +password = root + - Database connection:
  • - Nouvelle Fiche + Fiche du mois
  • diff --git a/include/newFiche.js b/include/newFiche.js new file mode 100644 index 0000000..330df48 --- /dev/null +++ b/include/newFiche.js @@ -0,0 +1,110 @@ +$(document).ready(function () { + + calcPrixTotalFrsF(); + /** + * Partie enregistrement frais F + */ + $('.frsFrt').on('change', function (e) { + console.log($(this).val()) + val = $(this).val(); + val = val.replace(',', '.') + + if ($.isNumeric(val)) { + /** + * Calcul le prix de la ligne + */ + id = $(this).attr('id') + formTotal = $('#totalFrs-' + id) + mttFrs = $('#mttFrs-' + id).attr('data-price') + formTotal.html((val * mttFrs).toFixed(2) + ' €'); + + calcPrixTotalFrsF(); + } + }) + + + /** + * Enregistrement frais HF + */ + $('.validFraisHF').on('click', function () { + let date = $('#dateHf') + let libelle = $('#libelleHf') + let montant = $('#mttHf') + let canAdd = true; + + if (date.val() == "") { + canAdd = false; + date.css("border-color", "red") + } else { + date.css("border-color", "var(--bs-border-color)") + } + + if (libelle.val() == "") { + canAdd = false; + libelle.css("border-color", "red") + } else { + libelle.css("border-color", "var(--bs-border-color)") + } + + if (montant.val() == "") { + canAdd = false; + montant.css("border-color", "red") + } else { + montant.css("border-color", "var(--bs-border-color)") + } + + if (canAdd == true) { + var line = $('tr.fraisHF:first').clone(); + lastId = $('tr.fraisHF').length + /* + line.find("#dateFrsHF").html(date.val()); + line.find("#LibelleFrsHF").html(libelle.val()); + line.find("#MttFrsHF").html(parseFloat(montant.val()).toFixed(2) + ' €'); +*/ + + line.find('.btn').attr('id', 'frsSup-' + lastId) + + var line = $(''); + var tdDate = $(''); + tdDate.html(date.val()); + var tdLibelle = $(''); + tdLibelle.html(libelle.val()); + var tdMtt = $(''); + tdMtt.html(parseFloat(montant.val().replace(',', '.')).toFixed(2) + ' €'); + var tdJust = $(''); + var btn = $('') + + $(line).append(tdDate) + $(line).append(tdLibelle) + $(line).append(tdMtt) + $(line).append(tdJust) + $(line).append(btn) + + line.insertBefore('.newFraisForm') + } + }) + + +}) + +/** +* Supprimer fraisHf +*/ +$(document).on('click', '.btnSuprFraisHf', function () { + id = $(this).attr('id').split('-')[1] + console.log(id) + + $('#fraisHf-' + id).remove() +}) + +/** +* Calcul prix total +*/ +function calcPrixTotalFrsF() { + + var prixTotal = 0; + $('td[id^="totalFrs-"]').each(function () { + prixTotal += parseFloat($(this).html().replace('€', '')) + }) + $('.prixTotalFrsF').html('TOTAL : ' + prixTotal.toFixed(2) + ' €') +} \ No newline at end of file diff --git a/index.php b/index.php index de58867..9c2e07f 100644 --- a/index.php +++ b/index.php @@ -37,6 +37,8 @@ if (!isset($_REQUEST['direction'])) { + diff --git a/vues/v_newFiche.php b/vues/v_newFiche.php index f0c2847..e7605f1 100644 --- a/vues/v_newFiche.php +++ b/vues/v_newFiche.php @@ -20,23 +20,30 @@ $value): + foreach ($listeFraisForfaitaire as $key => $value): ?> - + + + € - 0€ + + € + - - + + + + @@ -57,20 +64,45 @@ Valider - - - 23/12/2023 - Salle de réunion - 130 € - facture.pdf - - - - - - + + $value): + ?> + + + + + + + + + € + + + + + + + + + + + + + + + + + - + @@ -84,4 +116,5 @@
    -
    \ No newline at end of file + + \ No newline at end of file