point:GWM

This commit is contained in:
sriramv 2023-07-19 19:15:43 +05:30
parent 9eaa221b95
commit aba9c4f67b

View File

@ -78,7 +78,7 @@
<?php } ?>
<tr>
<td style="padding: 10px;">GST :</td>
<td> <span class="price-symbol">$</span><?= round($Subtotal * $gst / 100 , 2); ?></td>
<td> <span class="price-symbol">$</span><?php $number = $Subtotal * $gst / 100; echo number_format($number, 2, '.', ''); ?></td>
</tr>
<?php if ($pst != 0) { ?>
@ -90,7 +90,7 @@
<tr>
<td style="padding: 10px;">Total</td>
<td class="action_head"> <span class="price-symbol ">$</span><?= round( ( $Subtotal + (($Subtotal * ($gst + $pst) ) / 100) ) , 2 ); ?></td>
<td class="action_head"> <span class="price-symbol ">$</span><?php $number = ( $Subtotal + (($Subtotal * ($gst + $pst) ) / 100) ); echo number_format($number, 2, '.', ''); ?></td>
</tbody>
</table>
</td>