Subversion Repositories SmartDukaan

Rev

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

Rev 27081 Rev 27088
Line 52... Line 52...
52
					<div class="col-lg-2 form-group">
52
					<div class="col-lg-2 form-group">
53
					   	<input placeholder="Minimum Quantity" id="minimumQuantity" name="minimumQuantity" type="number" value="" class="form-control input-sm">
53
					   	<input placeholder="Minimum Quantity" id="minimumQuantity" name="minimumQuantity" type="number" value="" class="form-control input-sm">
54
					</div>
54
					</div>
55
					
55
					
56
						<div class="col-lg-2">
56
						<div class="col-lg-2">
57
						<select class="form-control input-sm" id = "retailerType" name = "retailerType">
57
						<select class="form-control input-sm" id = "regionType" name = "regionType">
58
							<option value="" disabled selected>Retailer Type</option>
58
							<option value="" disabled selected>Region Type</option>
59
							#foreach($partnerType in $partnerType)
59
							#foreach($region in $regions)
60
								<option value="$partnerType">$partnerType</option>
60
								<option value="$region.getId()">$region.getName()</option>
61
							#end
61
							#end
62
		             	</select>
62
		             	</select>
63
					</div>
63
					</div>
64
					
64
					
65
					<div class="col-lg-2">
65
					<div class="col-lg-2">
Line 78... Line 78...
78
	    			<tbody>
78
	    			<tbody>
79
	    				<tr>
79
	    				<tr>
80
	    					<th>Item Name</th>
80
	    					<th>Item Name</th>
81
	    					<th>Recommended Quantity </th>
81
	    					<th>Recommended Quantity </th>
82
	    					<th>Minimum Quantity</th>
82
	    					<th>Minimum Quantity</th>
83
	    					<th>PartnerType</th>
83
	    					<th>Region</th>
84
	    					<th>Created</th>
84
	    					<th>Created</th>
85
	    					<th>Remove</th>
85
	    					<th>Remove</th>
86
	    				</tr>
86
	    				</tr>
87
	    				#if(!$focusedModels.isEmpty())
87
	    				#if(!$focusedModels.isEmpty())
88
			    		 #foreach( $request in $focusedModels )
88
			    		 #foreach( $request in $focusedModels )
Line 93... Line 93...
93
			    			 ($itemMap.get($request.getCatalogId()).getCatalogItemId())
93
			    			 ($itemMap.get($request.getCatalogId()).getCatalogItemId())
94
			    			 </td>
94
			    			 </td>
95
			    			 <td>$request.getRecommendedQty()</td>
95
			    			 <td>$request.getRecommendedQty()</td>
96
			    			 <td>$request.getMinimumQty()</td>
96
			    			 <td>$request.getMinimumQty()</td>
97
			    			 
97
			    			 
98
			    			  <td>$request.getPartnerType()</td>
98
			    			  <td>$regionMap.get($request.getRegionId()).getName()</td>
99
			    			  <td>$request.getCreatedTimestamp().format($dateTimeFormatter)</td>
99
			    			  <td>$request.getCreatedTimestamp().format($dateTimeFormatter)</td>
100
			    			  
100
			    			  
101
			    			   <td><button class="btn btn-primary remove-model"  data-requestid="$request.getId()" type="button" >Remove</button></td>
101
			    			   <td><button class="btn btn-primary remove-model"  data-requestid="$request.getId()" type="button" >Remove</button></td>
102
			    		   </tr>	
102
			    		   </tr>	
103
			    	      #end
103
			    	      #end