Minor enhancement in pos module
This commit is contained in:
parent
18be763bce
commit
de8b9915ee
@ -102,9 +102,11 @@ $Id$
|
|||||||
<th><?php echo $langs->trans("Stock"); ?></th>
|
<th><?php echo $langs->trans("Stock"); ?></th>
|
||||||
<th><?php echo $langs->trans("PriceUHT"); ?></th>
|
<th><?php echo $langs->trans("PriceUHT"); ?></th>
|
||||||
<th></th>
|
<th></th>
|
||||||
<th ><?php echo $langs->trans("VATRate"); ?></th>
|
|
||||||
<th><?php echo $langs->trans("Discount"); ?> (%)</th>
|
<th><?php echo $langs->trans("Discount"); ?> (%)</th>
|
||||||
<th><?php echo $langs->trans("TotalHT"); ?></th></tr>
|
<th><?php echo $langs->trans("TotalHT"); ?></th>
|
||||||
|
<th> </th>
|
||||||
|
<th><?php echo $langs->trans("VATRate"); ?></th>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td><input class="texte1" type="text" name="txtQte" value="1" onkeyup="javascript: modif();" onfocus="javascript: this.select();" /></td>
|
<td><input class="texte1" type="text" name="txtQte" value="1" onkeyup="javascript: modif();" onfocus="javascript: this.select();" /></td>
|
||||||
<!-- Affichage du stock pour l'article courant -->
|
<!-- Affichage du stock pour l'article courant -->
|
||||||
@ -114,6 +116,10 @@ $Id$
|
|||||||
<!-- Affichage du prix unitaire -->
|
<!-- Affichage du prix unitaire -->
|
||||||
<td><input class="texte1_off" type="text" name="txtPrixUnit" value="<?php echo price2num( $obj_facturation->prix(), 'MU'); ?>" disabled="disabled" /></td>
|
<td><input class="texte1_off" type="text" name="txtPrixUnit" value="<?php echo price2num( $obj_facturation->prix(), 'MU'); ?>" disabled="disabled" /></td>
|
||||||
<td><?php echo $conf->monnaie; ?></td>
|
<td><?php echo $conf->monnaie; ?></td>
|
||||||
|
<!-- Choix de la remise -->
|
||||||
|
<td><input class="texte1" type="text" name="txtRemise" value="0" onkeyup="javascript: modif();" onfocus="javascript: this.select();"/></td>
|
||||||
|
<!-- Affichage du total HT -->
|
||||||
|
<td><input class="texte1_off" type="text" name="txtTotal" value="" disabled="disabled" /></td><td><?php echo $conf->monnaie; ?></td>
|
||||||
<!-- Choix du taux de TVA -->
|
<!-- Choix du taux de TVA -->
|
||||||
<td class="select_tva">
|
<td class="select_tva">
|
||||||
<select name="selTva" onchange="javascript: modif();" >
|
<select name="selTva" onchange="javascript: modif();" >
|
||||||
@ -135,10 +141,6 @@ $Id$
|
|||||||
?>
|
?>
|
||||||
</select>
|
</select>
|
||||||
</td>
|
</td>
|
||||||
<!-- Choix de la remise -->
|
|
||||||
<td><input class="texte1" type="text" name="txtRemise" value="0" onkeyup="javascript: modif();" onfocus="javascript: this.select();"/></td>
|
|
||||||
<!-- Affichage du total HT -->
|
|
||||||
<td><input class="texte1_off" type="text" name="txtTotal" value="" disabled="disabled" /></td><td><?php echo $conf->monnaie; ?></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user