mise à jour de la bdd pour les fiches de frais et suppression des hors forfait
This commit is contained in:
parent
f08b18fab5
commit
df7599ab9b
@ -1,9 +1,12 @@
|
||||
<?php
|
||||
|
||||
/**
|
||||
* OBJECT QUI GERE LA PARTIE AFFICHAGE D'UNE FICHE
|
||||
*/
|
||||
|
||||
class Class_newFiche
|
||||
{
|
||||
private $pdo = null;
|
||||
|
||||
private $month;
|
||||
private $userId;
|
||||
|
||||
@ -17,7 +20,8 @@ class Class_newFiche
|
||||
}
|
||||
|
||||
/**
|
||||
* Test et ajoute la fiche si elle n'existe pas
|
||||
* Test et ajoute la fiche si elle n'existe pas dans remboursement
|
||||
* et les ligneForfaitaires nulles liées
|
||||
*/
|
||||
private function existingFile(): void
|
||||
{
|
||||
@ -65,7 +69,7 @@ class Class_newFiche
|
||||
*/
|
||||
public function listFraisHF(): array
|
||||
{
|
||||
$req = 'SELECT to_char("lhDate", \'YYYY-mm-dd\') AS "lhDate",
|
||||
$req = 'SELECT "lhId", to_char("lhDate", \'YYYY-mm-dd\') AS "lhDate",
|
||||
"lhLibelle", ROUND("lhMontant",2) as "lhMontant",
|
||||
"lhJustificatif", "lhRefus"
|
||||
FROM remboursement
|
||||
@ -102,6 +106,9 @@ class Class_newFiche
|
||||
return $result->fetch()['rMontantValide'];
|
||||
}
|
||||
|
||||
/**
|
||||
* RETOURNE LE STATUS DE LA FICHE
|
||||
*/
|
||||
public function getStatus(): string
|
||||
{
|
||||
$req = 'select etat."eId" from remboursement
|
||||
@ -115,4 +122,98 @@ class Class_newFiche
|
||||
|
||||
return $result->fetch()['eId'];
|
||||
}
|
||||
|
||||
/**
|
||||
* UPDATE LES INFOS DE LA FICHE
|
||||
*/
|
||||
public function updateFile(int $nbJustif, float $mttValid): bool
|
||||
{
|
||||
$req = 'UPDATE remboursement
|
||||
SET "rNbJustificatifs" = :nbJustif,
|
||||
"rMontantValide" = :mttValid,
|
||||
"rDateModif" = NOW()
|
||||
WHERE "rVisiteur" = :idVisiteur AND "rMois" = :mois;';
|
||||
|
||||
$result = $this->pdo->prepare($req);
|
||||
|
||||
$result->bindParam(':nbJustif', $nbJustif);
|
||||
$result->bindParam(':mttValid', $mttValid);
|
||||
$result->bindParam(':idVisiteur', $this->userId);
|
||||
$result->bindParam(':mois', $this->month);
|
||||
|
||||
return $result->execute();
|
||||
}
|
||||
|
||||
/**
|
||||
* AJOUTE LES LIGNES HF
|
||||
*/
|
||||
public function addFraisHF(string $libelle, string $date, float $montant): bool
|
||||
{
|
||||
$req = 'SELECT MAX("lhId")+1
|
||||
FROM ligne_hors_forfait';
|
||||
$result = $this->pdo->prepare($req);
|
||||
$result->execute();
|
||||
$idLigne = $result->fetch()[0];
|
||||
|
||||
$req = 'INSERT INTO ligne_hors_forfait
|
||||
VALUES (:idLigne, :userId, :monthF, :libelle, :dateL, :mttF, \'true\', \'false\');';
|
||||
$result = $this->pdo->prepare($req);
|
||||
$result->bindParam(':idLigne', $idLigne);
|
||||
$result->bindParam(':libelle', $libelle);
|
||||
$result->bindParam(':dateL', $date);
|
||||
$result->bindParam(':mttF', $montant);
|
||||
$result->bindParam(':userId', $this->userId);
|
||||
$result->bindParam(':monthF', $this->month);
|
||||
|
||||
return $result->execute();
|
||||
}
|
||||
|
||||
/**
|
||||
* Refuse ou accepte un frais HF
|
||||
*/
|
||||
public function accceptFrais(int $idFrais, bool $state)
|
||||
{
|
||||
$req = 'UPDATE ligne_hors_forfait
|
||||
SET "lhRefus" = :stateF
|
||||
WHERE "rVisiteur" = :userId AND "rMois" = :monthF AND "lhId" = :idFrais;';
|
||||
$result = $this->pdo->prepare($req);
|
||||
$result->bindParam(':stateF', $state);
|
||||
$result->bindParam(':idFrais', $idFrais);
|
||||
$result->bindParam(':userId', $this->userId);
|
||||
$result->bindParam(':monthF', $this->month);
|
||||
|
||||
return $result->execute();
|
||||
}
|
||||
|
||||
/**
|
||||
* UPDATE LA LIGNE FRAIS FORFAITAIRES
|
||||
*/
|
||||
public function updateFraisF(int $qttF, int $montant, string $idForfait): bool
|
||||
{
|
||||
$req = 'UPDATE ligne_forfait
|
||||
SET "lfQuantite" = :qttF,
|
||||
"lfMontant" = :mttF
|
||||
WHERE "lfVisiteur" = :userId AND "lfMois" = :monthF AND "lfForfait" = :idForfait;';
|
||||
$result = $this->pdo->prepare($req);
|
||||
$result->bindParam(':qttF', $qttF);
|
||||
$result->bindParam(':mttF', $montant);
|
||||
$result->bindParam(':idForfait', $idForfait);
|
||||
$result->bindParam(':userId', $this->userId);
|
||||
$result->bindParam(':monthF', $this->month);
|
||||
|
||||
return $result->execute();
|
||||
}
|
||||
|
||||
/**
|
||||
* SUPPRIME LA LIGNE HF
|
||||
*/
|
||||
public function suprLigneHF(int $idLine): bool
|
||||
{
|
||||
$req = 'DELETE FROM ligne_hors_forfait
|
||||
WHERE "lhId" = :idLine';
|
||||
$result = $this->pdo->prepare($req);
|
||||
$result->bindParam(':idLine', $idLine);
|
||||
|
||||
return $result->execute();
|
||||
}
|
||||
}
|
40
controleurs/c_actionFiche.php
Normal file
40
controleurs/c_actionFiche.php
Normal file
@ -0,0 +1,40 @@
|
||||
<?php
|
||||
|
||||
//var_dump($_REQUEST['fraisHF']);
|
||||
require_once(__DIR__ . '/../Class/class.pdo.php');
|
||||
require_once(__DIR__ . '/../Class/class.newFiche.php');
|
||||
|
||||
|
||||
$id = explode('-', $_GET['fiche']); //id de la fiche "userID-date"
|
||||
$pdo = new PdoGsb;
|
||||
$pdoNewFiche = new Class_newFiche($pdo, $id[0], $id[1]);
|
||||
|
||||
switch ($_GET['action']) {
|
||||
case 'update':
|
||||
//FRAIS FORFAITAIRES
|
||||
foreach ($_REQUEST['fraisF'] as $value) {
|
||||
$pdoNewFiche->updateFraisF(
|
||||
$value['quantité'],
|
||||
intval($value['montant']),
|
||||
$value['id']
|
||||
);
|
||||
}
|
||||
//FRAIS HORS FORFAIT
|
||||
foreach ($_REQUEST['fraisHF'] as $value) {
|
||||
if ($value['id'] == NULL) {
|
||||
$pdoNewFiche->addFraisHF(
|
||||
$value['libelle'],
|
||||
$value['date'],
|
||||
$value['montant']
|
||||
);
|
||||
}
|
||||
}
|
||||
break;
|
||||
case 'suprFraisHF':
|
||||
$pdoNewFiche->suprLigneHF($_GET['idFrais']);
|
||||
break;
|
||||
|
||||
default:
|
||||
# code...
|
||||
break;
|
||||
}
|
@ -2,9 +2,9 @@
|
||||
require_once(__DIR__ . '/../Class/class.newFiche.php');
|
||||
|
||||
$typeUser = $_SESSION['uType']; //visiteur ou comptable
|
||||
//$typeUser = 'comptable';//$_SESSION['uType']; //visiteur ou comptable
|
||||
$userId = $_SESSION['uId']; //exemple: 'b34'
|
||||
|
||||
|
||||
/**
|
||||
* Gestion de la date selon la vue à afficher
|
||||
*/
|
||||
@ -12,7 +12,7 @@ if (isset($_GET['currentList'])) {
|
||||
//Date des req SQL et function
|
||||
$date = date('Ym');
|
||||
|
||||
//Date du header
|
||||
//Date du header en français
|
||||
try {
|
||||
//sudo timedatectl set-local-rtc 1
|
||||
$format = new IntlDateFormatter(
|
||||
@ -37,8 +37,9 @@ if (isset($_GET['currentList'])) {
|
||||
$date = $_GET['dateListing'];
|
||||
}
|
||||
|
||||
$date = '202404';
|
||||
$date = '202312'; //TESTVAR
|
||||
|
||||
//Instance de l'objet newFiche qui gère toute la partie bdd
|
||||
$newFiche = new Class_newFiche($pdo, $userId, $date);
|
||||
|
||||
/**
|
||||
@ -63,7 +64,7 @@ $totalFraisFiche = $newFiche->getMontantValide();
|
||||
* ETAT DE LA FICHE
|
||||
*/
|
||||
$status = $newFiche->getStatus();
|
||||
//$status = 'CR'; //créé
|
||||
$status = 'CR'; //créé
|
||||
$disabled = ($status !== 'CR') ? 'disabled' : '';
|
||||
|
||||
include(__DIR__ . '/../vues/v_newFiche.php');
|
||||
|
@ -62,7 +62,7 @@ $(document).ready(function () {
|
||||
|
||||
line.find('.btn').attr('id', 'frsSup-' + lastId)
|
||||
|
||||
var line = $('<tr id="fraisHf-' + lastId + '" class="fraisHF"></tr>');
|
||||
var line = $('<tr id="fraisHf-' + lastId + '" data-id="" class="fraisHF"></tr>');
|
||||
var tdDate = $('<th scope="row" id="dateFrsHF"></th>');
|
||||
tdDate.html(date.val());
|
||||
var tdLibelle = $('<td id="LibelleFrsHF"></td>');
|
||||
@ -89,7 +89,6 @@ $(document).ready(function () {
|
||||
updatePrixTotal();
|
||||
})
|
||||
|
||||
|
||||
})
|
||||
|
||||
/**
|
||||
@ -97,13 +96,70 @@ $(document).ready(function () {
|
||||
*/
|
||||
$(document).on('click', '.btnSuprFraisHf', function () {
|
||||
id = $(this).attr('id').split('-')[1]
|
||||
console.log(id)
|
||||
fiche = $('#idFiche').attr('data-id')
|
||||
idFrais = $(this).parent().parent().attr('data-id')
|
||||
//SUPPRIME DE LA BD
|
||||
$.ajax({
|
||||
url: "../controleurs/c_actionFiche.php?action=suprFraisHF&fiche=" + fiche + "&idFrais=" + idFrais,
|
||||
method: "POST",
|
||||
})
|
||||
|
||||
$('#fraisHf-' + id).remove()
|
||||
calcPrixTotalFrsHorsF();
|
||||
updatePrixTotal();
|
||||
})
|
||||
|
||||
/**
|
||||
* PARTIE ENVOIE DE LA FICHE
|
||||
*/
|
||||
$(document).on('click', '#sendFileBtn', function () {
|
||||
|
||||
//FRAIS FORFAITAIRES
|
||||
var listeFraisF = []
|
||||
$('tr.fraisForfaitaire').each(function () {
|
||||
quantite = parseInt($(this).find('.frsFrt').val())
|
||||
montant = parseFloat($(this).find('.mttFrsTotal').html())
|
||||
id = $(this).attr('data-id')
|
||||
|
||||
tabData = {
|
||||
'quantité': quantite,
|
||||
'montant': montant,
|
||||
'id': id
|
||||
}
|
||||
listeFraisF.push(tabData);
|
||||
})
|
||||
|
||||
//FRAIS HF
|
||||
var listeFraisHf = []
|
||||
$('tr.fraisHF').each(function () {
|
||||
date = $(this).find('#dateFrsHF').html()
|
||||
libelle = $(this).find('#LibelleFrsHF').html()
|
||||
montant = parseFloat($(this).find('#MttFrsHF').html())
|
||||
id = $(this).attr('data-id')
|
||||
|
||||
tabData = {
|
||||
'date': date,
|
||||
'libelle': libelle,
|
||||
'montant': montant,
|
||||
'id': id
|
||||
}
|
||||
listeFraisHf.push(tabData);
|
||||
})
|
||||
data = {
|
||||
fraisF: listeFraisF,
|
||||
fraisHF: listeFraisHf
|
||||
}
|
||||
fiche = $('#idFiche').attr('data-id')
|
||||
|
||||
$.ajax({
|
||||
url: "../controleurs/c_actionFiche.php?action=update&fiche=" + fiche,
|
||||
method: "POST",
|
||||
data: data,
|
||||
}).done(function () {
|
||||
location.reload();
|
||||
})
|
||||
})
|
||||
|
||||
/**
|
||||
* Calcul prix total frais forfaitaires
|
||||
*/
|
||||
|
55
sqlFunction.sql
Normal file
55
sqlFunction.sql
Normal file
@ -0,0 +1,55 @@
|
||||
|
||||
--Fonction pour créer une fiche si celle-ci n'existe pas
|
||||
CREATE OR REPLACE FUNCTION newRemboursement(userId CHAR(10), monthFile CHAR(10)) RETURNS int AS $$
|
||||
DECLARE
|
||||
returnValue INT;
|
||||
forfaitRecord RECORD;
|
||||
BEGIN
|
||||
SELECT COUNT(*) INTO returnValue
|
||||
FROM remboursement
|
||||
WHERE "rVisiteur" = userId AND "rMois" = monthFile;
|
||||
|
||||
IF returnValue = 0 THEN
|
||||
-- Ajoute une nouvelle ligne à la table remboursement
|
||||
INSERT INTO remboursement
|
||||
VALUES(userId, monthFile, 0, 0, CURRENT_DATE, 'CR');
|
||||
|
||||
-- Parcours des lignes de la table forfait pour insérer dans ligne_hors_forfait
|
||||
FOR forfaitRecord IN SELECT * FROM forfait LOOP
|
||||
INSERT INTO ligne_forfait
|
||||
VALUES(userId, monthFile, forfaitRecord."fId", 0, 0);
|
||||
END LOOP;
|
||||
|
||||
-- Mettre à jour la valeur de returnValue après l'insertion
|
||||
returnValue := 1; -- Valeur pour indiquer qu'une ligne a été insérée
|
||||
END IF;
|
||||
|
||||
RETURN returnValue;
|
||||
END;
|
||||
$$ LANGUAGE 'plpgsql';
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
--AJOUTE LES LIGNES HF
|
||||
INSERT ligne_hors_forfait
|
||||
("lhVisiteur", "lhMois", "lhLibelle", "lhDate", "lhMontant", "lhJustificatif", "lhRefus")
|
||||
VALUES (:userId, :monthF, :libelle, :dateL, :mttF, 'true', 'false');
|
||||
|
||||
--UPDATE LES LIGNES HF SI REFUS
|
||||
UPDATE ligne_hors_forfait
|
||||
SET "lhRefus" = 'true'
|
||||
WHERE "rVisiteur" = '' AND "rMois" = '' AND "lhId" = '';
|
||||
|
||||
--UPDATE LES LIGNE FORFAIT
|
||||
UPDATE ligne_forfait
|
||||
SET "lfQuantite" = :qttF,
|
||||
"lfMontant" = :mttF
|
||||
WHERE "rVisiteur" = :userId AND "rMois" = :monthF AND "lfForfait" = :idForfait;
|
||||
|
||||
|
||||
|
@ -1,24 +0,0 @@
|
||||
|
||||
--Fonction pour créer une fiche si celle-ci n'existe pas
|
||||
|
||||
CREATE OR REPLACE FUNCTION newRemboursement(userId CHAR(10), monthFile CHAR(10)) RETURNS int AS $$
|
||||
DECLARE
|
||||
returnValue INT;
|
||||
BEGIN
|
||||
SELECT COUNT(*) INTO returnValue
|
||||
FROM remboursement
|
||||
WHERE "rVisiteur" = userId AND "rMois" = monthFile;
|
||||
|
||||
IF returnValue = 0 THEN
|
||||
-- Ajoute une nouvelle ligne à la table remboursement
|
||||
INSERT INTO remboursement
|
||||
VALUES(userId, monthFile, 0, 0, CURRENT_DATE, 'CR');
|
||||
|
||||
-- Mettre à jour la valeur de returnValue après l'insertion
|
||||
returnValue := 1; -- Valeur pour indiquer qu'une ligne a été insérée
|
||||
END IF;
|
||||
|
||||
RETURN returnValue;
|
||||
END;
|
||||
$$ LANGUAGE 'plpgsql';
|
||||
|
@ -4,6 +4,9 @@
|
||||
<p>Mois de
|
||||
<?= $dateHeader ?>
|
||||
</p>
|
||||
<p class="color-grey" id='idFiche' data-id="<?= $userId . '-' . $date ?>">
|
||||
ID: <?= $userId . '-' . $date ?>
|
||||
</p>
|
||||
</center>
|
||||
<br>
|
||||
<!--
|
||||
@ -24,18 +27,18 @@
|
||||
<?php
|
||||
foreach ($listeFraisForfaitaire as $key => $value):
|
||||
?>
|
||||
<tr>
|
||||
<tr data-id="<?= $value['fId'] ?>" class="fraisForfaitaire">
|
||||
<th scope="row">
|
||||
<?= $value['fLibelle'] ?>
|
||||
</th>
|
||||
<td>
|
||||
<input type="text" name="fraisForfait-<?= $value['fId'] ?>" class="form-control frsFrt"
|
||||
<input type="text" name="fraisForfait" class="form-control frsFrt"
|
||||
id="<?= $key ?>" value="<?= $value['lfQuantite'] ?>" <?= $disabled ?>>
|
||||
</td>
|
||||
<td id="mttFrs-<?= $key ?>" data-price="<?= $value['fMontant'] ?>">
|
||||
<?= $value['fMontant'] ?> €
|
||||
</td>
|
||||
<td id="totalFrs-<?= $key ?>">
|
||||
<td class="mttFrsTotal" id="totalFrs-<?= $key ?>">
|
||||
<?= $value['fTotal'] ?>€
|
||||
</td>
|
||||
</tr>
|
||||
@ -70,7 +73,8 @@
|
||||
<?php
|
||||
foreach ($listeFraisHf as $key => $value):
|
||||
?>
|
||||
<tr id="fraisHf-<?= $key ?>" class="fraisHF <?= $value['lhRefus'] == 1 ? 'table-danger' : '' ?>">
|
||||
<tr id="fraisHf-<?= $key ?>" data-id="<?= $value['lhId'] ?>" class="fraisHF <?= $value['lhRefus'] == 1 ? 'table-danger' : '' ?>"
|
||||
data-id="<?= $value['lhId'] ?>">
|
||||
<th scope="row" id="dateFrsHF">
|
||||
<?= $value['lhDate'] ?>
|
||||
</th>
|
||||
@ -86,11 +90,13 @@
|
||||
<td>
|
||||
<?php
|
||||
if ($typeUser === 'comptable') { ?>
|
||||
<button type="button" class="btn btn-outline-primary btnRefuseFraisHf" id="frsSup-<?= $key ?>" <?= $disabled ?>>
|
||||
<button type="button" class="btn btn-outline-primary btnRefuseFraisHf" id="frsSup-<?= $key ?>"
|
||||
<?= $disabled ?>>
|
||||
Refuser
|
||||
</button>
|
||||
<?php } elseif ($typeUser === 'visiteur') { ?>
|
||||
<button type="button" class="btn btn-outline-primary btnSuprFraisHf" id="frsSup-<?= $key ?>" <?= $disabled ?>>
|
||||
<button type="button" class="btn btn-outline-primary btnSuprFraisHf" id="frsSup-<?= $key ?>"
|
||||
<?= $disabled ?>>
|
||||
Supprimer
|
||||
</button>
|
||||
<?php } ?>
|
||||
@ -148,7 +154,7 @@
|
||||
if ($status === 'CR'):
|
||||
?>
|
||||
<div class="col-3 d-flex mx-auto my-5 justify-content-center">
|
||||
<button type="button" class="btn btn-outline-primary btn-lg" data-uType="<?= $typeUser ?>">Envoyer la Fiche
|
||||
<button type="button" class="btn btn-outline-primary btn-lg" id="sendFileBtn" data-uType="<?= $typeUser ?>">Envoyer la Fiche
|
||||
</button>
|
||||
</div>
|
||||
<?php endif ?>
|
||||
|
Loading…
x
Reference in New Issue
Block a user