Skip to content

Commit

Permalink
TakePOS price rounding
Browse files Browse the repository at this point in the history
  • Loading branch information
javierybar committed Jan 24, 2020
1 parent 12b4909 commit c46f255
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/takepos/receipt.php
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@
else echo $line->description;?>
</td>
<td class="right"><?php echo $line->qty;?></td>
<td class="right"><?php echo $line->total_ttc/$line->qty;?></td>
<td class="right"><?php echo price(price2num($line->total_ttc, 'MT'), 1);?></td>
<td class="right"><?php echo price($line->total_ttc);?></td>
</tr>
<?php
Expand Down

0 comments on commit c46f255

Please sign in to comment.