Subversion Repositories SmartDukaan

Rev

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

Rev 4607 Rev 4647
Line 206... Line 206...
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
	49:optional i64 doa_auth_timestamp,
-
 
212
	50:string delayReasonText
212
}
213
}
213
 
214
 
214
struct OrderStatusAuditTrail{
215
struct OrderStatusAuditTrail{
215
	1:i64 id,
216
	1:i64 id,
216
	2:i64 orderId,
217
	2:i64 orderId,
Line 637... Line 638...
637
	/**
638
	/**
638
	Adds the given delay reason to the given order.
639
	Adds the given delay reason to the given order.
639
	Increases the expected delivery time of the given order by the given no. of days.
640
	Increases the expected delivery time of the given order by the given no. of days.
640
	Raises an exception if no order with the given id can be found.
641
	Raises an exception if no order with the given id can be found.
641
	*/
642
	*/
642
	bool addDelayReason(1:i64 orderId, 2:DelayReason delayReason, 3:i64 furtherDelay) throws (1:TransactionServiceException ex),
643
	bool addDelayReason(1:i64 orderId, 2:DelayReason delayReason, 3:i64 furtherDelay, 4:string delayReasonText) throws (1:TransactionServiceException ex),
643
	
644
	
644
	/**
645
	/**
645
	Marks the COD orders with given AWB nos. as having been processed.
646
	Marks the COD orders with given AWB nos. as having been processed.
646
	Updates the captured amount for the corresponding payment.
647
	Updates the captured amount for the corresponding payment.
647
	
648