Subversion Repositories SmartDukaan

Rev

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

Rev 29093 Rev 29095
Line 120... Line 120...
120
 
120
 
121
	@Transient
121
	@Transient
122
	private LocalDateTime activatedTimestamp;
122
	private LocalDateTime activatedTimestamp;
123
	
123
	
124
	@Transient
124
	@Transient
125
	private boolean priceDropValidated;
125
	private boolean priceDropValidated = true;
126
	
126
	
127
	public LocalDateTime getActivatedTimestamp() {
127
	public LocalDateTime getActivatedTimestamp() {
128
		return activatedTimestamp;
128
		return activatedTimestamp;
129
	}
129
	}
130
 
130
 
Line 436... Line 436...
436
	public void setActivationTimestamp(LocalDateTime activationTimestamp) {
436
	public void setActivationTimestamp(LocalDateTime activationTimestamp) {
437
		this.activationTimestamp = activationTimestamp;
437
		this.activationTimestamp = activationTimestamp;
438
	}
438
	}
439
 
439
 
440
	public boolean isPriceDropValidated() {
440
	public boolean isPriceDropValidated() {
441
		return priceDropValidated = true;
441
		return priceDropValidated;
442
	}
442
	}
443
 
443
 
444
	public void setPriceDropValidated(boolean priceDropValidated) {
444
	public void setPriceDropValidated(boolean priceDropValidated) {
445
		this.priceDropValidated = priceDropValidated;
445
		this.priceDropValidated = priceDropValidated;
446
	}
446
	}