Subversion Repositories SmartDukaan

Rev

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

<style>
        #data th {
                font-size: 11px;
        }
        #data td {
                font-size: 11px;
        }
</style>
#set($items = $action.getData())
<h3 style="text-align:center;color:blue;">Upload ID $action.getRequestId()</h3>
<table id="data">
        <thead>
            <tr>
                <th>Item Id</th>
                                <th>Product</th>
                                <th>Our Snapdeal SP</th>
                                <th>Our Snapdeal Offer Price</th>
                                <th>Lowest Snapdeal Seller</th>
                                <th>Lowest Snapdeal SP</th>
                                <th>Lowest Offer Price</th>
                                <th>Our Snapdeal Inventory</th>
                                <th>Lowest Seller Snapdeal Inventory</th>
                                <th>Our Flipkart SP</th>
                                <th>Lowest Seller Flipkart</th>
                                <th>Lowest Flipkart SP</th>
                                <th>Our Flipkart Inventory</th>
                                <th>Our Amazon Price</th>
                                <th>Lowest Seller Amazon</th>
                                <th>Lowest Amazon SP</th>
            </tr>
        </thead>
        <tbody>
    #foreach ( $item in $items )
            <tr style="border: 1px">
                <td>$item.getItem_id()</td>
                                <td>$item.getProductName()</td>
                                <td>$item.getOurSnapdealPrice()</td>
                                <td>$item.getOurSnapdealOfferPrice()</td>
                                <td>$item.getLowestSnapdealSeller()</td>
                                <td>$item.getLowestSnapdealPrice()</td>
                                <td>$item.getLowestSnapdealOfferPrice()</td>
                                <td>$item.getOurSnapdealInventory()</td>
                                <td>$item.getLowestSnapdealSellerInventory()</td>
                                <td>$item.getOurFlipkartPrice()</td>
                                <td>$item.getLowestFlipkartSeller()</td>
                                <td>$item.getLowestFlipkartPrice()</td>
                                <td>$item.getOurFlipkartInventory()</td>
                                <td>$item.getOurAmazonPrice()</td>
                                <td>$item.getLowestAmazonSeller()</td>
                                <td>$item.getLowestAmazonPrice()</td>
            </tr>
    #end
        </tbody>
    </table>