Subversion Repositories SmartDukaan

Rev

Go to most recent revision | Details | 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>
27
				<th>MFN Price</th>
28
				<th>FBA Price</th>
29
				<th>Lowest Seller Amazon</th>
30
				<th>Lowest Amazon SP</th>
31
				<th>MFN Inventory</th>
32
				<th>FBA Inventory</th>
33
            </tr>
34
        </thead>
35
        <tbody>
36
    #foreach ( $item in $items )
37
            <tr style="border: 1px">
38
                <td>$item.getItem_id()</td>
39
				<td>$item.getProductName()</td>
40
				<td>$item.getOurSnapdealPrice()</td>
41
				<td>$item.getOurSnapdealOfferPrice()</td>
42
				<td>$item.getLowestSnapdealSeller()</td>
43
				<td>$item.getLowestSnapdealPrice()</td>
44
				<td>$item.getLowestSnapdealOfferPrice()</td>
45
				<td>$item.getOurSnapdealInventory()</td>
46
				<td>$item.getLowestSnapdealSellerInventory()</td>
47
				<td>$item.getOurFlipkartPrice()</td>
48
				<td>$item.getLowestFlipkartSeller()</td>
49
				<td>$item.getLowestFlipkartPrice()</td>
50
				<td>$item.getOurFlipkartInventory()</td>
51
				<td>$item.getOurMfnPrice()</td>
52
				<td>$item.getOurFbaPrice()</td>
53
				<td>$item.getLowestAmazonSeller()</td>
54
				<td>$item.getLowestAmazonPrice()</td>
55
				<td>$item.getOurMfnInventory()</td>
56
				<td>$item.getOurFbaInventory()</td>
57
            </tr>
58
    #end
59
        </tbody>
60
    </table>