Subversion Repositories SmartDukaan

Rev

Rev 12661 | Rev 12924 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 12661 Rev 12923
Line 3... Line 3...
3
            <tr>
3
            <tr>
4
                <th>Item Id</th>
4
                <th>Item Id</th>
5
				<th>Category</th>
5
				<th>Category</th>
6
				<th>Asin</th>
6
				<th>Asin</th>
7
				<th>Saholic / Amazon Item Description</th>
7
				<th>Saholic / Amazon Item Description</th>
8
				<th>Price Difference</th>
-
 
9
				<th>Risky</th>
8
				<th>Risky</th>
10
                 <th>Status</th>
9
                <th>Status</th>
11
				<th>Shipping</th>
10
				<th>Shipping</th>
12
				<th>Inventory Override</th>
11
				<th>Inventory Override</th>
13
				<th>MFN Listing</th>
12
				<th>MFN Listing</th>
14
				<th>FBA Listing</th>
13
				<th>FBA Listing</th>
15
				<th>FBB Listing</th>
14
				<th>FBB Listing</th>
-
 
15
				<th>FBG Listing</th>
16
				<th>Action</th>
16
				<th>Action</th>
17
            </tr>
17
            </tr>
18
        </thead>
18
        </thead>
19
        <tbody>
19
        <tbody>
20
	#set($items = $action.getAmazonItems())
20
	#set($items = $action.getAmazonItems())
Line 23... Line 23...
23
                <td>$item.getItemid()</td>
23
                <td>$item.getItemid()</td>
24
				<td>$item.getCategory()</td>
24
				<td>$item.getCategory()</td>
25
				<td>$item.getAsin()</td>
25
				<td>$item.getAsin()</td>
26
				#set ($saholicItem = $action.getSaholicItem("$item.getItemid()"))
26
				#set ($saholicItem = $action.getSaholicItem("$item.getItemid()"))
27
				<td style="text-align:left;">SAHOLIC: $saholicItem.getBrand() $saholicItem.getModelName() $saholicItem.getModelNumber() $saholicItem.getColor()<br /> AMAZON: $item.getName()</td>
27
				<td style="text-align:left;">SAHOLIC: $saholicItem.getBrand() $saholicItem.getModelName() $saholicItem.getModelNumber() $saholicItem.getColor()<br /> AMAZON: $item.getName()</td>
28
				#if($saholicItem.getSellingPrice() != $item.getFbaPrice() || $saholicItem.getSellingPrice() != $item.getSellingPrice())
-
 
29
						<td>$saholicItem.getSellingPrice() / FBA: $item.getFbaPrice() / MFN: $item.getSellingPrice()</td>
-
 
30
				#else
-
 
31
						<td>-</td>
-
 
32
				#end
-
 
33
				#if($saholicItem.isRisky())
28
				#if($saholicItem.isRisky())
34
						<td><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
29
						<td><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
35
				#else
30
				#else
36
						<td><a style="visibility: hidden;">I</a><img alt="Inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
31
						<td><a style="visibility: hidden;">I</a><img alt="Inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
37
				#end
32
				#end
Line 59... Line 54...
59
				#if($item.isIsFbb())
54
				#if($item.isIsFbb())
60
					<td><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
55
					<td><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
61
				#else
56
				#else
62
					<td><a style="visibility: hidden;">I</a><img alt="inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
57
					<td><a style="visibility: hidden;">I</a><img alt="inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
63
				#end
58
				#end
-
 
59
				#if($item.isIsFbg())
-
 
60
					<td><a style="visibility: hidden;">A</a><img alt="active" src="/Support/images/active.ico" style="width: 18px;"></td>
-
 
61
				#else
-
 
62
					<td><a style="visibility: hidden;">I</a><img alt="inactive" src="/Support/images/inactive.ico" style="width: 18px;"></td>
-
 
63
				#end
64
				<td><a href="#" class="editItem" itemId="$item.getItemid()">View/Edit</a></td>
64
				<td><a href="#" class="editItem" itemId="$item.getItemid()">View/Edit</a></td>
65
				</td>
65
				</td>
66
            </tr>
66
            </tr>
67
    #end
67
    #end
68
        </tbody>
68
        </tbody>