Subversion Repositories SmartDukaan

Rev

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

Rev 8942 Rev 8961
Line 672... Line 672...
672
	4:double listingPrice,
672
	4:double listingPrice,
673
	5:string productName,
673
	5:string productName,
674
	6:i64 snapdealTxnDate
674
	6:i64 snapdealTxnDate
675
}
675
}
676
 
676
 
-
 
677
struct FlipkartOrder {
-
 
678
	1:string flipkartOrderId,
-
 
679
	2:string flipkartSubOrderId,
-
 
680
	3:i64 flipkartTxnDate,
-
 
681
	4:i64 orderId,
-
 
682
	5:double shippingPrice,
-
 
683
	6:double octroiFee,  
-
 
684
	7:double emiFee
-
 
685
}
-
 
686
 
677
struct OrderStatusGroups{
687
struct OrderStatusGroups{
678
	1:list<OrderStatus> codCancellable = [OrderStatus.COD_VERIFICATION_PENDING,
688
	1:list<OrderStatus> codCancellable = [OrderStatus.COD_VERIFICATION_PENDING,
679
										OrderStatus.SUBMITTED_FOR_PROCESSING,
689
										OrderStatus.SUBMITTED_FOR_PROCESSING,
680
										OrderStatus.ACCEPTED,
690
										OrderStatus.ACCEPTED,
681
										OrderStatus.INVENTORY_LOW,
691
										OrderStatus.INVENTORY_LOW,
Line 1534... Line 1544...
1534
     
1544
     
1535
     bool snapdealOrderExists(1:i64 subOrderId, 2:string referenceCode);
1545
     bool snapdealOrderExists(1:i64 subOrderId, 2:string referenceCode);
1536
     
1546
     
1537
     void updateLatestFbaPricesForItem(1:FbaItemPrices fbaitemprices)
1547
     void updateLatestFbaPricesForItem(1:FbaItemPrices fbaitemprices)
1538
     
1548
     
-
 
1549
     bool flipkartOrderExists(1:string flipkartOrderId, 2:string flipkartSubOrderId)
-
 
1550
     
-
 
1551
     void createFlipkartOrder(1:FlipkartOrder flipkartOrder)
-
 
1552
     
1539
}
1553
}