Subversion Repositories SmartDukaan

Rev

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

Rev 7281 Rev 7291
Line 69... Line 69...
69
	36:bool activeOnStore,
69
	36:bool activeOnStore,
70
	37:double vatPercentage,
70
	37:double vatPercentage,
71
	38:bool showSellingPrice,
71
	38:bool showSellingPrice,
72
	39:string bestDealsDetailsText,
72
	39:string bestDealsDetailsText,
73
	40:string bestDealsDetailsLink,
73
	40:string bestDealsDetailsLink,
74
	41:i64 preferredInsurer
74
	41:i64 preferredInsurer,
-
 
75
	42:string asin,
-
 
76
	43:i64 defaultInventory,
-
 
77
	44:i64 holdInventory
75
}
78
}
76
 
79
 
77
struct Insurer{
80
struct Insurer{
78
	1:i64 id,
81
	1:i64 id,
79
	2:string name,
82
	2:string name,
Line 455... Line 458...
455
	
458
	
456
	void addOrUpdateFreebieForItem(1:FreebieItem freebieItem),
459
	void addOrUpdateFreebieForItem(1:FreebieItem freebieItem),
457
	
460
	
458
	void addOrUpdateBrandInfo(1:BrandInfo brandInfo),
461
	void addOrUpdateBrandInfo(1:BrandInfo brandInfo),
459
	
462
	
460
	map<string, BrandInfo> getBrandInfo()
463
	map<string, BrandInfo> getBrandInfo(),
461
	
464
	
462
	StorePricing getStorePricing(1:i64 itemId),
465
	StorePricing getStorePricing(1:i64 itemId),
463
	
466
	
464
	void updateStorePricing(1:StorePricing sp)
467
	void updateStorePricing(1:StorePricing sp),
465
	
468
	
466
	list<Amazonlisted> getAllAmazonListedItems(),
469
	list<Amazonlisted> getAllAmazonListedItems(),
467
	
470
	
468
	Amazonlisted getAmazonItemDetails(1:i64 itemId),
471
	Amazonlisted getAmazonItemDetails(1:i64 itemId),
469
	
472
	
470
	void updateAmazonItemDetails(1:i64 itemId, 2:double fbaPrice, 3:double sellingPrice, 4:bool isFba, 5:bool isNonFba, 6:bool isInventoryOverride),
473
	void updateAmazonItemDetails(1:i64 itemId, 2:double fbaPrice, 3:double sellingPrice, 4:bool isFba, 5:bool isNonFba, 6:bool isInventoryOverride),
471
	
474
	
472
	void addAmazonItem(1:Amazonlisted amazonlisted)
475
	void addAmazonItem(1:Amazonlisted amazonlisted),
473
	
476
	
-
 
477
	list<Item> getAsinItems(),
-
 
478
	
-
 
479
	list<Amazonlisted> getAllFbaListedItems(),
-
 
480
	
-
 
481
	list<Amazonlisted> getAllNonFbaListedItems()	
474
	
482
	
475
}
483
}