Subversion Repositories SmartDukaan

Rev

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

Rev 19755 Rev 21838
Line 131... Line 131...
131
	45:bool holdOverride,
131
	45:bool holdOverride,
132
	46:i64 packQuantity,
132
	46:i64 packQuantity,
133
	47:i64 quantityStep,
133
	47:i64 quantityStep,
134
	48:i64 minimumBuyQuantity,
134
	48:i64 minimumBuyQuantity,
135
	49:i64 maximumBuyQuantity 
135
	49:i64 maximumBuyQuantity 
136
	50:optional double dealPrice
136
	50:optional double dealPrice,
-
 
137
	51:string hsnCode
137
}
138
}
138
 
139
 
139
struct Insurer{
140
struct Insurer{
140
	1:i64 id,
141
	1:i64 id,
141
	2:string name,
142
	2:string name,
Line 601... Line 602...
601
    9:i64 rank,
602
    9:i64 rank,
602
    10:i64 dealFreebieOption,
603
    10:i64 dealFreebieOption,
603
    11:bool isActive
604
    11:bool isActive
604
}
605
}
605
 
606
 
-
 
607
 
-
 
608
struct GstRate {
-
 
609
	1:double sgstRate,
-
 
610
	2:double cgstRate,
-
 
611
	3:double igstRate,
-
 
612
	4:string hsnCode
-
 
613
}
-
 
614
 
-
 
615
struct StateGstRates {
-
 
616
	1:string stateCode,
-
 
617
	2:map<string, GstRate> gstRatesMap;
-
 
618
}
-
 
619
 
606
struct MarketplaceHistory{
620
struct MarketplaceHistory{
607
	1:i64 item_id,
621
	1:i64 item_id,
608
	2:i64 source,
622
	2:i64 source,
609
	3:i64 timestamp,
623
	3:i64 timestamp,
610
	4:i64 lowest_possible_tp,
624
	4:i64 lowest_possible_tp,
Line 1242... Line 1256...
1242
	void bulkUpdateCatalog(1:list<BulkUploadCatalog> bulkUploadCatalog) throws (1:CatalogServiceException cex)
1256
	void bulkUpdateCatalog(1:list<BulkUploadCatalog> bulkUploadCatalog) throws (1:CatalogServiceException cex)
1243
	
1257
	
1244
	map<string, i64> getWarrantyInfoForItem(1:i64 catalogItemId, 2:ItemCondition itemCondition) throws (1:CatalogServiceException cex)
1258
	map<string, i64> getWarrantyInfoForItem(1:i64 catalogItemId, 2:ItemCondition itemCondition) throws (1:CatalogServiceException cex)
1245
	
1259
	
1246
	map<i64, map<string, i64>> getWarrantyInfoForItemList(1:list<i64> catalogItemIds, 2:ItemCondition itemCondition) throws (1:CatalogServiceException cex)
1260
	map<i64, map<string, i64>> getWarrantyInfoForItemList(1:list<i64> catalogItemIds, 2:ItemCondition itemCondition) throws (1:CatalogServiceException cex)
-
 
1261
	
-
 
1262
	StateGstRates getGstRatesByState(1:i64 stateId) throws (1:CatalogServiceException cex)
-
 
1263
	map<string, GstRate> getInterStateGstRates() throws (1:CatalogServiceException cex)
-
 
1264
	
-
 
1265
	list<string> getHsnCodesByCategory(1:i64  categoryId) throws(1:CatalogServiceException cex)
-
 
1266
	
1247
}
1267
}