Subversion Repositories SmartDukaan

Rev

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

Rev 11015 Rev 11076
Line 484... Line 484...
484
 
484
 
485
struct MarketplaceHistory{
485
struct MarketplaceHistory{
486
	1:i64 item_id,
486
	1:i64 item_id,
487
	2:i64 source,
487
	2:i64 source,
488
	3:i64 timestamp,
488
	3:i64 timestamp,
489
	4:double lowest_possible_tp,
489
	4:i64 lowest_possible_tp,
490
	5:double lowest_possible_sp,
490
	5:i64 lowest_possible_sp,
491
	6:i64 ourInventory,
491
	6:i64 ourInventory,
492
	7:i64 otherInventory,
492
	7:i64 otherInventory,
493
	8:i64 secondLowestInventory,
493
	8:i64 secondLowestInventory,
494
	9:i64 ourRank,
494
	9:i64 ourRank,
495
	10:double ourOfferPrice,
495
	10:i64 ourOfferPrice,
496
	11:double ourSellingPrice,
496
	11:i64 ourSellingPrice,
497
	12:double ourTp,
497
	12:i64 ourTp,
498
	13:double ourNlc,
498
	13:i64 ourNlc,
499
	14:CompetitionCategory competitiveCategory,
499
	14:CompetitionCategory competitiveCategory,
500
	15:i64 risky,
500
	15:i64 risky,
501
	16:double lowestOfferPrice,
501
	16:i64 lowestOfferPrice,
502
	17:double lowestSellingPrice,
502
	17:i64 lowestSellingPrice,
503
	18:double lowestTp,
503
	18:i64 lowestTp,
504
	19:string lowestSellerName,
504
	19:string lowestSellerName,
505
	20:double proposedSellingPrice,
505
	20:i64 proposedSellingPrice,
506
	21:double proposedTp,
506
	21:i64 proposedTp,
507
	22:double targetNlc,
507
	22:i64 targetNlc,
508
	23:SalesPotential salesPotential,
508
	23:SalesPotential salesPotential,
509
	24:string secondLowestSellerName,
509
	24:string secondLowestSellerName,
510
	25:double secondLowestSellingPrice,
510
	25:i64 secondLowestSellingPrice,
511
	26:double secondLowestOfferPrice,
511
	26:i64 secondLowestOfferPrice,
512
	27:double secondLowestTp,
512
	27:i64 secondLowestTp,
513
	28:double marginIncreasedPotential,
513
	28:i64 marginIncreasedPotential,
514
	29:double margin,
514
	29:i64 margin,
515
	30:bool ourEnoughStock,
515
	30:bool ourEnoughStock,
516
	31:i64 totalSeller,
516
	31:i64 totalSeller,
517
	32:double averageSale,
517
	32:double averageSale,
518
	33:bool toGroup
518
	33:bool toGroup,
-
 
519
	34:Decision decision,
-
 
520
	35:string reason
519
}
521
}
520
 
522
 
521
 
523
 
522
service CatalogService extends GenericService.GenericService{
524
service CatalogService extends GenericService.GenericService{
523
 
525