Subversion Repositories SmartDukaan

Rev

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

Rev 7383 Rev 7485
Line 41... Line 41...
41
		<tr>
41
		<tr>
42
			<th>ItemId</th>
42
			<th>ItemId</th>
43
			<th>Product</th>
43
			<th>Product</th>
44
			<th>Active For Store?</th>
44
			<th>Active For Store?</th>
45
			<th>Action</th>
45
			<th>Action</th>
46
			<th>DP</th>
46
			<th>Min Price</th>
47
			<th>MRP</th>
47
			<th>Max Price</th>
48
			<th>Min Advance Price</th>
48
			<th>Min Advance Price</th>
49
			<th>City Head Minimum</th>
49
			<th>City Head Minimum</th>
50
			<th>MOP</th>
50
			<th>Recommended Selling Price</th>
51
			<th>Freebie ItemId</th>
51
			<th>Freebie ItemId</th>
52
			<th>Best Deal Text</th>
52
			<th>Best Deal Text</th>
53
        </tr>
53
        </tr>
54
    </thead>
54
    </thead>
55
	<tbody>
55
	<tbody>
Line 65... Line 65...
65
			<td>#if($item.isActiveOnStore())$item.isActiveOnStore()#end</td>
65
			<td>#if($item.isActiveOnStore())$item.isActiveOnStore()#end</td>
66
			<td><a href="$action.getServletContextPath()/store-admin/$item.getId()">Store Pricing</a></td>
66
			<td><a href="$action.getServletContextPath()/store-admin/$item.getId()">Store Pricing</a></td>
67
			<td>$sp.getMinPrice()</td>
67
			<td>$sp.getMinPrice()</td>
68
			<td>$sp.getMaxPrice()</td>
68
			<td>$sp.getMaxPrice()</td>
69
			<td>$sp.getMinAdvancePrice()</td>
69
			<td>$sp.getMinAdvancePrice()</td>
70
			<td>$sp.getRecommendedPrice()</td>
-
 
71
			<td>$sp.getAbsoluteMinPrice()</td>
70
			<td>$sp.getAbsoluteMinPrice()</td>
-
 
71
			<td>$sp.getRecommendedPrice()</td>
72
			<td>$sp.getFreebieItemId()</td>
72
			<td>$sp.getFreebieItemId()</td>
73
			<td>$sp.getBestDealText()</td>
73
			<td>$sp.getBestDealText()</td>
74
		</tr>
74
		</tr>
75
		#end
75
		#end
76
		#end
76
		#end
Line 83... Line 83...
83
	#if($sp1)
83
	#if($sp1)
84
	#set($item = $action.getItem($sp1.getItemId()))	
84
	#set($item = $action.getItem($sp1.getItemId()))	
85
	<form name="storepricing" action="$action.getServletContextPath()/store-admin" method="post">
85
	<form name="storepricing" action="$action.getServletContextPath()/store-admin" method="post">
86
		ItemId: 								<input type="text" readonly name="itemId" value="$sp1.getItemId()"><br>
86
		ItemId: 								<input type="text" readonly name="itemId" value="$sp1.getItemId()"><br>
87
		Product Detail                     		<input type="text" disabled name="productName" value="$action.getProductNameFromItem($item)"><br>
87
		Product Detail                     		<input type="text" disabled name="productName" value="$action.getProductNameFromItem($item)"><br>
88
		DP: 								<input type="text" name="minPrice" value="$sp1.getMinPrice()"><br>
88
		Min Price: 								<input type="text" name="minPrice" value="$sp1.getMinPrice()"><br>
89
		MRP: 								<input type="text" name="maxPrice" value="$sp1.getMaxPrice()"><br>
89
		Max Price: 								<input type="text" name="maxPrice" value="$sp1.getMaxPrice()"><br>
90
		Min Advance Amount: 					<input type="text" name="minAdvancePrice"  value="$sp1.getMinAdvancePrice()"><br>
90
		Min Advance Amount: 					<input type="text" name="minAdvancePrice"  value="$sp1.getMinAdvancePrice()"><br>
91
		MOP: 				<input type="text" name="recommendedPrice"  value="$sp1.getRecommendedPrice()"><br>
91
		Recommended Selling Price: 				<input type="text" name="recommendedPrice"  value="$sp1.getRecommendedPrice()"><br>
92
		City Head Minimum: 				<input type="text" name="absoluteMinPrice"  value="$sp1.getAbsoluteMinPrice()"><br>
92
		City Head Minimum:		 				<input type="text" name="absoluteMinPrice"  value="$sp1.getAbsoluteMinPrice()"><br>
93
		Freebie ItemId: 						<input type="text" name="freebieItemId" value="$sp1.getFreebieItemId()"><br>
93
		Freebie ItemId: 						<input type="text" name="freebieItemId" value="$sp1.getFreebieItemId()"><br>
94
		Best Deal Text: 						<input type="text" name="bestDealText" value="$sp1.getBestDealText()"><br>
94
		Best Deal Text: 						<input type="text" name="bestDealText" value="#if($sp1.getBestDealText()) $sp1.getBestDealText() #end"><br>
95
		Active on store:                        <input type="checkbox" name="activeonstore" #if($item.isActiveOnStore()) checked #end><br>
95
		Active on store:                        <input type="checkbox" name="activeonstore" #if($item.isActiveOnStore()) checked #end><br>
96
		Update All Colors:                      <input type="checkbox" name="allcolors" checked><br>
96
		Update All Colors:                      <input type="checkbox" name="allcolors" checked><br>
97
		<input type="submit" value="Update">
97
		<input type="submit" value="Update">
98
	</form>
98
	</form>
99
		
99