Subversion Repositories SmartDukaan

Rev

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

Rev 6096 Rev 6530
Line 2... Line 2...
2
 
2
 
3
 
3
 
4
import in.shop2020.catalog.dashboard.shared.Item;
4
import in.shop2020.catalog.dashboard.shared.Item;
5
import in.shop2020.catalog.dashboard.shared.ItemInventory;
5
import in.shop2020.catalog.dashboard.shared.ItemInventory;
6
import in.shop2020.catalog.dashboard.shared.ItemStatus;
6
import in.shop2020.catalog.dashboard.shared.ItemStatus;
-
 
7
import in.shop2020.catalog.dashboard.shared.ItemWarehouse;
-
 
8
import in.shop2020.model.v1.inventory.IgnoredInventoryUpdateItems;
7
 
9
 
8
import java.util.List;
10
import java.util.List;
9
import java.util.Map;
11
import java.util.Map;
10
 
12
 
11
import com.google.gwt.user.client.rpc.RemoteService;
13
import com.google.gwt.user.client.rpc.RemoteService;
Line 200... Line 202...
200
	Map<Long, String> getvoucherTypes();
202
	Map<Long, String> getvoucherTypes();
201
 
203
 
202
	boolean getConfigforentityIdMandatory();
204
	boolean getConfigforentityIdMandatory();
203
 
205
 
204
	boolean checkEntityId(long entityId);
206
	boolean checkEntityId(long entityId);
-
 
207
 
-
 
208
	List<Item> getInventoryOutofSyncItems(int offset, int limit);
-
 
209
 
-
 
210
	int getInventoryOutofSyncItemsCount();
-
 
211
 
-
 
212
	List<Long> getMonitoredWarehouseIdsForVendors(List<Long> vendorIds);
-
 
213
 
-
 
214
	List<ItemWarehouse> getignoredInventoryUpdateItemsIdsWarehouseIds();
-
 
215
 
-
 
216
	boolean addtoIgnoredInventoryUpdateItemsIdsWarehouseIds(long itemId,
-
 
217
			long warehouseId);
-
 
218
 
-
 
219
	boolean deleteFromIgnoredInventoryUpdateItemsIdsWarehouseIds(
-
 
220
			long itemId, long warehouseId);
-
 
221
 
205
}
222
}