Subversion Repositories SmartDukaan

Rev

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

Rev 4495 Rev 4506
Line 205... Line 205...
205
	43:i64 promised_shipping_time,
205
	43:i64 promised_shipping_time,
206
	44:optional i64 reship_timestamp,
206
	44:optional i64 reship_timestamp,
207
	45:optional i64 refund_timestamp,
207
	45:optional i64 refund_timestamp,
208
	46:optional i64 new_order_id,
208
	46:optional i64 new_order_id,
209
	47:OrderStatus previousStatus,
209
	47:OrderStatus previousStatus,
210
	48:i64 vendorId
210
	48:i64 vendorId,
-
 
211
	49:optional i64 doa_auth_timestamp
211
}
212
}
212
 
213
 
213
struct OrderStatusAuditTrail{
214
struct OrderStatusAuditTrail{
214
	1:i64 id,
215
	1:i64 id,
215
	2:i64 orderId,
216
	2:i64 orderId,
Line 715... Line 716...
715
	
716
	
716
	/**
717
	/**
717
	Returns the order corresponding to an AWB number
718
	Returns the order corresponding to an AWB number
718
	*/
719
	*/
719
	Order getOrderForAwb(1:string awb) throws (1:TransactionServiceException ex)
720
	Order getOrderForAwb(1:string awb) throws (1:TransactionServiceException ex)
-
 
721
	
-
 
722
	/**
-
 
723
	Returns the order corresponding to a logistics provider id for a given order status
-
 
724
	*/
-
 
725
	list<Order> getOrdersForProviderForStatus(1:i64 logistics_provider_id, 2:OrderStatus order_status) throws (1:TransactionServiceException ex)
720
 
726
 
721
}
727
}
722
728