96 lines
5.6 KiB
PHP
96 lines
5.6 KiB
PHP
<div class="content-wrapper">
|
|
|
|
<div class="content">
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div class="col">
|
|
|
|
<div class="card card-primary card-outline">
|
|
<div class="card-header">
|
|
|
|
<h5 class="m-0"><?php echo $pageTitle; ?> <a href="<?php echo site_url($this->uri->segment(1) . "/" . $this->uri->segment(2) . "/create"); ?>" class="btn btn-sm btn-primary float-right">Create New <?php echo $pageTitle; ?></a></h5>
|
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
|
|
|
<div class="row bill-header">
|
|
<div class="col text-center">
|
|
<h2>Sales Details</h2>
|
|
</div>
|
|
</div>
|
|
<div class="row bill-details">
|
|
<div class="col">
|
|
<p><strong>Bill Number:</strong> <?php echo $Sales->sales_id; ?></p>
|
|
<p><strong>Date:</strong> <?php echo dbDate($Sales->sales_date); ?></p>
|
|
<p><strong>Vendor:</strong> <?php echo $this->myaccounts->getAccountDetails($Sales->accounts_id)->account_name; ?></p>
|
|
</div>
|
|
|
|
</div>
|
|
<div class="row bill-items">
|
|
<div class="col">
|
|
<div class="item-row">
|
|
<div class="row">
|
|
<div class="col">
|
|
<p><strong>Item</strong></p>
|
|
</div>
|
|
<div class="col">
|
|
<p><strong>Quantity</strong></p>
|
|
</div>
|
|
<div class="col text-right">
|
|
<p><strong>Price</strong></p>
|
|
</div>
|
|
<div class="col text-right">
|
|
<p><strong>Total</strong></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php $total=0; foreach($SalesDetails as $SalesDetail): if($SalesDetail->items_id!=""):?>
|
|
<div class="item-row">
|
|
<div class="row">
|
|
<div class="col">
|
|
<p><?php echo getFieldfromValue("tbl_items","title","item_id",$SalesDetail->items_id); ?></p>
|
|
</div>
|
|
<div class="col">
|
|
<p><?php $qty=$SalesDetail->qty; echo $qty; ?></p>
|
|
</div>
|
|
<div class="col">
|
|
<p><?php $rate=$SalesDetail->rate; echo myCurrency($rate); ?></p>
|
|
</div>
|
|
<div class="col">
|
|
<p><?php $ltotal=$rate*$qty; $total+=$ltotal; echo myCurrency($ltotal); ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<?php endif; endforeach; ?>
|
|
<?php $discount = $Sales->discount ?>
|
|
</div>
|
|
</div>
|
|
<div class="row bill-footer">
|
|
<div class="col text-right">
|
|
<p><strong>Subtotal:</strong> <?php echo myCurrency($total,true); ?></p>
|
|
<?php $discounted = 0; ?>
|
|
<?php if($discount > 0): ?>
|
|
<p><strong>Discount percent:</strong> <?php echo myCurrency($discount,true); ?></p>
|
|
<?php $discounted = ($total*$discount/100) ?>
|
|
<p><strong>Discount amount:</strong> <?php echo myCurrency($discounted,true); ?></p>
|
|
<?php endif; ?>
|
|
<?php $taxable = $total - $discounted ?>
|
|
<?php $tax = 0; ?>
|
|
<?php //print_r($Purchase->vatToggle);die; ?>
|
|
<!-- <?php //if($Sales->vatToggle != 1): ?> -->
|
|
<p><strong>Taxable amount:</strong> <?php echo myCurrency($taxable,true); ?></p>
|
|
<p><strong>Tax (13%):</strong> <?php echo myCurrency($tax=($taxable*13)/100,true); ?></p>
|
|
<!-- <?php //endif; ?> -->
|
|
<p><strong>Total:</strong> <?php echo myCurrency(($taxable+$tax),true); ?></p>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|