Subversion Repositories SmartDukaan

Rev

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

Rev 12872 Rev 12979
Line 394... Line 394...
394
    RECHARGE_SUCCESSFUL = 5,
394
    RECHARGE_SUCCESSFUL = 5,
395
    RECHARGE_FAILED_REFUNDED = 6,
395
    RECHARGE_FAILED_REFUNDED = 6,
396
    REFUNDED = 7,
396
    REFUNDED = 7,
397
    PARTIALLY_REFUNDED = 8,
397
    PARTIALLY_REFUNDED = 8,
398
    INIT = 9,
398
    INIT = 9,
399
    RECHARGE_UNKNOWN = 10
399
    RECHARGE_UNKNOWN = 10,
-
 
400
    RECHARGE_IN_PROCESS = 11
400
}
401
}
401
 
402
 
402
enum OrderSource {
403
enum OrderSource {
403
	WEBSITE = 1,
404
	WEBSITE = 1,
404
	STORE = 2,
405
	STORE = 2,
Line 410... Line 411...
410
	FLIPKART = 8,
411
	FLIPKART = 8,
411
	MOBILESITE = 9,
412
	MOBILESITE = 9,
412
	JUNGLEE = 10	
413
	JUNGLEE = 10	
413
}
414
}
414
 
415
 
-
 
416
enum RechargeMode {
-
 
417
	SYNC = 1,
-
 
418
	ASYNC = 2
-
 
419
}
-
 
420
 
415
struct RechargeOrder {
421
struct RechargeOrder {
416
    1:i64 id,
422
    1:i64 id,
417
    2:string displayId,
423
    2:string displayId,
418
    3:i64 totalAmount,
424
    3:i64 totalAmount,
419
    4:i64 walletAmount,
425
    4:i64 walletAmount,
Line 1646... Line 1652...
1646
	 
1652
	 
1647
	 void addUpdateFaOrdersBulk(1:list<FlipkartAdvantageOrder> faOrdersList) throws (1:TransactionServiceException ex)
1653
	 void addUpdateFaOrdersBulk(1:list<FlipkartAdvantageOrder> faOrdersList) throws (1:TransactionServiceException ex)
1648
	 
1654
	 
1649
	 void addInvoiceDetailsToOrders(1:i64 transactionId, 2:i64 customerId) throws (1:TransactionServiceException ex)
1655
	 void addInvoiceDetailsToOrders(1:i64 transactionId, 2:i64 customerId) throws (1:TransactionServiceException ex)
1650
	 
1656
	 
1651
	 bool flipkartFaOrderExists(1:string fkOrderId, 2:string fkOrderItemId) throws (1:TransactionServiceException ex)
1657
	 void addUpdateFaOrdersBulk(list<FlipkartAdvantageOrder> faOrdersList) throws (1:TransactionServiceException ex)
-
 
1658
	 
-
 
1659
	 RechargeOrder getRcgOrderStatus(1:i64 rechargeOrderId,2:bool isFinal)
-
 
1660
	 
-
 
1661
	 RechargeTransaction getRcgTransactionStatus(1:i64 rechargeTransactionId,2:bool isFinal)
1652
}
1662
}
1653
1663