Subversion Repositories SmartDukaan

Rev

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

Rev 7311 Rev 7322
Line 558... Line 558...
558
    3:string email
558
    3:string email
559
}
559
}
560
 
560
 
561
struct AmazonOrder {
561
struct AmazonOrder {
562
    1:i64 orderId,
562
    1:i64 orderId,
563
    2:i64 amazonOrderCode,
563
    2:string amazonOrderCode,
564
    3:i64 amazonOrderItemCode,
564
    3:string amazonOrderItemCode,
565
    4:i64 transactionId,
565
    4:i64 transactionId,
566
    5:i64 item_id,
566
    5:i64 item_id
567
    6:string status
567
    6:string status
568
}
568
}
569
 
569
 
570
struct OrderStatusGroups{
570
struct OrderStatusGroups{
571
	1:list<OrderStatus> codCancellable = [OrderStatus.COD_VERIFICATION_PENDING,
571
	1:list<OrderStatus> codCancellable = [OrderStatus.COD_VERIFICATION_PENDING,
Line 1324... Line 1324...
1324
	 
1324
	 
1325
	 bool deleteFrcs(1:list<i64> frcIdsToDelete);
1325
	 bool deleteFrcs(1:list<i64> frcIdsToDelete);
1326
	 
1326
	 
1327
	 void addAmazonOrder(1:AmazonOrder amazonOrder);
1327
	 void addAmazonOrder(1:AmazonOrder amazonOrder);
1328
	 
1328
	 
1329
	 bool getOrderForAmazonOrderCode(1:i64 orderId, 2:string status);
1329
	 bool updateAmazonOrderStatus(1:i64 orderId,2:string status);
1330
	 
1330
	 
1331
	 list<Order> getAmazonOrdersShipped(1:i64 interval);
1331
	 list<Order> getAmazonOrdersShipped(1:i64 interval);
1332
	 
1332
	 
1333
	 list<Order> getAmazonOrdersCancelled(1:i64 interval);
1333
	 list<Order> getAmazonOrdersCancelled(1:i64 interval);
1334
	 
1334
	 
-
 
1335
	 AmazonOrder getAmazonOrder(1:i64 orderId)
-
 
1336
	 
1335
}
1337
}