a
This commit is contained in:
parent
c54cf84000
commit
cc1b8844b8
|
|
@ -183,5 +183,3 @@
|
|||
<?php endif; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,58 +1,73 @@
|
|||
|
||||
<div id="infosacte" style='font-size:10pt;'>
|
||||
<input class="sr-only" type="number" id="prixActe" name="prixActe" value="<?= $prixActe ?>">
|
||||
<input class="sr-only" type="number" id="prixBase" name="prixBase" value="<?= $prixBase ?>">
|
||||
<input class="sr-only" type="number" id="fraisReelBase" name="fraisReelBase" value="<?= $fraisReelBase ?>">
|
||||
<input class="sr-only" type="number" id="depassement" name="depassement" value="<?= $depassement ?>">
|
||||
<input class="sr-only" type="number" id="valeurActe" name="valeurActe" value="<?= $valeurActe ?>">
|
||||
<input class="sr-only" type="number" id="quantiteSeance" name="quantiteSeance" value="<?= $quantite ?>">
|
||||
<input class="sr-only" type="number" id="totalActe" name="totalActe" value="<?= $fraisReel ?>">
|
||||
<input class="sr-only" type="number" id="montantTm" name="montantTm" value="<?= $montantTm ?>">
|
||||
<input class="sr-only" type="number" id="aRembourser" name="aRembourser" value="<?= $aRembourser ?>">
|
||||
<input class="sr-only" type="text" id="acteExclu" name="acteExclu" value="<?= $acteExclu ?>">
|
||||
<input class="sr-only" type="text" id="ententePrealableSea" name="ententePrealableSea" value="<?= $ententePrealable ?>">
|
||||
<?php
|
||||
$prixActeModifiable = $_SESSION['p_prixActeModifiable'];
|
||||
?>
|
||||
|
||||
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="16%" >
|
||||
<input class="form-control" style="font-size:10pt; border: 0; background: transparent; text-align:center;" type="text" value="<?= _("Prix Unitaire") ?>" readonly>
|
||||
</td>
|
||||
<td width="20%" >
|
||||
<input class="sr-only" type="number" id="prixActe" name="prixActe" value="<?= $prixActe ?>">
|
||||
<input class="sr-only" type="number" id="prixBase" name="prixBase" value="<?= $prixBase ?>">
|
||||
<input class="sr-only" type="number" id="fraisReelBase" name="fraisReelBase" value="<?= $fraisReelBase ?>">
|
||||
<input class="sr-only" type="number" id="depassement" name="depassement" value="<?= $depassement ?>">
|
||||
<input class="sr-only" type="number" id="valeurActe" name="valeurActe" value="<?= $valeurActe ?>">
|
||||
<input class="sr-only" type="number" id="quantiteSeance" name="quantiteSeance" value="<?= $quantite ?>">
|
||||
<input class="sr-only" type="number" id="totalActe" name="totalActe" value="<?= $fraisReel ?>">
|
||||
<input class="sr-only" type="number" id="montantTm" name="montantTm" value="<?= $montantTm ?>">
|
||||
<input class="sr-only" type="number" id="aRembourser" name="aRembourser" value="<?= $aRembourser ?>">
|
||||
<input class="sr-only" type="text" id="acteExclu" name="acteExclu" value="<?= $acteExclu ?>">
|
||||
<input class="sr-only" type="text" id="ententePrealableSea" name="ententePrealableSea" value="<?= $ententePrealable ?>">
|
||||
<input class="sr-only" number="text" id="prixSaisi" name="prixSaisi" value="<?= $prixActe ?>">
|
||||
|
||||
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td width="16%" >
|
||||
<input class="form-control" style="font-size:10pt; border: 0; background: transparent; text-align:center;" type="text" value="<?= _("Prix Unitaire") ?>" readonly>
|
||||
</td>
|
||||
|
||||
<!--
|
||||
<td width="20%" >
|
||||
<input id="prixActe_info" name="prixActe_info" class="form-control" style="background-color: rgb(190,190,190);text-align: center; font-size:10pt;" type="text" value="<?= format_N($prixActe) ?>" readonly>
|
||||
</td>
|
||||
-->
|
||||
|
||||
<td width="20%" >
|
||||
<?php if($prixActeModifiable=="1") : ?>
|
||||
<input class="form-control" type="number" id="prixModifiable" name="prixModifiable" value="<?= $prixActe ?>" onchange="modifier_prix_acte();" >
|
||||
<input id="prixActe_info" name="prixActe_info" class="sr-only" type="text" value="<?= format_N($this->nettoyer($seance['valeurActe'])) ?>" readonly>
|
||||
<?php else: ?>
|
||||
<input id="prixActe_info" name="prixActe_info" class="form-control" style="background-color: rgb(190,190,190);text-align: center; font-size:10pt;" type="text" value="<?= format_N($prixActe) ?>" readonly>
|
||||
</td>
|
||||
<input class="sr-only" type="number" id="prixModifiable" name="prixModifiable" value="<?= $prixActe ?>" >
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
|
||||
<td width="15%" style="font-size:10pt; border: 0; background: transparent; text-align:center;"> <?= _("Nbre Séance") ?> </td>
|
||||
<td width="20%" >
|
||||
<input class="form-control" id="quantite" name="quantite" type="number" min="1" value="<?= $quantite ?>" style="text-align: center; font-size:10pt; '"
|
||||
onChange="javascript:ajaxprixseance();" >
|
||||
</td>
|
||||
<td width="15%" style="font-size:10pt; border: 0; background: transparent; text-align:center;"> <?= _("Nbre Séance") ?> </td>
|
||||
<td width="20%" >
|
||||
<input class="form-control" id="quantite" name="quantite" type="number" min="1" value="<?= $quantite ?>" style="text-align: center; font-size:10pt; '"
|
||||
onChange="javascript:ajaxprixseance();" >
|
||||
</td>
|
||||
|
||||
<td width="10%" style="font-size:10pt; border: 0; background: transparent; text-align:center;"> Total </td>
|
||||
<td width="25%" >
|
||||
<input id="fraisReelBase_info" name="fraisReel_info" class="form-control" style="background-color: rgb(190,190,190);text-align: center; font-size:10pt;'" type="text" value="<?= format_N($fraisReel) ?>" readonly >
|
||||
</td>
|
||||
</tr>
|
||||
<td width="10%" style="font-size:10pt; border: 0; background: transparent; text-align:center;"> Total </td>
|
||||
<td width="25%" >
|
||||
<input id="fraisReelBase_info" name="fraisReel_info" class="form-control" style="background-color: rgb(190,190,190);text-align: center; font-size:10pt;'" type="text" value="<?= format_N($fraisReel) ?>" readonly >
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<?php if ($acteExclu=="1"): ?>
|
||||
<input id="btn_enreg_seance" name="btn_enreg_seance" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" disabled style='font-size:10pt;' >
|
||||
<?php else: ?>
|
||||
<input id="btn_enreg_seance" name="btn_enreg_seance" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:modifierprescriptionseance();" style='font-size:10pt;' >
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td colspan="6">
|
||||
<?php if ($acteExclu=="1"): ?>
|
||||
<input id="btn_enreg_seance" name="btn_enreg_seance" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" disabled style='font-size:10pt;' >
|
||||
<?php else: ?>
|
||||
<input id="btn_enreg_seance" name="btn_enreg_seance" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:modifierprescriptionseance();" style='font-size:10pt;' >
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
</tbody>
|
||||
</table>
|
||||
<div id="div_fraisExclu">
|
||||
<input class="sr-only" type="text" id="fraisExclu" name="fraisExclu" value="0" >
|
||||
</div>
|
||||
|
||||
<?php if ($acteExclu=="1"): ?>
|
||||
<div class="alert alert-danger" style="height:38px; padding:5px;">
|
||||
<H4> <?= _("NON COUVERT !") ?> </H4>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
</tbody>
|
||||
</table>
|
||||
<div id="div_fraisExclu">
|
||||
<input class="sr-only" type="text" id="fraisExclu" name="fraisExclu" value="0" >
|
||||
</div>
|
||||
|
||||
<?php if ($acteExclu=="1"): ?>
|
||||
<div class="alert alert-danger" style="height:38px; padding:5px;">
|
||||
<H4> <?= _("NON COUVERT !") ?> </H4>
|
||||
</div>
|
||||
<?php endif; ?>
|
||||
|
|
|
|||
|
|
@ -523,9 +523,9 @@
|
|||
<td width="20%" >
|
||||
<?php if($prixActeModifiable=="1") : ?>
|
||||
<input class="form-control" type="number" id="prixModifiable" name="prixModifiable" value="<?= $prixActe ?>" onchange="modifier_prix_acte();" >
|
||||
<input class="sr-only" type="text" value="<?= format_N($this->nettoyer($seance['valeurActe'])) ?>" readonly>
|
||||
<input id="prixActe_info" name="prixActe_info" class="sr-only" type="text" value="<?= format_N($this->nettoyer($seance['valeurActe'])) ?>" readonly>
|
||||
<?php else: ?>
|
||||
<input class="form-control" style="background-color: rgb(190,190,190);text-align: center; font-size:10pt;" type="text" value="<?= format_N($prixActe) ?>" readonly>
|
||||
<input id="prixActe_info" name="prixActe_info" class="form-control" style="background-color: rgb(190,190,190);text-align: center; font-size:10pt;" type="text" value="<?= format_N($prixActe) ?>" readonly>
|
||||
<input class="sr-only" type="number" id="prixModifiable" name="prixModifiable" value="<?= $prixActe ?>" >
|
||||
<?php endif; ?>
|
||||
</td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user