Subversion Repositories SmartDukaan

Rev

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

Rev 3856 Rev 3885
Line 67... Line 67...
67
						<th width="50">&nbsp;</th>
67
						<th width="50">&nbsp;</th>
68
                    </tr>
68
                    </tr>
69
                </thead>
69
                </thead>
70
				<tbody>
70
				<tbody>
71
				#foreach($item in $items)
71
				#foreach($item in $items)
-
 
72
					#if($item.get("SHIPPING_TIME") == -1)
-
 
73
						#set($messageShippingTime = "Location not serviceable")
-
 
74
					#else
-
 
75
						#set($messageShippingTime = "FREE Delivery in <span id=days_" + $item.get("ITEM_ID") + ">" + $item.get("SHIPPING_TIME") + "</span> Bus. Days")
-
 
76
					#end
72
					<tr id="$item.get("ITEM_ID")">
77
					<tr id="$item.get("ITEM_ID")">
73
						<td>
78
						<td>
74
							<div class="left">
79
							<div class="left">
75
								<img alt="phone" src='/images/$item.get("CATALOG_ID")/thumbnail.jpg'>
80
								<img alt="phone" src='/images/$item.get("CATALOG_ID")/thumbnail.jpg'>
76
							</div>
81
							</div>
77
							<div class="cart-item-name-div">
82
							<div class="cart-item-name-div">
78
                                <div class="cart-item-name">$item.get("ITEM_NAME")</div>
83
                                <div class="cart-item-name">$item.get("ITEM_NAME")</div><br/>
79
                                <br/>
-
 
80
								<span class="cart-item-color">$item.get("ITEM_COLOR")</span>
84
								<span class="cart-item-color">$item.get("ITEM_COLOR")</span>
81
                            </div>
85
                            </div>
82
                        </td>
86
                        </td>
83
						<td id="shipping_time_$item.get("ITEM_ID")">
87
						<td id="shipping_time_$item.get("ITEM_ID")">$messageShippingTime</td>
84
							FREE Delivery in <span id="days_$item.get("ITEM_ID")"> $item.get("SHIPPING_TIME")</span>
-
 
85
						</td>
-
 
86
						<td><img src="/images/rupee-symbol.png" alt="Rs." /> $item.get("SELLING_PRICE")</td>
88
						<td><img src="/images/rupee-symbol.png" alt="Rs." /> $item.get("SELLING_PRICE")</td>
87
						<td style="line-height: 28px;">
89
						<td style="line-height: 28px;">
88
							<input id="quantity_$item.get("ITEM_ID")" type="text" class="cart-item-quantity searchbox" value=$item.get("ITEM_QUANTITY") />
90
							<input id="quantity_$item.get("ITEM_ID")" type="text" class="cart-item-quantity searchbox" value=$item.get("ITEM_QUANTITY") />
89
							&nbsp;&nbsp;pcs.
91
							&nbsp;&nbsp;pcs.
90
						</td>
92
						</td>
91
						<td><img src="/images/rupee-symbol.png" alt="Rs." /> $item.get("TOTAL_PRICE")</td>
93
						<td><img src="/images/rupee-symbol.png" alt="Rs." /> $item.get("TOTAL_PRICE")</td>
92
						<td>
94
						<td align="center">
93
							<img id="remove_$item.get("ITEM_ID")" class="remove-quantitybttn" src="/images/Cross_DeleteRow_DEF.png" />
95
							<img id="remove_$item.get("ITEM_ID")" class="remove-quantitybttn" src="/images/Cross_DeleteRow_DEF.png" title="Remove item from the cart" />
94
                        </td>
96
                        </td>
95
                    </tr>
97
                    </tr>
96
				#end
98
				#end
97
                </tbody>
99
                </tbody>
98
            </table>
100
            </table>