Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
9242 kshitij.so 1
<span class="totalValue" style="display:none;">$action.getSearchCount()</span>
2
<table id="snapdeal-listed" style="width: 100%">
3
        <thead>
4
            <tr>
5
                <th>Item Id</th>
6
				<th>Brand</th>
7
				<th>Model Name</th>
8
				<th>Model Number</th>
9
				<th>Color</th>
10
				<th>Snapdeal Listed</th>
14780 manish.sha 11
				<th>SD_VOI Listed</th>
9242 kshitij.so 12
				<th>Risky</th>
13
                <th>Status</th>
14
				<th>Action</th>
11015 kshitij.so 15
				<th>Competitive Analysis</th>
9242 kshitij.so 16
            </tr>
17
        </thead>
18
        <tbody>
19
	#set($items = $action.getSnapdealItems())
20
    #foreach ( $item in $items )
21
            <tr style="border: 1px">
22
                <td style="text-align:center;">$item.getItem_id()</td>
23
				<td style="text-align:center;">$item.getBrand()</td>
24
				<td style="text-align:center;">$item.getModel_name()</td>
25
				<td style="text-align:center;">$item.getModel_number()</td>
26
				<td style="text-align:center;">$item.getColor()</td>
27
				#if($item.isIsListedOnSnapdeal())
28
						<td style="text-align:center;"><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
29
				#else
30
						<td style="text-align:center;"><a style="visibility: hidden;">I</a><img alt="Inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
31
				#end
14780 manish.sha 32
				#if($item.isIsVoiListed())
33
						<td style="text-align:center;"><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
34
				#else
35
						<td style="text-align:center;"><a style="visibility: hidden;">I</a><img alt="Inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
36
				#end
9242 kshitij.so 37
				#if($item.isRisky())
38
						<td style="text-align:center;"><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
39
				#else
40
						<td style="text-align:center;"><a style="visibility: hidden;">I</a><img alt="Inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
41
				#end
42
				<td style="text-align:center;">$item.getItemStatus()</td>
9923 kshitij.so 43
				<td style="text-align:center;"><a href="#" class="editItem" it="$item.getItem_id()">View/Edit</a></td>
11110 kshitij.so 44
				<td style="text-align:center;width:10%;"><a href="/Support/snapdeal-list/competition-analysis?itemId=$item.getItem_id()&supc=$item.getSupc()" target="_blank" class="showCompetitionAnalysis" it="$item.getItem_id()">Show</a></td>
9242 kshitij.so 45
				</td>
46
            </tr>
47
    #end
48
        </tbody>
49
    </table>
50