bug correction

This commit is contained in:
pierre renaudot 2024-01-09 10:52:03 +01:00
parent fcf292e823
commit aa49401a47
3 changed files with 11 additions and 7 deletions

View File

@ -2,7 +2,7 @@
require_once(__DIR__ . '/../Class/class.newFiche.php'); require_once(__DIR__ . '/../Class/class.newFiche.php');
$typeUser = $_SESSION['uType']; //visiteur ou comptable $typeUser = $_SESSION['uType']; //visiteur ou comptable
//$typeUser = 'comptable';//$_SESSION['uType']; //visiteur ou comptable // $typeUser = 'comptable';//$_SESSION['uType']; //visiteur ou comptable
$userId = $_SESSION['uId']; //exemple: 'b34' $userId = $_SESSION['uId']; //exemple: 'b34'
/** /**

View File

@ -100,7 +100,8 @@ $(document).on('click', '.btnRefuseFraisHf', function () {
console.log(etatLigne) console.log(etatLigne)
//set on refus //set on refus
$.ajax({ $.ajax({
url: "../controleurs/c_actionFiche.php?action=refusFraisHF&fiche=" + fiche + "&idFrais=" + idFrais + "&state=" + etatLigne, // url: "../controleurs/c_actionFiche.php?action=refusFraisHF&fiche=" + fiche + "&idFrais=" + idFrais + "&state=" + etatLigne,
url: "controleurs/c_actionFiche.php?action=refusFraisHF&fiche=" + fiche + "&idFrais=" + idFrais + "&state=" + etatLigne,
method: "POST", method: "POST",
}).done(function () { }).done(function () {
location.reload(); location.reload();
@ -115,7 +116,8 @@ $(document).on('click', '.btnSuprFraisHf', function () {
idFrais = $(this).parent().parent().attr('data-id') idFrais = $(this).parent().parent().attr('data-id')
//SUPPRIME DE LA BD //SUPPRIME DE LA BD
$.ajax({ $.ajax({
url: "../controleurs/c_actionFiche.php?action=suprFraisHF&fiche=" + fiche + "&idFrais=" + idFrais, url: "controleurs/c_actionFiche.php?action=suprFraisHF&fiche=" + fiche + "&idFrais=" + idFrais,
// url: "../controleurs/c_actionFiche.php?action=suprFraisHF&fiche=" + fiche + "&idFrais=" + idFrais,
method: "POST", method: "POST",
}) })
@ -167,7 +169,8 @@ $(document).on('click', '#sendFileBtn', function () {
fiche = $('#idFiche').attr('data-id') fiche = $('#idFiche').attr('data-id')
$.ajax({ $.ajax({
url: "../controleurs/c_actionFiche.php?action=update&fiche=" + fiche, url: "controleurs/c_actionFiche.php?action=update&fiche=" + fiche,
// url: "../controleurs/c_actionFiche.php?action=update&fiche=" + fiche,
method: "POST", method: "POST",
data: data, data: data,
}).done(function () { }).done(function () {
@ -181,7 +184,7 @@ $(document).on('click', '#sendFileBtn', function () {
function calcPrixTotalFrsF() { function calcPrixTotalFrsF() {
var prixTotal = 0; var prixTotal = 0;
$('td[id^="totalFrs-"]').each(function () { $('td.mttFrsTotal').each(function () {
prixTotal += parseFloat($(this).html().replace('€', '')) prixTotal += parseFloat($(this).html().replace('€', ''))
}) })
$('.prixTotalFrsF').html('<strong>TOTAL :</strong> ' + prixTotal.toFixed(2) + ' €') $('.prixTotalFrsF').html('<strong>TOTAL :</strong> ' + prixTotal.toFixed(2) + ' €')

View File

@ -110,7 +110,7 @@
Formulaire d'ajout de frais HF Formulaire d'ajout de frais HF
--> -->
<?php <?php
if ($disabled !== 'disabled'): if ($disabled !== 'disabled' && $typeUser !== 'comptable'):
?> ?>
<tr class="newFraisForm"> <tr class="newFraisForm">
<td> <td>
@ -152,4 +152,5 @@ if ($status === 'CR'):
</button> </button>
</div> </div>
<?php endif ?> <?php endif ?>
<script src="../include/newFiche.js"></script> <script src="include/newFiche.js"></script>
<!-- <script src="../include/newFiche.js"></script> -->