Subversion Repositories SmartDukaan

Rev

Rev 23342 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 23342 Rev 23786
Line 50... Line 50...
50
	         <div class="row">
50
	         <div class="row">
51
	    		<div class="col-lg-12">
51
	    		<div class="col-lg-12">
52
	    			<table class="table table-striped table-advance table-hover">
52
	    			<table class="table table-striped table-advance table-hover">
53
	    				<tbody>
53
	    				<tbody>
54
	    					<tr>
54
	    					<tr>
55
	    						<th>Item Code</th>
-
 
56
	    						<th>Brand</th>
55
	    						<th>Id</th>
57
	    						<th>Model Name</th>
-
 
58
	    						<th>Model Number</th>
-
 
59
	    						<th>Color</th>
56
	    						<th>Description
60
	    						<th>Type</th>
57
	    						<th>Type</th>
61
	    						<th>Quantity</th>
58
	    						<th>Quantity</th>
-
 
59
	    						<th>Allocated Quantity</th>
62
	    					</tr>
60
	    					</tr>
63
	    					#if($currentInventorySnapshot.size() > 0)
61
	    					#if($currentInventorySnapshot.size() > 0)
64
		    					 #foreach( $inventorySnapshot in $currentInventorySnapshot )
62
		    					 #foreach( $inventorySnapshot in $currentInventorySnapshot )
65
		    					 	<tr>
63
		    					 	<tr>
66
		    					 		<td>$inventorySnapshot.getItemId()</td>
64
		    					 		<td>$inventorySnapshot.getItemId()</td>
67
		    					 		<td>$inventorySnapshot.getItem().getBrand()</td>
-
 
68
		    					 		<td>$inventorySnapshot.getItem().getModelName()</td>
-
 
69
		    					 		<td>$inventorySnapshot.getItem().getModelNumber()</td>
65
		    					 		<td>$inventorySnapshot.getItem().getItemDescription()</td>
70
		    					 		<td>$inventorySnapshot.getItem().getColor()</td>
-
 
71
		    					 		<td>$inventorySnapshot.getItem().getType()</td>
66
		    					 		<td>$inventorySnapshot.getItem().getType()</td>
72
		    					 		<td>$inventorySnapshot.getAvailability()</td>
67
		    					 		<td>$inventorySnapshot.getAvailability()</td>
-
 
68
			    						<td>Allocated Quantity</td>
73
		    					 	</tr>
69
		    					 	</tr>
74
		    					 #end
70
		    					 #end
75
		    				#else
71
		    				#else
76
		    					<tr>
72
		    					<tr>
77
		    						<td colspan="7" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
73
		    						<td colspan="7" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>