a
This commit is contained in:
parent
3566f17d67
commit
bdca68589e
|
|
@ -2,6 +2,7 @@
|
||||||
$numeroBonExamen = $prescription['numeroBonExamen'];
|
$numeroBonExamen = $prescription['numeroBonExamen'];
|
||||||
$facture = $prescription['facture'];
|
$facture = $prescription['facture'];
|
||||||
$actVisible = $_SESSION['p_actVisible'];
|
$actVisible = $_SESSION['p_actVisible'];
|
||||||
|
$prixActeModifiable = $_SESSION['p_prixActeModifiable'];
|
||||||
?>
|
?>
|
||||||
|
|
||||||
<div id="livraison">
|
<div id="livraison">
|
||||||
|
|
@ -77,7 +78,7 @@
|
||||||
<tr valign="top">
|
<tr valign="top">
|
||||||
|
|
||||||
<?php if($facture=="0") : ?>
|
<?php if($facture=="0") : ?>
|
||||||
<?php if($valeurActe=="0") : ?>
|
<?php if($valeurActe=="0" && $prixActeModifiable=="0") : ?>
|
||||||
<td width="5%" align='center'> </td>
|
<td width="5%" align='center'> </td>
|
||||||
<?php else: ?>
|
<?php else: ?>
|
||||||
<?php if($ententePrealable=='2'): ?>
|
<?php if($ententePrealable=='2'): ?>
|
||||||
|
|
@ -217,6 +218,8 @@
|
||||||
|
|
||||||
$tarif = $this->nettoyer($detaillivre['tarif']);
|
$tarif = $this->nettoyer($detaillivre['tarif']);
|
||||||
|
|
||||||
|
$valeurActe = $this->nettoyer($detaillivre['valeurActe']);
|
||||||
|
|
||||||
$nbLivre++;
|
$nbLivre++;
|
||||||
?>
|
?>
|
||||||
<?php if($typeSysteme=="1") : ?>
|
<?php if($typeSysteme=="1") : ?>
|
||||||
|
|
@ -249,9 +252,14 @@
|
||||||
<?php endif; ?>
|
<?php endif; ?>
|
||||||
|
|
||||||
<td align='center'>
|
<td align='center'>
|
||||||
<button type="button" class="span_link" title="<?= _("Voir le tarif appliqué") ?>" onClick='javascript:tarif_applique("<?= $tarif ?>");'>
|
<?php if($prixActeModifiable=="0") : ?>
|
||||||
<?= format_N($this->nettoyer($detaillivre['valeurActe'])) ?>
|
<button type="button" class="span_link" title="<?= _("Voir le tarif appliqué") ?>" onClick='javascript:tarif_applique("<?= $tarif ?>");'>
|
||||||
</button>
|
<?= format_N($valeurActe) ?>
|
||||||
|
</button>
|
||||||
|
<?php else: ?>
|
||||||
|
<INPUT class="form-control" style='text-align:center' TYPE="number" value="<?= $valeurActe ?>"
|
||||||
|
onChange="this.value=supprimer_espace_nombre(this.value);if(controle_numerique(this)){modifier_prix_examen_lab('<?=$idLivre?>', this.value);}">
|
||||||
|
<?php endif; ?>
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td align='center' > <?= format_N($this->nettoyer($detaillivre['quantite'])) ?> </td>
|
<td align='center' > <?= format_N($this->nettoyer($detaillivre['quantite'])) ?> </td>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user