| Line 17... |
Line 17... |
| 17 |
public static final String ALL_ACTIVE_ITEMS = "Active Items";
|
17 |
public static final String ALL_ACTIVE_ITEMS = "Active Items";
|
| 18 |
public static final String ALL_PHASED_OUT_ITEMS = "Phased Out Items";
|
18 |
public static final String ALL_PHASED_OUT_ITEMS = "Phased Out Items";
|
| 19 |
public static final String ALL_PAUSED_ITEMS = "Paused Items";
|
19 |
public static final String ALL_PAUSED_ITEMS = "Paused Items";
|
| 20 |
public static final String IN_PROCESS_ITEMS = "In Process Items";
|
20 |
public static final String IN_PROCESS_ITEMS = "In Process Items";
|
| 21 |
public static final String CONTENT_COMPLETE_ITEMS = "Content Complete Items";
|
21 |
public static final String CONTENT_COMPLETE_ITEMS = "Content Complete Items";
|
| 22 |
public static final String INACTIVE_ITEMS_WITH_INVENTORY = "Inactive items with Inventory";
|
22 |
public static final String INACTIVE_ITEMS_WITH_INVENTORY = "Inactive Items with Inventory";
|
| 23 |
public static final String BREAKEVEN_ITEMS = "Items below Break Even Price";
|
23 |
public static final String BREAKEVEN_ITEMS = "Items below Break Even Price";
|
| 24 |
|
24 |
|
| 25 |
public static final String RISKY_ITEMS = "Risky Items";
|
25 |
public static final String RISKY_ITEMS = "Risky Items";
|
| 26 |
|
26 |
|
| 27 |
public static final String BEST_DEALS = "Best Deals";
|
27 |
public static final String BEST_DEALS = "Best Deals";
|
| 28 |
public static final String BEST_SELLERS = "Best Sellers";
|
28 |
public static final String BEST_SELLERS = "Best Sellers";
|
| 29 |
public static final String LATEST_ARRIVALS = "Latest Arrivals";
|
29 |
public static final String LATEST_ARRIVALS = "Latest Arrivals";
|
| 30 |
|
30 |
|
| 31 |
public static final String SEARCH = "Search";
|
31 |
public static final String SEARCH = "Search";
|
| 32 |
|
32 |
|
| - |
|
33 |
public static final String INVENTORY_OUTOFSYNC_ITEM_LIST = "Inventory Out-of-Sync Items";
|
| - |
|
34 |
|
| 33 |
private Tree tree;
|
35 |
private Tree tree;
|
| 34 |
|
36 |
|
| 35 |
interface TreeListener {
|
37 |
interface TreeListener {
|
| 36 |
void onTreeItemClicked(String itemTypes);
|
38 |
void onTreeItemClicked(String itemTypes);
|
| 37 |
}
|
39 |
}
|
| Line 58... |
Line 60... |
| 58 |
addItem(root, BEST_DEALS);
|
60 |
addItem(root, BEST_DEALS);
|
| 59 |
addItem(root, BEST_SELLERS);
|
61 |
addItem(root, BEST_SELLERS);
|
| 60 |
addItem(root, LATEST_ARRIVALS);
|
62 |
addItem(root, LATEST_ARRIVALS);
|
| 61 |
|
63 |
|
| 62 |
addItem(root, SEARCH);
|
64 |
addItem(root, SEARCH);
|
| - |
|
65 |
addItem(root,INVENTORY_OUTOFSYNC_ITEM_LIST);
|
| 63 |
|
66 |
|
| 64 |
addItem(report, INACTIVE_ITEMS_WITH_INVENTORY);
|
67 |
addItem(report, INACTIVE_ITEMS_WITH_INVENTORY);
|
| 65 |
addItem(report, BREAKEVEN_ITEMS);
|
68 |
addItem(report, BREAKEVEN_ITEMS);
|
| 66 |
|
69 |
|
| 67 |
root.setState(true);
|
70 |
root.setState(true);
|