Subversion Repositories SmartDukaan

Rev

Rev 26246 | Rev 26261 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 26246 Rev 26249
Line 67... Line 67...
67
    						<th>IMEI</th>
67
    						<th>IMEI</th>
68
    						<th>Stock Since</th>
68
    						<th>Stock Since</th>
69
    						<th>Activated On</th>
69
    						<th>Activated On</th>
70
    					</tr>
70
    					</tr>
71
    					#if(!$inventoryItems.isEmpty())
71
    					#if(!$inventoryItems.isEmpty())
72
	    					 #foreach( $invetoryItem in $invetoryItems )
72
	    					 #foreach( $invetoryItem in $inventoryItems )
73
	    					 	<tr data="$inventoryItem.getItemId()" class="add-to-bag" data-toggle="modal" data-target="#bagModel">
73
	    					 	<tr data="$inventoryItem.getItemId()" class="add-to-bag" data-toggle="modal" data-target="#bagModel">
74
	    					 		<td>$invetoryItem.getItemId()</td>
74
	    					 		<td>$invetoryItem.getItemId()</td>
75
	    					 		<td>$invetoryItem.getItem().getBrand()</td>
75
	    					 		<td>$invetoryItem.getItem().getBrand()</td>
76
	    					 		<td>$invetoryItem.getItem().getModelName()</td>
76
	    					 		<td>$invetoryItem.getItem().getModelName()</td>
77
	    					 		<td>$invetoryItem.getItem().getModelNumber()</td>
77
	    					 		<td>$invetoryItem.getItem().getModelNumber()</td>
Line 81... Line 81...
81
	    					 		<td>$dateTimeFormatter.format($invetoryItem.getActivationTimestamp())</td>
81
	    					 		<td>$dateTimeFormatter.format($invetoryItem.getActivationTimestamp())</td>
82
	    					 	</tr>
82
	    					 	</tr>
83
	    					 #end
83
	    					 #end
84
	    				#else
84
	    				#else
85
	    					<tr>
85
	    					<tr>
86
	    						<td colspan="7" style="text-align:center;">Great, you have no Activated IMEIs in Stock :)</td>
86
	    						<td colspan="8" style="text-align:center;">Great, you have no Activated IMEIs in Stock :)</td>
87
	    					</tr>
87
	    					</tr>
88
	    				#end
88
	    				#end
89
    				</tbody>
89
    				</tbody>
90
    			</table>
90
    			</table>
91
    		</div>
91
    		</div>