Subversion Repositories SmartDukaan

Rev

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

Rev 30522 Rev 30542
Line 96... Line 96...
96
	private String informedAboutOnline;
96
	private String informedAboutOnline;
97
 
97
 
98
	@Column(name = "updated_timestamp")
98
	@Column(name = "updated_timestamp")
99
	private LocalDateTime updatedTimestamp;
99
	private LocalDateTime updatedTimestamp;
100
 
100
 
-
 
101
	@Column(name = "visit_timestamp")
-
 
102
	private LocalDateTime visitTimestamp;
-
 
103
 
101
	@Transient
104
	@Transient
102
	private List<String> brands;
105
	private List<String> brands;
103
 
106
 
104
	@Column(name = "franchise_activity_id")
107
	@Column(name = "franchise_activity_id")
105
	private int franchiseActivityId;
108
	private int franchiseActivityId;
Line 144... Line 147...
144
 
147
 
145
	public int getPendingBilling() {
148
	public int getPendingBilling() {
146
		return pendingBilling;
149
		return pendingBilling;
147
	}
150
	}
148
 
151
 
-
 
152
	public LocalDateTime getVisitTimestamp() {
-
 
153
		return visitTimestamp;
-
 
154
	}
-
 
155
 
-
 
156
	public void setVisitTimestamp(LocalDateTime visitTimestamp) {
-
 
157
		this.visitTimestamp = visitTimestamp;
-
 
158
	}
-
 
159
 
149
	public void setPendingBilling(int pendingBilling) {
160
	public void setPendingBilling(int pendingBilling) {
150
		this.pendingBilling = pendingBilling;
161
		this.pendingBilling = pendingBilling;
151
	}
162
	}
152
 
163
 
153
	public String getInformedAboutOnline() {
164
	public String getInformedAboutOnline() {
Line 292... Line 303...
292
 
303
 
293
	public int getMtd() {
304
	public int getMtd() {
294
		return mtd;
305
		return mtd;
295
	}
306
	}
296
 
307
 
297
	public void setMtd(int mtd) { }
308
	public void setMtd(int mtd) {
-
 
309
	}
298
 
310
 
299
	public String getHygiene() {
311
	public String getHygiene() {
300
		return hygiene;
312
		return hygiene;
301
	}
313
	}
302
 
314
 
Line 356... Line 368...
356
		result = prime * result + ((scheduleTimestamp == null) ? 0 : scheduleTimestamp.hashCode());
368
		result = prime * result + ((scheduleTimestamp == null) ? 0 : scheduleTimestamp.hashCode());
357
		result = prime * result + ((smartdukaanTshirt == null) ? 0 : smartdukaanTshirt.hashCode());
369
		result = prime * result + ((smartdukaanTshirt == null) ? 0 : smartdukaanTshirt.hashCode());
358
		result = prime * result + ((status == null) ? 0 : status.hashCode());
370
		result = prime * result + ((status == null) ? 0 : status.hashCode());
359
		result = prime * result + ((systemKnowledge == null) ? 0 : systemKnowledge.hashCode());
371
		result = prime * result + ((systemKnowledge == null) ? 0 : systemKnowledge.hashCode());
360
		result = prime * result + ((updatedTimestamp == null) ? 0 : updatedTimestamp.hashCode());
372
		result = prime * result + ((updatedTimestamp == null) ? 0 : updatedTimestamp.hashCode());
-
 
373
		result = prime * result + ((visitTimestamp == null) ? 0 : visitTimestamp.hashCode());
361
		result = prime * result + ((workingDevice == null) ? 0 : workingDevice.hashCode());
374
		result = prime * result + ((workingDevice == null) ? 0 : workingDevice.hashCode());
362
		result = prime * result + ((workingPrinter == null) ? 0 : workingPrinter.hashCode());
375
		result = prime * result + ((workingPrinter == null) ? 0 : workingPrinter.hashCode());
363
		return result;
376
		return result;
364
	}
377
	}
365
 
378
 
Line 479... Line 492...
479
		if (updatedTimestamp == null) {
492
		if (updatedTimestamp == null) {
480
			if (other.updatedTimestamp != null)
493
			if (other.updatedTimestamp != null)
481
				return false;
494
				return false;
482
		} else if (!updatedTimestamp.equals(other.updatedTimestamp))
495
		} else if (!updatedTimestamp.equals(other.updatedTimestamp))
483
			return false;
496
			return false;
-
 
497
		if (visitTimestamp == null) {
-
 
498
			if (other.visitTimestamp != null)
-
 
499
				return false;
-
 
500
		} else if (!visitTimestamp.equals(other.visitTimestamp))
-
 
501
			return false;
484
		if (workingDevice == null) {
502
		if (workingDevice == null) {
485
			if (other.workingDevice != null)
503
			if (other.workingDevice != null)
486
				return false;
504
				return false;
487
		} else if (!workingDevice.equals(other.workingDevice))
505
		} else if (!workingDevice.equals(other.workingDevice))
488
			return false;
506
			return false;
Line 503... Line 521...
503
				+ systemKnowledge + ", workingDevice=" + workingDevice + ", workingPrinter=" + workingPrinter
521
				+ systemKnowledge + ", workingDevice=" + workingDevice + ", workingPrinter=" + workingPrinter
504
				+ ", carryBags=" + carryBags + ", smartdukaanTshirt=" + smartdukaanTshirt + ", latestDummies="
522
				+ ", carryBags=" + carryBags + ", smartdukaanTshirt=" + smartdukaanTshirt + ", latestDummies="
505
				+ latestDummies + ", investment=" + investment + ", mtd=" + mtd + ", status=" + status + ", hygiene="
523
				+ latestDummies + ", investment=" + investment + ", mtd=" + mtd + ", status=" + status + ", hygiene="
506
				+ hygiene + ", createdTimestamp=" + createdTimestamp + ", pendingBilling=" + pendingBilling
524
				+ hygiene + ", createdTimestamp=" + createdTimestamp + ", pendingBilling=" + pendingBilling
507
				+ ", informedAboutOnline=" + informedAboutOnline + ", updatedTimestamp=" + updatedTimestamp
525
				+ ", informedAboutOnline=" + informedAboutOnline + ", updatedTimestamp=" + updatedTimestamp
508
				+ ", brands=" + brands + ", franchiseActivityId=" + franchiseActivityId + ", createdBy=" + createdBy
526
				+ ", visitTimestamp=" + visitTimestamp + ", brands=" + brands + ", franchiseActivityId="
509
				+ ", authId=" + authId + "]";
527
				+ franchiseActivityId + ", createdBy=" + createdBy + ", authId=" + authId + "]";
510
	}
528
	}
511
 
529
 
512
}
530
}