mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
Fix rounding price
This commit is contained in:
parent
23eda44ba7
commit
87f05067ca
|
|
@ -675,7 +675,7 @@ if ($sql_select) {
|
|||
print '<td colspan="3"></td>';
|
||||
print '<td class="right">'.$total_qty.'</td>';
|
||||
print '<td class="right">'.price($total_ht).'</td>';
|
||||
print '<td class="right">'.price($total_ht / (empty($total_qty) ? 1 : $total_qty)).'</td>';
|
||||
print '<td class="right">'.price(price2num($total_ht / (empty($total_qty) ? 1 : $total_qty), 'MU')).'</td>';
|
||||
print "</table>";
|
||||
print '</div>';
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user