Subversion Repositories SmartDukaan

Rev

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

Rev 7272 Rev 7281
Line 165... Line 165...
165
struct FreebieItem {
165
struct FreebieItem {
166
	1:i64 itemId,
166
	1:i64 itemId,
167
	2:i64 freebieItemId
167
	2:i64 freebieItemId
168
}
168
}
169
 
169
 
170
 
-
 
171
struct BrandInfo {
170
struct BrandInfo {
172
	1:string name,
171
	1:string name,
173
	2:string serviceCenterLocatorUrl
172
	2:string serviceCenterLocatorUrl
174
}
173
}
175
 
174
 
Line 179... Line 178...
179
	3:double minPrice,
178
	3:double minPrice,
180
	4:double maxPrice,
179
	4:double maxPrice,
181
	5:double minAdvancePrice
180
	5:double minAdvancePrice
182
}
181
}
183
 
182
 
-
 
183
struct Amazonlisted{
-
 
184
	1:i64 itemid,
-
 
185
    2:string asin,
-
 
186
    3:string name,
-
 
187
    4:string brand,
-
 
188
    5:string model,
-
 
189
    6:string manufacturer_name,
-
 
190
    7:string part_number,
-
 
191
    8:string ean,
-
 
192
    9:string upc 
-
 
193
    10:double fbaPrice,
-
 
194
    11:double sellingPrice,
-
 
195
    12:bool isFba,
-
 
196
    13:bool isNonFba,
-
 
197
    14:bool isInventoryOverride,
-
 
198
    15:string color,
-
 
199
    16:string category
-
 
200
    }
-
 
201
 
184
service CatalogService extends GenericService.GenericService{
202
service CatalogService extends GenericService.GenericService{
185
 
203
 
186
/**
204
/**
187
	Availability and inventory attributes	
205
	Availability and inventory attributes	
188
*/
206
*/
Line 442... Line 460...
442
	map<string, BrandInfo> getBrandInfo()
460
	map<string, BrandInfo> getBrandInfo()
443
	
461
	
444
	StorePricing getStorePricing(1:i64 itemId),
462
	StorePricing getStorePricing(1:i64 itemId),
445
	
463
	
446
	void updateStorePricing(1:StorePricing sp)
464
	void updateStorePricing(1:StorePricing sp)
-
 
465
	
-
 
466
	list<Amazonlisted> getAllAmazonListedItems(),
-
 
467
	
-
 
468
	Amazonlisted getAmazonItemDetails(1:i64 itemId),
-
 
469
	
-
 
470
	void updateAmazonItemDetails(1:i64 itemId, 2:double fbaPrice, 3:double sellingPrice, 4:bool isFba, 5:bool isNonFba, 6:bool isInventoryOverride),
-
 
471
	
-
 
472
	void addAmazonItem(1:Amazonlisted amazonlisted)
-
 
473
	
-
 
474
	
447
}
475
}