Subversion Repositories SmartDukaan

Rev

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

Rev 19250 Rev 19686
Line 743... Line 743...
743
	4:i64 preferred_vendor,
743
	4:i64 preferred_vendor,
744
	5:double private_deal_price,
744
	5:double private_deal_price,
745
	6:double weight
745
	6:double weight
746
}
746
}
747
 
747
 
-
 
748
struct BulkUploadCatalog{
-
 
749
	1:i64 catalog_item_id,
-
 
750
	2:string brand,
-
 
751
	3:string model_name,
-
 
752
	4:string model_number
-
 
753
}
-
 
754
 
748
 
755
 
749
service CatalogService extends GenericService.GenericService{
756
service CatalogService extends GenericService.GenericService{
750
 
757
 
751
/**
758
/**
752
	Availability and inventory attributes	
759
	Availability and inventory attributes	
Line 1225... Line 1232...
1225
	
1232
	
1226
	list<i64> getCartByValue(1:list<i64> cartIds)
1233
	list<i64> getCartByValue(1:list<i64> cartIds)
1227
	
1234
	
1228
	bool updateItemPricing(1:list<ItemPricing> itemPricingList)
1235
	bool updateItemPricing(1:list<ItemPricing> itemPricingList)
1229
	
1236
	
-
 
1237
	void bulkUpdateCatalog(1:list<BulkUploadCatalog> bulkUploadCatalog) throws (1:CatalogServiceException cex)
-
 
1238
	
1230
}
1239
}