Subversion Repositories SmartDukaan

Rev

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

Rev 19686 Rev 19691
Line 750... Line 750...
750
	2:string brand,
750
	2:string brand,
751
	3:string model_name,
751
	3:string model_name,
752
	4:string model_number
752
	4:string model_number
753
}
753
}
754
 
754
 
-
 
755
enum ItemCondition{
-
 
756
	DAMAGED,
-
 
757
	DEFECTIVE
-
 
758
}
755
 
759
 
756
service CatalogService extends GenericService.GenericService{
760
service CatalogService extends GenericService.GenericService{
757
 
761
 
758
/**
762
/**
759
	Availability and inventory attributes	
763
	Availability and inventory attributes	
Line 1234... Line 1238...
1234
	
1238
	
1235
	bool updateItemPricing(1:list<ItemPricing> itemPricingList)
1239
	bool updateItemPricing(1:list<ItemPricing> itemPricingList)
1236
	
1240
	
1237
	void bulkUpdateCatalog(1:list<BulkUploadCatalog> bulkUploadCatalog) throws (1:CatalogServiceException cex)
1241
	void bulkUpdateCatalog(1:list<BulkUploadCatalog> bulkUploadCatalog) throws (1:CatalogServiceException cex)
1238
	
1242
	
-
 
1243
	map<string, i64> getWarrantyInfoForItem(1:i64 itemId, 2:ItemCondition itemCondition) throws (1:CatalogServiceException cex)
-
 
1244
	
1239
}
1245
}