Subversion Repositories SmartDukaan

Rev

Rev 22860 | 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>Purchase Reference</th>
                                        <th>Serialized Quantity</th>
                                        <th>Non Serialized Quantity</th>
                                        <th>GRN Completed</th>
                                        <th>Created On</th>
                                </tr>
                                 #foreach(  $grnHistory in $grnHistories )
                                        <tr class="grn-details" data="$grnHistory.getId()">
                                                <td>$grnHistory.getPurchaseReference()</td>
                                                <td>$grnHistory.getSerializedQuantity()</td>
                                                <td>$grnHistory.getNonSerializedQuantity()</td>
                                                #if($grnHistory.getCompleteTimestamp())
                                                        <td><i class="fa fa-check" aria-hidden="true"></i></td>
                                                #else
                                                        <td><i class="fa fa-times" aria-hidden="true"></i></td>
                                                #end
                                                <td>$grnHistory.getFormattedDate()</td>
                                        </tr>
                                 #end
                        </tbody>
                </table>
        </div>
</div>