Subversion Repositories SmartDukaan

Rev

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

Rev 9568 Rev 9621
Line 316... Line 316...
316
    19:double mrp,
316
    19:double mrp,
317
    20:double websiteSellingPrice,
317
    20:double websiteSellingPrice,
318
    21:double maxNlc,
318
    21:double maxNlc,
319
    22:string skuAtSnapdeal,
319
    22:string skuAtSnapdeal,
320
    23:string supc
320
    23:string supc
-
 
321
}
-
 
322
 
-
 
323
struct ProductFeedSubmit{
-
 
324
	1:i64 catalogItemId,
-
 
325
	2:bool stockLinkedFeed
321
}    
326
}    
322
 
327
 
323
service CatalogService extends GenericService.GenericService{
328
service CatalogService extends GenericService.GenericService{
324
 
329
 
325
/**
330
/**
Line 664... Line 669...
664
	i64 getSnapdealSearchResultCount(1:list<string> searchTerm)
669
	i64 getSnapdealSearchResultCount(1:list<string> searchTerm)
665
	
670
	
666
	i64 getPrefferedInsurerForItem(1:i64 itemId, 2:InsurerType insurerType)
671
	i64 getPrefferedInsurerForItem(1:i64 itemId, 2:InsurerType insurerType)
667
	
672
	
668
	SnapdealItem getSnapdealItembySkuAtSnapdeal(string skuAtSnapdeal)
673
	SnapdealItem getSnapdealItembySkuAtSnapdeal(string skuAtSnapdeal)
-
 
674
	
-
 
675
	ProductFeedSubmit getProductFeedSubmit(1:i64 catalogItemId) throws (1:CatalogServiceException cex),
-
 
676
	
-
 
677
	bool addProductFeedSubmit(1:ProductFeedSubmit productFeedSubmit) throws (1:CatalogServiceException cex),
-
 
678
	
-
 
679
	bool updateProductFeedSubmit(1:ProductFeedSubmit productFeedSubmit) throws (1:CatalogServiceException cex),
669
 
680
 
-
 
681
	bool deleteProductFeedSubmit(1:i64 catalogItemId) throws (1:CatalogServiceException cex),
-
 
682
	
-
 
683
	list<ProductFeedSubmit> getAllProductFeedSubmit() throws (1:CatalogServiceException cex)
670
}
684
}