Subversion Repositories SmartDukaan

Rev

Rev 12256 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
12256 kshitij.so 1
<style>
2
	#data th {
3
		font-size: 11px;
4
	}
5
	#data td {
6
		font-size: 11px;
7
	}
8
</style>
9
#set($items = $action.getData())
10
<h3 style="text-align:center;color:blue;">Upload ID $action.getRequestId()</h3>
11
<table id="data">
12
        <thead>
13
            <tr>
14
                <th>Item Id</th>
15
				<th>Product</th>
16
				<th>Our Snapdeal SP</th>
17
				<th>Our Snapdeal Offer Price</th>
18
				<th>Lowest Snapdeal Seller</th>
19
				<th>Lowest Snapdeal SP</th>
20
				<th>Lowest Offer Price</th>
21
				<th>Our Snapdeal Inventory</th>
22
				<th>Lowest Seller Snapdeal Inventory</th>
23
				<th>Our Flipkart SP</th>
24
				<th>Lowest Seller Flipkart</th>
25
				<th>Lowest Flipkart SP</th>
26
				<th>Our Flipkart Inventory</th>
15487 kshitij.so 27
				<th>Our Amazon Price</th>
12256 kshitij.so 28
				<th>Lowest Seller Amazon</th>
29
				<th>Lowest Amazon SP</th>
30
            </tr>
31
        </thead>
32
        <tbody>
33
    #foreach ( $item in $items )
34
            <tr style="border: 1px">
35
                <td>$item.getItem_id()</td>
36
				<td>$item.getProductName()</td>
37
				<td>$item.getOurSnapdealPrice()</td>
38
				<td>$item.getOurSnapdealOfferPrice()</td>
39
				<td>$item.getLowestSnapdealSeller()</td>
40
				<td>$item.getLowestSnapdealPrice()</td>
41
				<td>$item.getLowestSnapdealOfferPrice()</td>
42
				<td>$item.getOurSnapdealInventory()</td>
43
				<td>$item.getLowestSnapdealSellerInventory()</td>
44
				<td>$item.getOurFlipkartPrice()</td>
45
				<td>$item.getLowestFlipkartSeller()</td>
46
				<td>$item.getLowestFlipkartPrice()</td>
47
				<td>$item.getOurFlipkartInventory()</td>
15487 kshitij.so 48
				<td>$item.getOurAmazonPrice()</td>
12256 kshitij.so 49
				<td>$item.getLowestAmazonSeller()</td>
50
				<td>$item.getLowestAmazonPrice()</td>
51
            </tr>
52
    #end
53
        </tbody>
54
    </table>