Subversion Repositories SmartDukaan

Rev

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

Rev 8247 Rev 8282
Line 726... Line 726...
726
										OrderStatus.DOA_VALID_RESHIPPED,		OrderStatus.RTO_REFUNDED,
726
										OrderStatus.DOA_VALID_RESHIPPED,		OrderStatus.RTO_REFUNDED,
727
										OrderStatus.RTO_RESHIPPED, OrderStatus.COD_VERIFICATION_FAILED
727
										OrderStatus.RTO_RESHIPPED, OrderStatus.COD_VERIFICATION_FAILED
728
									]
728
									]
729
}
729
}
730
 
730
 
-
 
731
struct AmazonFbaSalesSnapshot {
-
 
732
	1:i64 dateOfSale
-
 
733
	2:i64 item_id
-
 
734
	3:i32 orderCount
-
 
735
	4:i64 amazonFbaInventory
-
 
736
	5:bool isOutOfStock
-
 
737
    6:double salePrice
-
 
738
    7:double minFbaPrice
-
 
739
    8:double minMfnPrice 
-
 
740
}
-
 
741
 
731
service TransactionService extends GenericService.GenericService{
742
service TransactionService extends GenericService.GenericService{
732
	
743
	
733
	i64 createTransaction(1:Transaction transaction) throws (1:TransactionServiceException ex),
744
	i64 createTransaction(1:Transaction transaction) throws (1:TransactionServiceException ex),
734
	
745
	
735
	//	Get transaction methods.
746
	//	Get transaction methods.
Line 1470... Line 1481...
1470
	 bool ebayOrderExists(1:i64 salesRecNumber, 2:string ebayListingId);
1481
	 bool ebayOrderExists(1:i64 salesRecNumber, 2:string ebayListingId);
1471
	 
1482
	 
1472
	 void updateOrderForEbay(1:Order order);
1483
	 void updateOrderForEbay(1:Order order);
1473
	 
1484
	 
1474
	 Order splitEbayOrder(1:i64 orderId, 2:i64 splitOrderQty, 3:i64 splitOrderItemId, 4:bool usePowerShip);
1485
	 Order splitEbayOrder(1:i64 orderId, 2:i64 splitOrderQty, 3:i64 splitOrderItemId, 4:bool usePowerShip);
-
 
1486
	 
-
 
1487
	 void addOrUpdateAmazonFbaSalesSnapshot(1:AmazonFbaSalesSnapshot amazonfbasalessnapshot);
-
 
1488
	 
-
 
1489
	 list<AmazonFbaSalesSnapshot> getAmazonFbaSalesSnapshotForDays(1:i32 days);
-
 
1490
	 
-
 
1491
     AmazonFbaSalesSnapshot getAmazonFbaSalesLatestSnapshotForItem(1:i64 item_id)
-
 
1492
	 
1475
}
1493
}