Subversion Repositories SmartDukaan

Rev

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

Rev 9909 Rev 9945
Line 420... Line 420...
420
	6:bool isPriceOverride
420
	6:bool isPriceOverride
421
	7:bool isListedOnSource
421
	7:bool isListedOnSource
422
    
422
    
423
}
423
}
424
 
424
 
-
 
425
struct FlipkartItem{
-
 
426
    1:i64 item_id
-
 
427
    2:double exceptionPrice
-
 
428
    3:i64 warehouseId
-
 
429
    4:double commissionValue
-
 
430
    5:double serviceTaxValue
-
 
431
    6:double maxNlc
-
 
432
    7:string skuAtFlipkart
-
 
433
    8:bool isListedOnFlipkart
-
 
434
    9:bool suppressPriceFeed
-
 
435
    10:bool suppressInventoryFeed
-
 
436
    11:i64 updatedOn
-
 
437
    12:string updatedBy
-
 
438
}
-
 
439
 
-
 
440
 
425
service CatalogService extends GenericService.GenericService{
441
service CatalogService extends GenericService.GenericService{
426
 
442
 
427
/**
443
/**
428
	Availability and inventory attributes	
444
	Availability and inventory attributes	
429
*/
445
*/
Line 791... Line 807...
791
	
807
	
792
	void updateItemHoldInventory(1:map<i64,i64> itemHoldMap)	
808
	void updateItemHoldInventory(1:map<i64,i64> itemHoldMap)	
793
	
809
	
794
	void updateNlcAtMarketplaces(1:i64 item_id,2:i64 vendor_id,double nlc)
810
	void updateNlcAtMarketplaces(1:i64 item_id,2:i64 vendor_id,double nlc)
795
	
811
	
-
 
812
	list<FlipkartItem> getAllFlipkartItems()
-
 
813
	
796
}
814
}