Skip to content

Commit

Permalink
Tax adjustments when editing the sale
Browse files Browse the repository at this point in the history
  • Loading branch information
Kev1nByte committed Jul 18, 2023
1 parent 90cc76e commit 1739cee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions views/modulos/editar-venta.php
Expand Up @@ -233,9 +233,9 @@

<span class="input-group-addon"><i class="ion ion-social-usd"></i></span>

<input type="text" class="form-control input-lg" id="nuevoTotalVenta" name="nuevoTotalVenta" total="" placeholder="00000" readonly required>
<input type="hidden" id="totalVenta" name="totalVenta">
<input type="text" class="form-control input-lg" id="nuevoTotalVenta" name="nuevoTotalVenta" total="<?php echo $venta["neto"]; ?>" value="<?php echo $venta["total"]; ?>" readonly required>

<input type="hidden" name="totalVenta" value="<?php echo $venta["total"]; ?>" id="totalVenta">

</div>

Expand Down

0 comments on commit 1739cee

Please sign in to comment.