Subversion Repositories SmartDukaan

Rev

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

Rev 7427 Rev 7442
Line 266... Line 266...
266
	3:i64 status,
266
	3:i64 status,
267
	4:i64 timestamp,
267
	4:i64 timestamp,
268
	5:i64 description
268
	5:i64 description
269
}
269
}
270
 
270
 
-
 
271
struct AmazonOrdersToAcknowledge{
-
 
272
	1:string amazonOrderId,
-
 
273
	2:string amazonOrderItemId,
-
 
274
	3:string status,
-
 
275
	4:i64 transaction_id,
-
 
276
	5:i32 count
-
 
277
}
-
 
278
 
271
struct Transaction{
279
struct Transaction{
272
	1:i64 id,
280
	1:i64 id,
273
	2:list<Order> orders,
281
	2:list<Order> orders,
274
	3:i64 createdOn,
282
	3:i64 createdOn,
275
	4:TransactionStatus transactionStatus,
283
	4:TransactionStatus transactionStatus,
Line 1394... Line 1402...
1394
	 list<string> getAllEdcBanks();
1402
	 list<string> getAllEdcBanks();
1395
	 
1403
	 
1396
	 bool saveRefundAmountsForStoreOrder(1:i64 orderId, 2:i64 storeId, 3:double cashRefundAmount, 4:double cardRefundAmount);
1404
	 bool saveRefundAmountsForStoreOrder(1:i64 orderId, 2:i64 storeId, 3:double cashRefundAmount, 4:double cardRefundAmount);
1397
	 
1405
	 
1398
	 list<StoreOrderCollection> getCollectionsForStore(1:i64 storeId, 2:i64 startDate, 3:i64 endDate);
1406
	 list<StoreOrderCollection> getCollectionsForStore(1:i64 storeId, 2:i64 startDate, 3:i64 endDate);
-
 
1407
	 
-
 
1408
	 list<AmazonOrdersToAcknowledge> getAmazonOrdersToAcknowledge()
-
 
1409
	 
-
 
1410
	 void changeAmazonOrderStatus(1:string amazonOrderCode,2:string status)
1399
}
1411
}