Subversion Repositories SmartDukaan

Rev

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

Rev 8488 Rev 8532
Line 643... Line 643...
643
	8:string listingName,
643
	8:string listingName,
644
	9:double listingPrice,
644
	9:double listingPrice,
645
	10:string bluedartPaisaPayRef	
645
	10:string bluedartPaisaPayRef	
646
}
646
}
647
 
647
 
-
 
648
struct FbaItemPrices{
-
 
649
	 1:i64 item_id	
-
 
650
     2:double minFbaPrice,
-
 
651
     3:double minMfnPrice,
-
 
652
     4:double ourPrice,
-
 
653
     5:double salePrice,
-
 
654
     6:i64 minFbaPriceSnapshotDate
-
 
655
     7:i64 minMfnPriceSnapshotDate
-
 
656
     8:i64 ourPriceSnapshotDate
-
 
657
     9:i64 salePriceSnapshotDate
-
 
658
 
-
 
659
} 
-
 
660
 
648
struct SnapdealOrder {
661
struct SnapdealOrder {
649
	1:i64 orderId,
662
	1:i64 orderId,
650
	2:string referenceCode,
663
	2:string referenceCode,
651
	3:i64 subOrderId,
664
	3:i64 subOrderId,
652
	4:double listingPrice,
665
	4:double listingPrice,
Line 749... Line 762...
749
    8:double minMfnPrice
762
    8:double minMfnPrice
750
    9:double totalSale
763
    9:double totalSale
751
    10:double promotionSale
764
    10:double promotionSale
752
    11:i32 promotionOrderCount
765
    11:i32 promotionOrderCount
753
    12:double ourPrice
766
    12:double ourPrice
-
 
767
    13:i64 minFbaPriceSnapshotDate
-
 
768
    14:i64 minMfnPriceSnapshotDate
754
     
769
    15:i64 ourPriceSnapshotDate
-
 
770
    16:i64 salePriceSnapshotDate
755
}
771
}
756
 
772
 
757
service TransactionService extends GenericService.GenericService{
773
service TransactionService extends GenericService.GenericService{
758
	
774
	
759
	i64 createTransaction(1:Transaction transaction) throws (1:TransactionServiceException ex),
775
	i64 createTransaction(1:Transaction transaction) throws (1:TransactionServiceException ex),
Line 1509... Line 1525...
1509
     
1525
     
1510
     SnapdealOrder getSnapdealOrder(1:i64 orderId, 2:string referenceCode, 3:i64 subrderId)
1526
     SnapdealOrder getSnapdealOrder(1:i64 orderId, 2:string referenceCode, 3:i64 subrderId)
1511
     
1527
     
1512
     bool snapdealOrderExists(1:i64 subOrderId);
1528
     bool snapdealOrderExists(1:i64 subOrderId);
1513
     
1529
     
-
 
1530
     void updateLatestFbaPricesForItem(1:FbaItemPrices fbaitemprices)
-
 
1531
     
1514
}
1532
}