Subversion Repositories SmartDukaan

Rev

Rev 32145 | Rev 33727 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="row">

    <div>
        <p style="font-size: 25px;text-align: center; font-weight: bold; text-decoration-line: underline;">
            From $warehouse to $vendor.getName() </p>
    </div>

</div>


<div class="row">

    <div class="col-lg-1 form-group">
        <input class="form-control btn btn-primary addRowInPurchaseOrder" type="button" value="Add Item">
    </div>

</div>


<div class="row">
    <div class="col-lg-12">
        <table class="table table-border table-condensed table-bordered" id="purchase-order-table" style="width:100%">
            <thead>
            <tr>

                <th>Product Name</th>
                <th>Qty</th>
                <th>Transfer Price</th>
                <th>Total Value</th>

            </tr>
            </thead>
            <tbody>
            </tbody>
        </table>

    </div>
</div>

<div class="row">

    <div class="col-lg-2 form-group">
        <input class="form-control btn btn-primary createPurchaseOrder" type="button"
               value="Create and Save Purchase Order">
    </div>

    <div class="col-lg-2 form-group">
        <input class="form-control btn btn-primary createSendPurchaseOrder" type="button"
               value="Create and Send Purchase Order">
    </div>

</div>

<script type="text/javascript">
    $('.addRowInPurchaseOrder').ready(function () {
        $('.addRowInPurchaseOrder').click();
    });
</script>