Subversion Repositories SmartDukaan

Rev

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

Rev 7075 Rev 7080
Line 477... Line 477...
477
enum PayMethod{
477
enum PayMethod{
478
	CASH = 1,
478
	CASH = 1,
479
	CARD = 2
479
	CARD = 2
480
}
480
}
481
 
481
 
-
 
482
struct FRC {
-
 
483
    1:i64 id,
-
 
484
    2:i64 operatorId,
-
 
485
    3:i64 circleId,
-
 
486
    4:i64 denomination,
-
 
487
    5:i64 maxDiscount
-
 
488
}
-
 
489
 
482
struct RechargeTransaction{
490
struct RechargeTransaction{
483
    1:i64 id,
491
    1:i64 id,
484
    2:i64 storeId,
492
    2:i64 storeId,
485
    3:double amount,
493
    3:double amount,
486
    4:i64 transactionTime,
494
    4:i64 transactionTime,
Line 497... Line 505...
497
    15:i64 operatorId,
505
    15:i64 operatorId,
498
    16:string plan,
506
    16:string plan,
499
    17:string ipAddress,
507
    17:string ipAddress,
500
    18:string name,
508
    18:string name,
501
    19:string cafNum,
509
    19:string cafNum,
502
    20:string simNum
510
    20:string simNum,
-
 
511
    21:string alternateNumber
503
}
512
}
504
 
513
 
505
struct OrderStatusGroups{
514
struct OrderStatusGroups{
506
	1:list<OrderStatus> codCancellable = [OrderStatus.COD_VERIFICATION_PENDING,
515
	1:list<OrderStatus> codCancellable = [OrderStatus.COD_VERIFICATION_PENDING,
507
										OrderStatus.SUBMITTED_FOR_PROCESSING,
516
										OrderStatus.SUBMITTED_FOR_PROCESSING,
Line 1226... Line 1235...
1226
	 binary retrieveInvoice(1:i64 orderId, 2:i64 userId);
1235
	 binary retrieveInvoice(1:i64 orderId, 2:i64 userId);
1227
	 
1236
	 
1228
	 list<string> receiveUpdatesForRedExpress(1:string awbNumber);
1237
	 list<string> receiveUpdatesForRedExpress(1:string awbNumber);
1229
	 
1238
	 
1230
	 RechargeTransaction createRechargeTransaction(1:RechargeTransaction thriftRechargeTransaction);
1239
	 RechargeTransaction createRechargeTransaction(1:RechargeTransaction thriftRechargeTransaction);
-
 
1240
	 
-
 
1241
	 RechargeTransaction getRechargeTransaction(1:i64 rechargeId);
-
 
1242
	 
-
 
1243
	 list<FRC> getFRCs(1:i64 circleId, 2:i64 operatorId);
1231
}
1244
}