| Line 1... |
Line 1... |
| 1 |
package in.shop2020.catalog.dashboard.client;
|
1 |
package in.shop2020.catalog.dashboard.client;
|
| 2 |
|
2 |
|
| 3 |
|
3 |
|
| - |
|
4 |
import in.shop2020.catalog.dashboard.shared.BulkItemPricing;
|
| 4 |
import in.shop2020.catalog.dashboard.shared.Item;
|
5 |
import in.shop2020.catalog.dashboard.shared.Item;
|
| 5 |
import in.shop2020.catalog.dashboard.shared.ItemInventory;
|
6 |
import in.shop2020.catalog.dashboard.shared.ItemInventory;
|
| 6 |
import in.shop2020.catalog.dashboard.shared.ItemStatus;
|
7 |
import in.shop2020.catalog.dashboard.shared.ItemStatus;
|
| 7 |
import in.shop2020.catalog.dashboard.shared.ItemWarehouse;
|
8 |
import in.shop2020.catalog.dashboard.shared.ItemWarehouse;
|
| 8 |
import in.shop2020.catalog.dashboard.shared.StateVat;
|
9 |
import in.shop2020.catalog.dashboard.shared.StateVat;
|
| Line 84... |
Line 85... |
| 84 |
AsyncCallback<List<Item>> asyncCallback);
|
85 |
AsyncCallback<List<Item>> asyncCallback);
|
| 85 |
void getPrivateDealItemsCount(AsyncCallback<Integer> asyncCallback);
|
86 |
void getPrivateDealItemsCount(AsyncCallback<Integer> asyncCallback);
|
| 86 |
void getAllStatesMap(AsyncCallback<Map<Long, String>> callback);
|
87 |
void getAllStatesMap(AsyncCallback<Map<Long, String>> callback);
|
| 87 |
void markPartiallyActive(long id, Long category, AsyncCallback<Boolean> asyncCallback);
|
88 |
void markPartiallyActive(long id, Long category, AsyncCallback<Boolean> asyncCallback);
|
| 88 |
void updateItemStateVat(long id, List<StateVat> svs, AsyncCallback<Boolean> asyncCallback);
|
89 |
void updateItemStateVat(long id, List<StateVat> svs, AsyncCallback<Boolean> asyncCallback);
|
| - |
|
90 |
|
| - |
|
91 |
void addBulkPricingForItem(BulkItemPricing bulkItemPricing, AsyncCallback<BulkItemPricing> callback);
|
| - |
|
92 |
void getBulkPricingByItemId(long item_id, AsyncCallback<List<BulkItemPricing>> callback);
|
| - |
|
93 |
void deleteBulkPricingForItemById(long id, AsyncCallback<Boolean> asyncCallback);
|
| - |
|
94 |
void deleteBulkPricingForItem(long itemId, AsyncCallback<Boolean> asyncCallback);
|
| 89 |
}
|
95 |
}
|