Subversion Repositories SmartDukaan

Rev

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

Rev 10485 Rev 10547
Line 161... Line 161...
161
	3:i64 createdOrders
161
	3:i64 createdOrders
162
	4:i64 heldOrders
162
	4:i64 heldOrders
163
	5:bool is_oos
163
	5:bool is_oos
164
}
164
}
165
 
165
 
-
 
166
struct SnapdealStockAtEOD{
-
 
167
	1:i64 item_id
-
 
168
	2:i64 availability
-
 
169
	3:i64 date
-
 
170
}
-
 
171
 
-
 
172
struct FlipkartStockAtEOD{
-
 
173
	1:i64 item_id
-
 
174
	2:i64 availability
-
 
175
	3:i64 date
-
 
176
}
-
 
177
 
-
 
178
 
166
 
179
 
167
service InventoryService extends GenericService.GenericService{
180
service InventoryService extends GenericService.GenericService{
168
 
181
 
169
	i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
182
	i64 addWarehouse(1:Warehouse warehouse) throws (1:InventoryServiceException cex),
170
	
183
	
Line 427... Line 440...
427
	
440
	
428
	FlipkartInventorySnapshot getFlipkartlInventoryForItem(1:i64 item_id)
441
	FlipkartInventorySnapshot getFlipkartlInventoryForItem(1:i64 item_id)
429
	
442
	
430
	map<i64,string> getStateMaster()
443
	map<i64,string> getStateMaster()
431
	
444
	
-
 
445
	void updateSnapdealStockAtEOD(list<SnapdealStockAtEOD> allsnapdealstock)
-
 
446
	
-
 
447
	void updateFlipkartStockAtEOD(list<FlipkartStockAtEOD> allflipkartstock)
-
 
448
	
432
}
449
}