Subversion Repositories SmartDukaan

Rev

Rev 29418 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29418 Rev 29420
Line 36... Line 36...
36
	private String delayReason;
36
	private String delayReason;
37
	private LocalDateTime cancellationTimestamp;
37
	private LocalDateTime cancellationTimestamp;
38
	private LocalDateTime billingTimestamp;
38
	private LocalDateTime billingTimestamp;
39
	private LocalDateTime shippingTimestamp;
39
	private LocalDateTime shippingTimestamp;
40
	private String invoiceNumber;
40
	private String invoiceNumber;
-
 
41
	private LocalDateTime expectedShipping;
41
	private int delayAfterShipping;
42
	private int delayAfterShipping;
-
 
43
	private TrackingModel trackingModel;
-
 
44
 
-
 
45
	public TrackingModel getTrackingModel() {
-
 
46
		return trackingModel;
-
 
47
	}
-
 
48
 
-
 
49
	public void setTrackingModel(TrackingModel trackingModel) {
-
 
50
		this.trackingModel = trackingModel;
-
 
51
	}
-
 
52
 
-
 
53
	public LocalDateTime getExpectedShipping() {
-
 
54
		return expectedShipping;
-
 
55
	}
-
 
56
 
-
 
57
	public void setExpectedShipping(LocalDateTime expectedShipping) {
-
 
58
		this.expectedShipping = expectedShipping;
-
 
59
	}
42
 
60
 
43
	public int getDelayAfterShipping() {
61
	public int getDelayAfterShipping() {
44
		return delayAfterShipping;
62
		return delayAfterShipping;
45
	}
63
	}
46
 
64