bbnepal new changes
This commit is contained in:
@ -29,6 +29,7 @@
|
||||
<span class="col item_name"><?php echo myLang("Particulars") ?></span>
|
||||
<span class="col item_qty"><?php echo myLang("Qty") ?></span>
|
||||
<span class="col item_rate"><?php echo myLang("Rate") ?></span>
|
||||
<span class="col item_vat"><?php echo myLang("VAT") ?></span>
|
||||
<span class="col item_amount"><?php echo myLang("Amount") ?></span>
|
||||
</div>
|
||||
<?php $l = 0;
|
||||
@ -36,8 +37,9 @@
|
||||
<div class="row ml-2 mr-2">
|
||||
<span class="col item_name"><?php echo $r->Item->title; ?></span>
|
||||
<span class="col item_qty"><?php echo $r->qty; ?></span>
|
||||
<span class="col item_rate text-right"><?php echo myCurrency($r->rate, true); ?></span>
|
||||
<span class="col item_amount text-right"><?php echo myCurrency($r->qty * $r->rate, true); ?></span>
|
||||
<span class="col item_rate"><?php echo myCurrency($r->rate, true); ?></span>
|
||||
<span class="col item_vat"><?php echo myCurrency($r->vat, true); ?></span>
|
||||
<span class="col item_amount"><?php echo myCurrency($r->qty * $r->rate, true); ?></span>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
<div class="row ml-2 mr-2" style="border-top: 1px dotted;">
|
||||
|
Reference in New Issue
Block a user