Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<style>
    .tdInput .bootstrap-tagsinput {
        width: 100%;
    }
</style>
<div class="well" style="padding: 10px;">
    <p><b>#<span id="selectedInvoiceNumber"></span> - Order List</b></p>
    <table class="table table-striped table-advance table-hover" style="width:100%">
        <thead>
        <tr>
            <th>Id</th>
            <th>Item Id</th>
            <th>Product Desc</th>
            <th> Qty</th>
            <th>U.Price</th>
        </tr>
        </thead>
        <tbody>
            #if(!$orders.isEmpty())
                #foreach($order in $orders)
                <tr class="main-tr">
                    <td class="orderId">$order.getId()</td>
                    <td>$order.getLineItem().getItemId()</td>
                    <td>$order.getLineItem().getItemDescription()</td>
                    <td><span class="remainQty">0</span> / <span class="qty">$order.getLineItem().getQuantity()</span>
                    </td>
                    <td>$order.getLineItem().getUnitPrice()</td>
                </tr>
                #end
            #end
        </tbody>
    </table>
</div>
<div class="clearfix"></div><br>