Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
23783 ashik.ali 1
<div class="row">
2
	<div class="col-lg-12">
3
		<table class="table table-striped table-advance table-hover">
4
			<tbody>
5
				<tr>
6
					<th>Delivery Note Id</th>
7
					<th>Warehouse Name</th>
8
					<th>Item Name</th>
9
					<th>Creator Email Id</th>
10
					<th>Partner Email Id</th>
11
					<th>Serial Number</th>
12
					<th>Quantity</th>
13
					<th>Created On</th>
14
				</tr>
15
				#if(!$adminDeliveryNotes.isEmpty())
16
	    			#foreach( $adminDeliveryNote in $adminDeliveryNotes )
17
	    				<tr class="scan-out-item-details" data="$adminDeliveryNote.getDeliveryNoteId()">
18
	    					<td>$adminDeliveryNote.getDeliveryNoteId()</td>
19
	    					<td>$warehouseIdNameMap.get($adminDeliveryNote.getWarehouseId())</td>
20
	    					<td>$itemIdDescriptionMap.get($adminDeliveryNote.getItemId())</td>
21
	    					<td>$fofoIdEmailIdMap.get($adminDeliveryNote.getAdminId())</td>
22
	    					<td>$fofoIdEmailIdMap.get($adminDeliveryNote.getFofoId())</td>
23
	    					#if($adminDeliveryNote.getSerialNumber())
24
    							<td>$adminDeliveryNote.getSerialNumber()</td>
25
    						#else
26
    							<td></td>
27
    						#end
28
	    					<td>$adminDeliveryNote.getQuantity()</td>
29
	    					<td>$adminDeliveryNote.getFormattedCreateTimestamp()</td>
30
	    				</tr>
31
	    			#end
32
    			#else
33
    				<tr>
34
    					<td colspan="6" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
35
    				</tr>
36
    			#end
37
			</tbody>
38
		</table>
39
	</div>
40
</div>