Subversion Repositories SmartDukaan

Rev

Blame | 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>Delivery Note Id</th>
                                        <th>Warehouse Name</th>
                                        <th>Item Name</th>
                                        <th>Creator Email Id</th>
                                        <th>Partner Email Id</th>
                                        <th>Serial Number</th>
                                        <th>Quantity</th>
                                        <th>Created On</th>
                                </tr>
                                #if(!$adminDeliveryNotes.isEmpty())
                                #foreach( $adminDeliveryNote in $adminDeliveryNotes )
                                        <tr class="scan-out-item-details" data="$adminDeliveryNote.getDeliveryNoteId()">
                                                <td>$adminDeliveryNote.getDeliveryNoteId()</td>
                                                <td>$warehouseIdNameMap.get($adminDeliveryNote.getWarehouseId())</td>
                                                <td>$itemIdDescriptionMap.get($adminDeliveryNote.getItemId())</td>
                                                <td>$fofoIdEmailIdMap.get($adminDeliveryNote.getAdminId())</td>
                                                <td>$fofoIdEmailIdMap.get($adminDeliveryNote.getFofoId())</td>
                                                #if($adminDeliveryNote.getSerialNumber())
                                                        <td>$adminDeliveryNote.getSerialNumber()</td>
                                                #else
                                                        <td></td>
                                                #end
                                                <td>$adminDeliveryNote.getQuantity()</td>
                                                <td>$adminDeliveryNote.getFormattedCreateTimestamp()</td>
                                        </tr>
                                #end
                        #else
                                <tr>
                                        <td colspan="6" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
                                </tr>
                        #end
                        </tbody>
                </table>
        </div>
</div>