BBnepal-Accounts/account/application/views/inventory/purchases/view.php

98 lines
5.6 KiB
PHP
Raw Normal View History

2024-07-10 12:43:19 +00:00
<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>
2024-07-26 07:05:15 +00:00
<p><strong>Date:</strong> <?php echo dbDate($Purchase->purchase_date); ?></p>
2024-07-10 12:43:19 +00:00
<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 class="text-right"><strong>Price</strong></p>
2024-07-10 12:43:19 +00:00
</div>
<div class="col">
<p class="text-right"><strong>Total</strong></p>
2024-07-10 12:43:19 +00:00
</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>
2024-07-16 06:58:55 +00:00
2024-07-10 12:43:19 +00:00
</div>
2024-07-16 06:58:55 +00:00
<?php $discount = $Purchase->discount ?>
2024-07-10 12:43:19 +00:00
<div class="row bill-footer">
<div class="col text-right">
<p><strong>Subtotal:</strong> <?php echo myCurrency($total,true); ?></p>
2024-08-06 07:03:20 +00:00
<?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; ?>
2024-07-16 06:58:55 +00:00
<?php $taxable = $total - $discounted ?>
2024-08-06 07:03:20 +00:00
<?php $tax = 0; ?>
<?php //print_r($Purchase->vatToggle);die; ?>
<?php if($Purchase->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; ?>
2024-07-16 06:58:55 +00:00
<p><strong>Total:</strong> <?php echo myCurrency(($taxable+$tax),true); ?></p>
2024-07-10 12:43:19 +00:00
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>