Subversion Repositories SmartDukaan

Rev

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

Rev 18764 Rev 19247
Line 734... Line 734...
734
	3:i64 catalog_item_id,
734
	3:i64 catalog_item_id,
735
	4:i64 minimumBuyQuantity,
735
	4:i64 minimumBuyQuantity,
736
	5:i64 maximumBuyQuantity
736
	5:i64 maximumBuyQuantity
737
}
737
}
738
 
738
 
-
 
739
struct ItemPricing{
-
 
740
	1:i64 item_id,
-
 
741
	2:double selling_price,
-
 
742
	3:double mrp,
-
 
743
	4:i64 preferred_vendor,
-
 
744
	5:double private_deal_price
-
 
745
}
-
 
746
 
739
 
747
 
740
service CatalogService extends GenericService.GenericService{
748
service CatalogService extends GenericService.GenericService{
741
 
749
 
742
/**
750
/**
743
	Availability and inventory attributes	
751
	Availability and inventory attributes	
Line 1214... Line 1222...
1214
	
1222
	
1215
	bool updateBulkPricesOnProduction(1:i64 item_id, 2:list<BulkItemPricing> bulkItemPricingList);
1223
	bool updateBulkPricesOnProduction(1:i64 item_id, 2:list<BulkItemPricing> bulkItemPricingList);
1216
	
1224
	
1217
	list<i64> getCartByValue(1:list<i64> cartIds)
1225
	list<i64> getCartByValue(1:list<i64> cartIds)
1218
	
1226
	
-
 
1227
	bool updateItemPricing(1:list<ItemPricing> itemPricingList)
-
 
1228
	
1219
}
1229
}