Subversion Repositories SmartDukaan

Rev

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

Rev 8619 Rev 8739
Line 259... Line 259...
259
	3:string listingName,
259
	3:string listingName,
260
	4:i64 listingPrice,
260
	4:i64 listingPrice,
261
	5:i64 listingExpiryDate,
261
	5:i64 listingExpiryDate,
262
	6:double subsidy,
262
	6:double subsidy,
263
	7:i64 defaultWarehouseId
263
	7:i64 defaultWarehouseId
-
 
264
}
-
 
265
 
-
 
266
struct SnapdealItem{
-
 
267
	1:i64 item_id,
-
 
268
	2:i64 warehouseId,
-
 
269
	3:double exceptionPrice,
-
 
270
	4:bool isListedOnSnapdeal
264
}    
271
}    
265
 
272
 
266
service CatalogService extends GenericService.GenericService{
273
service CatalogService extends GenericService.GenericService{
267
 
274
 
268
/**
275
/**
Line 588... Line 595...
588
	list<Amazonlisted> getAllItemstoListOnNonFba()
595
	list<Amazonlisted> getAllItemstoListOnNonFba()
589
	
596
	
590
	list<Item> getAllSnapdealListedActiveItems()
597
	list<Item> getAllSnapdealListedActiveItems()
591
	
598
	
592
	void updateAsin(1:map<i64, Item> item)
599
	void updateAsin(1:map<i64, Item> item)
-
 
600
	
-
 
601
	bool addOrUpdateSnapdealItem(SnapdealItem snapdealitem)
-
 
602
	
-
 
603
	SnapdealItem getSnapdealItem(1:i64 item_id)
-
 
604
	
-
 
605
	list<SnapdealItem> getAllSnapdealItems()
593
 
606
 
594
}
607
}