Subversion Repositories SmartDukaan

Rev

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

Rev 7460 Rev 7530
Line 569... Line 569...
569
 
569
 
570
struct SourceDetail {
570
struct SourceDetail {
571
	1:i64 id,
571
	1:i64 id,
572
    2:string name,
572
    2:string name,
573
    3:string email,
573
    3:string email,
574
    4:string tinNumber
574
    4:string tinNumber,
-
 
575
    5:i64 lastUpdatedOn
575
}
576
}
576
 
577
 
577
struct AmazonOrder {
578
struct AmazonOrder {
578
    1:i64 orderId,
579
    1:i64 orderId,
579
    2:string amazonOrderCode,
580
    2:string amazonOrderCode,
Line 1408... Line 1409...
1408
	 list<AmazonOrdersToAcknowledge> getAmazonOrdersToAcknowledge();
1409
	 list<AmazonOrdersToAcknowledge> getAmazonOrdersToAcknowledge();
1409
	 
1410
	 
1410
	 void changeAmazonOrderStatus(1:string amazonOrderCode,2:string status);
1411
	 void changeAmazonOrderStatus(1:string amazonOrderCode,2:string status);
1411
	 
1412
	 
1412
	 bool updateTimestampForAmazonOrder(1:i64 orderId, 2:i64 expectedDelivery, 3:i64 promisedDelivery, 4:i64 expectedShipping , 5:i64 promisedShipping);
1413
	 bool updateTimestampForAmazonOrder(1:i64 orderId, 2:i64 expectedDelivery, 3:i64 promisedDelivery, 4:i64 expectedShipping , 5:i64 promisedShipping);
-
 
1414
	 
-
 
1415
	 bool updateSourceDetailTimestamp(1:i64 id , 2:i64 lastUpdatedOn);
1413
}
1416
}