commitall
This commit is contained in:
84
account/application/views/inventory/purchases/view.php
Normal file
84
account/application/views/inventory/purchases/view.php
Normal file
@ -0,0 +1,84 @@
|
||||
<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; ?> <?php showCreateButton($this->uri->segment(1) . "/" . $this->uri->segment(2) . "/add","Create New ".$pageTitle); ?></h5>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="card-body">
|
||||
|
||||
<div class="row bill-header">
|
||||
<div class="col text-center">
|
||||
<h2>Purchase Details</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row bill-details">
|
||||
<div class="col">
|
||||
<p><strong>Bill Number:</strong> <?php echo $Purchase->purchase_id; ?></p>
|
||||
<p><strong>Date:</strong> <?php echo myDate($Purchase->purchase_date); ?></p>
|
||||
<p><strong>Vendor:</strong> <?php echo $this->myaccounts->getAccountDetails($Purchase->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">
|
||||
<p><strong>Price</strong></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<p><strong>Total</strong></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php $total=0; foreach($PurchaseDetails as $PurchaseDetail):?>
|
||||
<div class="item-row">
|
||||
<div class="row">
|
||||
<div class="col">
|
||||
<p><?php echo getFieldfromValue("tbl_items","title","item_id",$PurchaseDetail->items_id); ?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<p><?php $qty=$PurchaseDetail->qty; echo $qty; ?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<p><?php $rate=$PurchaseDetail->rate; echo myCurrency($rate); ?></p>
|
||||
</div>
|
||||
<div class="col">
|
||||
<p><?php $ltotal=$rate*$qty; $total+=$ltotal; echo myCurrency($ltotal); ?></p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<?php endforeach; ?>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="row bill-footer">
|
||||
<div class="col text-right">
|
||||
<p><strong>Subtotal:</strong> <?php echo myCurrency($total,true); ?></p>
|
||||
<p><strong>Tax (13%):</strong> <?php echo myCurrency($tax=($total*13)/100,true); ?></p>
|
||||
<p><strong>Total:</strong> <?php echo myCurrency(($total+$tax),true); ?></p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
Reference in New Issue
Block a user