Subversion Repositories SmartDukaan

Rev

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

Rev 3451 Rev 3469
Line 464... Line 464...
464
	i64 createPurchaseOrder(1:i64 warehouseId) throws (1:TransactionServiceException ex),
464
	i64 createPurchaseOrder(1:i64 warehouseId) throws (1:TransactionServiceException ex),
465
	
465
	
466
	/**
466
	/**
467
	Set the weight of the given order to the provided value. Will attempt to update the weight of the item in the catalog as well.
467
	Set the weight of the given order to the provided value. Will attempt to update the weight of the item in the catalog as well.
468
	*/
468
	*/
469
	Order updateWeight(1:i64 orderId, 2:double weight) throws (1:TransactionServiceException ex)
469
	Order updateWeight(1:i64 orderId, 2:double weight) throws (1:TransactionServiceException ex),
-
 
470
	
-
 
471
	/**
-
 
472
	Change the item to be shipped for this order. Also adjusts the reservation in the inventory accordingly.
-
 
473
	Currently, it also ensures that only a different color of the given item is shipped.
-
 
474
	*/
-
 
475
	Order changeItem(1:i64 orderId, 2:i64 itemId) throws (1:TransactionServiceException ex),
-
 
476
	
-
 
477
	/**
-
 
478
	Moves the given order to the given warehouse. Also adjusts the inventory reservations accordingly.
-
 
479
	*/
-
 
480
	Order shiftToWarehouse(1:i64 orderId, 2:i64 warehouseId) throws (1:TransactionServiceException ex)
470
}
481
}
471
482