Subversion Repositories SmartDukaan

Rev

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

Rev 735 Rev 757
Line 155... Line 155...
155
	list<Order> getOrdersForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:OrderStatus status) throws (1:TransactionServiceException ex),
155
	list<Order> getOrdersForCustomer(1:i64 customerId, 2:i64 from_date, 3:i64 to_date, 4:OrderStatus status) throws (1:TransactionServiceException ex),
156
	i64 createOrder(1:Order order) throws (1:TransactionServiceException ex),
156
	i64 createOrder(1:Order order) throws (1:TransactionServiceException ex),
157
	Order getOrder(1:i64 id) throws (1:TransactionServiceException ex),
157
	Order getOrder(1:i64 id) throws (1:TransactionServiceException ex),
158
	list<LineItem> getLineItemsForOrder(1:i64 orderId) throws (1:TransactionServiceException ex),
158
	list<LineItem> getLineItemsForOrder(1:i64 orderId) throws (1:TransactionServiceException ex),
159
	
159
	
-
 
160
	/**
-
 
161
	Marks all BILLED orders for a warehouse and a provider as SHIPPED_FROM_WH
-
 
162
	*/
-
 
163
	bool markOrdersAsManifested(1:i64 warehouseId, 2:i64 providerId) throws (1:TransactionServiceException ex),
160
	//Alerts apis 
164
	//Alerts apis 
161
	list<Alert> getAlerts(1:i64 orderId, 2:bool valid),
165
	list<Alert> getAlerts(1:i64 orderId, 2:bool valid),
162
	void setAlert(1:i64 orderId, 2:bool unset, 3:i64 type, 4: string comment),
166
	void setAlert(1:i64 orderId, 2:bool unset, 3:i64 type, 4: string comment),
163
}
167
}
164
 
168