point:GWM
This commit is contained in:
parent
9eaa221b95
commit
aba9c4f67b
@ -78,7 +78,7 @@
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding: 10px;">GST :</td>
|
<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>
|
</tr>
|
||||||
<?php if ($pst != 0) { ?>
|
<?php if ($pst != 0) { ?>
|
||||||
|
|
||||||
@ -90,7 +90,7 @@
|
|||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td style="padding: 10px;">Total</td>
|
<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>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</td>
|
</td>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user