Subversion Repositories SmartDukaan

Rev

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

Rev 12171 Rev 12243
Line 9... Line 9...
9
      null,
9
      null,
10
      null,
10
      null,
11
      null,
11
      null,
12
      null,
12
      null,
13
	  null,
13
	  null,
14
      null
14
      null,
-
 
15
	  null
15
    ],
16
    ],
16
    "aLengthMenu": [[15, 25 ,50, 100, -1], [15 ,25, 50, 100, "All"]]
17
    "aLengthMenu": [[15, 25 ,50, 100, -1], [15 ,25, 50, 100, "All"]]
17
  } );
18
  } );
18
} );
19
} );
19
</script>
20
</script>
Line 25... Line 26...
25
				<th>Deal Price</th>
26
				<th>Deal Price</th>
26
				<th>Saholic Price</th>
27
				<th>Saholic Price</th>
27
				<th>Snapdeal Price</th>
28
				<th>Snapdeal Price</th>
28
				<th>Flipkart Price</th>
29
				<th>Flipkart Price</th>
29
                <th>Amazon Price</th>
30
                <th>Amazon Price</th>
-
 
31
				<th>Price Difference</th>
30
            </tr>
32
            </tr>
31
        </thead>
33
        </thead>
32
        <tbody>
34
        <tbody>
33
	#set($items = $action.getPdData())
35
	#set($items = $action.getPdData())
34
    #foreach ( $item in $items )
36
    #foreach ( $item in $items )
Line 38... Line 40...
38
				<td style="color:red;text-align:center;">$item.getDealPrice()</td>
40
				<td style="color:red;text-align:center;">$item.getDealPrice()</td>
39
				<td style="text-align:center;">$item.getSaholicPrice()</td>
41
				<td style="text-align:center;">$item.getSaholicPrice()</td>
40
				<td style="text-align:center;">$item.getSdPrice()</td>
42
				<td style="text-align:center;">$item.getSdPrice()</td>
41
				<td style="text-align:center;">$item.getFkPrice()</td>
43
				<td style="text-align:center;">$item.getFkPrice()</td>
42
				<td style="text-align:center;">$item.getAmazonPrice()</td>
44
				<td style="text-align:center;">$item.getAmazonPrice()</td>
-
 
45
				<td style="text-align:center;">$item.getDiff()</td>
43
            </tr>
46
            </tr>
44
    #end
47
    #end
45
        </tbody>
48
        </tbody>
46
    </table>
49
    </table>
47
50