Subversion Repositories SmartDukaan

Rev

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

Rev 11671 Rev 12523
Line 3... Line 3...
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;
7
import in.shop2020.catalog.dashboard.shared.ItemWarehouse;
8
import in.shop2020.model.v1.inventory.IgnoredInventoryUpdateItems;
8
import in.shop2020.catalog.dashboard.shared.StateVat;
9
 
9
 
10
import java.util.List;
10
import java.util.List;
11
import java.util.Map;
11
import java.util.Map;
12
 
12
 
13
import com.google.gwt.user.client.rpc.RemoteService;
13
import com.google.gwt.user.client.rpc.RemoteService;
Line 190... Line 190...
190
	boolean addAuthorizationLog(long itemId, String username, String message);
190
	boolean addAuthorizationLog(long itemId, String username, String message);
191
 
191
 
192
	Map<String, String> getConfigdataforPriceCompare();
192
	Map<String, String> getConfigdataforPriceCompare();
193
 
193
 
194
	List<String> getAllCategories();
194
	List<String> getAllCategories();
-
 
195
	
-
 
196
	Map<Long, String> getAllCategoriesMap();
195
 
197
 
196
	List<String> getAllBrands();
198
	List<String> getAllBrands();
197
 
199
 
198
	boolean deleteVoucher(Long catalogItemId, Long voucherTypeValue);
200
	boolean deleteVoucher(Long catalogItemId, Long voucherTypeValue);
199
 
201
 
Line 221... Line 223...
221
	
223
	
222
	Map<Long,String> getAllInsurers();
224
	Map<Long,String> getAllInsurers();
223
	
225
	
224
	List<Item> getPrivateDealItems(int offset,int limit);
226
	List<Item> getPrivateDealItems(int offset,int limit);
225
	
227
	
-
 
228
	Map<Long, Double> getVatRates(long itemId, long categoryId);
-
 
229
	
-
 
230
	Map<Long, String> getAllStatesMap();
-
 
231
	
226
	int getPrivateDealItemsCount();
232
	int getPrivateDealItemsCount();
-
 
233
	
-
 
234
	boolean markPartiallyActive(long itemId, Long categoryId);
-
 
235
	
-
 
236
	boolean updateItemStateVat(long itemId, List<StateVat> svs);
227
 
237
 
228
}
238
}