Subversion Repositories SmartDukaan

Rev

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

Rev 9724 Rev 9776
Line 365... Line 365...
365
	6:bool isAutoDecrement,
365
	6:bool isAutoDecrement,
366
	7:bool isAutoIncrement,
366
	7:bool isAutoIncrement,
367
	8:i64 source
367
	8:i64 source
368
}
368
}
369
 
369
 
-
 
370
struct MarketPlaceItemPrice{
-
 
371
    1:i64 item_id
-
 
372
	2:i64 source
-
 
373
	3:double sellingPrice
-
 
374
	4:i64 lastUpdatedOn
-
 
375
	5:i64 lastUpdatedOnMarketplace
-
 
376
	6:bool isPriceOverride
-
 
377
	7:bool isListedOnSource
-
 
378
    
-
 
379
}
-
 
380
 
-
 
381
 
370
service CatalogService extends GenericService.GenericService{
382
service CatalogService extends GenericService.GenericService{
371
 
383
 
372
/**
384
/**
373
	Availability and inventory attributes	
385
	Availability and inventory attributes	
374
*/
386
*/
Line 720... Line 732...
720
	
732
	
721
	bool updateProductFeedSubmit(1:ProductFeedSubmit productFeedSubmit) throws (1:CatalogServiceException cex),
733
	bool updateProductFeedSubmit(1:ProductFeedSubmit productFeedSubmit) throws (1:CatalogServiceException cex),
722
 
734
 
723
	bool deleteProductFeedSubmit(1:i64 catalogItemId) throws (1:CatalogServiceException cex),
735
	bool deleteProductFeedSubmit(1:i64 catalogItemId) throws (1:CatalogServiceException cex),
724
	
736
	
725
	list<ProductFeedSubmit> getAllProductFeedSubmit() throws (1:CatalogServiceException cex)
737
	list<ProductFeedSubmit> getAllProductFeedSubmit() throws (1:CatalogServiceException cex),
726
	
738
	
727
	MarketplaceItems getMarketplacedetailsForItem(1:i64 itemId,2:i64 sourceId)
739
	MarketplaceItems getMarketplacedetailsForItem(1:i64 itemId,2:i64 sourceId)
728
	
740
	
729
	bool updateMarketplaceAttributesForItem(1:MarketplaceItems marketPlaceItem)
741
	bool updateMarketplaceAttributesForItem(1:MarketplaceItems marketPlaceItem)
-
 
742
	
-
 
743
	list<MarketPlaceItemPrice> getMarketPlaceItemsForPriceUpdate(1:i64 source),
-
 
744
	
-
 
745
	void updateMarketPlacePriceUpdateStatus(1:list<i64> skulist,2:i64 timestamp)
730
 
746
	
-
 
747
	
-
 
748
	
731
}
749
}