Subversion Repositories SmartDukaan

Rev

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

Rev 26304 Rev 29093
Line 119... Line 119...
119
	private String itemDescription;
119
	private String itemDescription;
120
 
120
 
121
	@Transient
121
	@Transient
122
	private LocalDateTime activatedTimestamp;
122
	private LocalDateTime activatedTimestamp;
123
	
123
	
-
 
124
	@Transient
-
 
125
	private boolean priceDropValidated;
-
 
126
	
124
	public LocalDateTime getActivatedTimestamp() {
127
	public LocalDateTime getActivatedTimestamp() {
125
		return activatedTimestamp;
128
		return activatedTimestamp;
126
	}
129
	}
127
 
130
 
128
	public void setActivatedTimestamp(LocalDateTime activatedTimestamp) {
131
	public void setActivatedTimestamp(LocalDateTime activatedTimestamp) {
Line 421... Line 424...
421
				return false;
424
				return false;
422
		} else if (!updateTimestamp.equals(other.updateTimestamp))
425
		} else if (!updateTimestamp.equals(other.updateTimestamp))
423
			return false;
426
			return false;
424
		return true;
427
		return true;
425
	}
428
	}
-
 
429
	
-
 
430
	
-
 
431
 
-
 
432
	public LocalDateTime getActivationTimestamp() {
-
 
433
		return activationTimestamp;
-
 
434
	}
-
 
435
 
-
 
436
	public void setActivationTimestamp(LocalDateTime activationTimestamp) {
-
 
437
		this.activationTimestamp = activationTimestamp;
-
 
438
	}
-
 
439
 
-
 
440
	public boolean isPriceDropValidated() {
-
 
441
		return priceDropValidated = true;
-
 
442
	}
-
 
443
 
-
 
444
	public void setPriceDropValidated(boolean priceDropValidated) {
-
 
445
		this.priceDropValidated = priceDropValidated;
-
 
446
	}
426
 
447
 
427
	@Override
448
	@Override
428
	public String toString() {
449
	public String toString() {
429
		return "InventoryItem [id=" + id + ", itemId=" + itemId + ", fofoId=" + fofoId + ", serialNumber="
450
		return "InventoryItem [id=" + id + ", itemId=" + itemId + ", fofoId=" + fofoId + ", serialNumber="
430
				+ serialNumber + ", initialQuantity=" + initialQuantity + ", goodQuantity=" + goodQuantity
451
				+ serialNumber + ", initialQuantity=" + initialQuantity + ", goodQuantity=" + goodQuantity