<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 dbDate($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>
                            <?php $discount = $Purchase->discount ?>
                            <div class="row bill-footer">
                                <div class="col text-right">
                                    <p><strong>Subtotal:</strong> <?php echo myCurrency($total,true); ?></p>
                                    <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 $taxable = $total - $discounted  ?>
                                    <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>
                                    <p><strong>Total:</strong> <?php echo myCurrency(($taxable+$tax),true); ?></p>
                                </div>
                            </div>


                        </div>
                    </div>
                </div>
            </div>
        </div>
    </div>
</div>