Subversion Repositories SmartDukaan

Rev

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

<div class="row">
        <div class="col-lg-12">
                <table class="table table-striped table-advance table-hover">
                        <tbody>
                                <tr>
                                        <th>Order Id</th>
                                        <th>Invoice Number</th>
                                        <th>Total Amount</th>
                                        <th>Created On</th>
                                </tr>
                                #foreach( $saleHistory in $saleHistories )
                                <tr class="sale-details" data="$saleHistory.getId()">
                                        <td>$saleHistory.getId()</td>
                                        <td>$saleHistory.getInvoiceNumber()</td>
                                        <td>$saleHistory.getTotalAmount()</td>
                                        <td>$saleHistory.getFormattedDate()</td>
                                </tr>
                        #end
                        </tbody>
            </table>
        </div>
</div>