Subversion Repositories SmartDukaan

Rev

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

Rev 7808 Rev 7968
Line 190... Line 190...
190
	 Increases the reservation count for an item in a warehouse. Should always succeed normally.
190
	 Increases the reservation count for an item in a warehouse. Should always succeed normally.
191
	*/
191
	*/
192
	bool reserveItemInWarehouse(1:i64 itemId, 2:i64 warehouseId, 3:i64 sourceId, 4:i64 orderId, 5:i64 createdTimestamp, 6:i64 promisedShippingTimestamp, 7:double quantity) throws (1:InventoryServiceException cex),
192
	bool reserveItemInWarehouse(1:i64 itemId, 2:i64 warehouseId, 3:i64 sourceId, 4:i64 orderId, 5:i64 createdTimestamp, 6:i64 promisedShippingTimestamp, 7:double quantity) throws (1:InventoryServiceException cex),
193
	
193
	
194
	/**
194
	/**
-
 
195
	 Updates the reservation for Order
-
 
196
	*/
-
 
197
	bool updateReservationForOrder(1:i64 itemId, 2:i64 warehouseId, 3:i64 sourceId, 4:i64 orderId, 5:i64 createdTimestamp, 6:i64 promisedShippingTimestamp, 7:double quantity) throws (1:InventoryServiceException cex),
-
 
198
	
-
 
199
	/**
195
	 Decreases the reservation count for an item in a warehouse. Should always succeed normally.
200
	 Decreases the reservation count for an item in a warehouse. Should always succeed normally.
196
	*/
201
	*/
197
	bool reduceReservationCount(1:i64 itemId, 2:i64 warehouseId, 3:i64 sourceId, 4:i64 orderId, 5:double quantity) throws (1:InventoryServiceException cex),
202
	bool reduceReservationCount(1:i64 itemId, 2:i64 warehouseId, 3:i64 sourceId, 4:i64 orderId, 5:double quantity) throws (1:InventoryServiceException cex),
198
 
203
 
199
	/**
204
	/**