Subversion Repositories SmartDukaan

Rev

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

Rev 29403 Rev 29418
Line 35... Line 35...
35
	private String airwayBillNo;
35
	private String airwayBillNo;
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;
-
 
41
	private int delayAfterShipping;
-
 
42
 
-
 
43
	public int getDelayAfterShipping() {
-
 
44
		return delayAfterShipping;
-
 
45
	}
-
 
46
 
-
 
47
	public void setDelayAfterShipping(int delayAfterShipping) {
-
 
48
		this.delayAfterShipping = delayAfterShipping;
-
 
49
	}
-
 
50
 
-
 
51
	public String getInvoiceNumber() {
-
 
52
		return invoiceNumber;
-
 
53
	}
-
 
54
 
-
 
55
	public void setInvoiceNumber(String invoiceNumber) {
-
 
56
		this.invoiceNumber = invoiceNumber;
-
 
57
	}
40
 
58
 
41
	public LocalDateTime getCancellationTimestamp() {
59
	public LocalDateTime getCancellationTimestamp() {
42
		return cancellationTimestamp;
60
		return cancellationTimestamp;
43
	}
61
	}
44
 
62
 
Line 336... Line 354...
336
				+ ", transactionId=" + transactionId + ", shippingRefund=" + shippingRefund + ", itemId=" + itemId
354
				+ ", transactionId=" + transactionId + ", shippingRefund=" + shippingRefund + ", itemId=" + itemId
337
				+ ", productGoup=" + productGoup + ", brand=" + brand + ", modelNumber=" + modelNumber + ", modelName="
355
				+ ", productGoup=" + productGoup + ", brand=" + brand + ", modelNumber=" + modelNumber + ", modelName="
338
				+ modelName + ", color=" + color + ", quantity=" + quantity + ", totalPrice=" + totalPrice
356
				+ modelName + ", color=" + color + ", quantity=" + quantity + ", totalPrice=" + totalPrice
339
				+ ", extraInfo=" + extraInfo + ", shippingCost=" + shippingCost + ", imageUrl=" + imageUrl
357
				+ ", extraInfo=" + extraInfo + ", shippingCost=" + shippingCost + ", imageUrl=" + imageUrl
340
				+ ", cancellable=" + cancellable + ", providerName=" + providerName + ", providerId=" + providerId
358
				+ ", cancellable=" + cancellable + ", providerName=" + providerName + ", providerId=" + providerId
341
				+ ", airwayBillNo=" + airwayBillNo + ", delayReason=" + delayReason + ", deliveryTimestamp="
359
				+ ", airwayBillNo=" + airwayBillNo + ", delayReason=" + delayReason + ", cancellationTimestamp="
-
 
360
				+ cancellationTimestamp + ", billingTimestamp=" + billingTimestamp + ", shippingTimestamp="
-
 
361
				+ shippingTimestamp + ", invoiceNumber=" + invoiceNumber + ", delayAfterShipping=" + delayAfterShipping
342
				+ deliveryTimestamp + ", createTimestamp=" + createTimestamp + "]";
362
				+ ", deliveryTimestamp=" + deliveryTimestamp + ", createTimestamp=" + createTimestamp + "]";
343
	}
363
	}
344
 
364
 
345
}
365
}
346
366