Subversion Repositories SmartDukaan

Rev

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

Rev 18002 Rev 18150
Line 126... Line 126...
126
	41:i64 preferredInsurer,
126
	41:i64 preferredInsurer,
127
	42:string asin,
127
	42:string asin,
128
	43:i64 defaultInventory,
128
	43:i64 defaultInventory,
129
	44:i64 holdInventory,
129
	44:i64 holdInventory,
130
	45:bool holdOverride,
130
	45:bool holdOverride,
131
	46:i64 packQuantity
131
	46:i64 packQuantity,
-
 
132
	47:i64 quantityStep,
-
 
133
	48:i64 minimumBuyQuantity 
132
}
134
}
133
 
135
 
134
struct Insurer{
136
struct Insurer{
135
	1:i64 id,
137
	1:i64 id,
136
	2:string name,
138
	2:string name,
Line 715... Line 717...
715
	5:i64 defaultWarehouseId
717
	5:i64 defaultWarehouseId
716
	6:i64 addedTimestamp,
718
	6:i64 addedTimestamp,
717
	7:string addedBy
719
	7:string addedBy
718
}
720
}
719
 
721
 
-
 
722
struct BulkItemPricing{
-
 
723
	1:i64 item_id,
-
 
724
	2:i64 quantity,
-
 
725
	3:double price,
-
 
726
	4:i64 id
-
 
727
}
-
 
728
 
720
service CatalogService extends GenericService.GenericService{
729
service CatalogService extends GenericService.GenericService{
721
 
730
 
722
/**
731
/**
723
	Availability and inventory attributes	
732
	Availability and inventory attributes	
724
*/
733
*/
Line 1180... Line 1189...
1180
	
1189
	
1181
	list<Amazonlisted> getAllItemstoListOnFbd()
1190
	list<Amazonlisted> getAllItemstoListOnFbd()
1182
	
1191
	
1183
	list<Amazonlisted> getAllFbdListedItems()
1192
	list<Amazonlisted> getAllFbdListedItems()
1184
	
1193
	
-
 
1194
	map<i64,list<BulkItemPricing>> getBulkPricingForItems(1:list<i64> itemIds)
-
 
1195
	
-
 
1196
	BulkItemPricing addBulkPricingForItem(1:BulkItemPricing bulkItemPricing);
-
 
1197
	
-
 
1198
	bool deleteBulkPricingForItemById(1:i64 id);
-
 
1199
	
-
 
1200
	bool deleteBulkPricingForItem(1:i64 item_id);
-
 
1201
	
-
 
1202
	list<BulkItemPricing> getBulkPricingByItemId(1:i64 item_id);
-
 
1203
	
1185
}
1204
}