Subversion Repositories SmartDukaan

Rev

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

Rev 30330 Rev 34428
Line 6... Line 6...
6
	private float totalPartnerSecondary;
6
	private float totalPartnerSecondary;
7
	private float totalPartnerCollection;
7
	private float totalPartnerCollection;
8
	private int todayCollectionCount;
8
	private int todayCollectionCount;
9
	private float totalPartnerTargetSecondary;
9
	private float totalPartnerTargetSecondary;
10
	private float totalPartnerTargetCollection;
10
	private float totalPartnerTargetCollection;
-
 
11
	private boolean isRBMAndL1;
-
 
12
	private boolean isRBMAndNotL1;
-
 
13
	private boolean isSales;
11
 
14
 
12
	private List<PartnerTargetAchievementModel> targetAchievement;
15
	private List<PartnerTargetAchievementModel> targetAchievement;
13
 
16
 
14
	public int getTodayCollectionCount() {
17
	public int getTodayCollectionCount() {
15
		return todayCollectionCount;
18
		return todayCollectionCount;
Line 57... Line 60...
57
 
60
 
58
	public void setTotalPartnerTargetCollection(float totalPartnerTargetCollection) {
61
	public void setTotalPartnerTargetCollection(float totalPartnerTargetCollection) {
59
		this.totalPartnerTargetCollection = totalPartnerTargetCollection;
62
		this.totalPartnerTargetCollection = totalPartnerTargetCollection;
60
	}
63
	}
61
 
64
 
-
 
65
	public boolean isRBMAndL1() {
-
 
66
		return isRBMAndL1;
-
 
67
	}
-
 
68
 
-
 
69
	public void setRBMAndL1(boolean RBMAndL1) {
-
 
70
		isRBMAndL1 = RBMAndL1;
-
 
71
	}
-
 
72
 
-
 
73
	public boolean isRBMAndNotL1() {
-
 
74
		return isRBMAndNotL1;
-
 
75
	}
-
 
76
 
-
 
77
	public void setRBMAndNotL1(boolean RBMAndNotL1) {
-
 
78
		isRBMAndNotL1 = RBMAndNotL1;
-
 
79
	}
-
 
80
 
-
 
81
	public boolean isSales() {
-
 
82
		return isSales;
-
 
83
	}
-
 
84
 
-
 
85
	public void setSales(boolean sales) {
-
 
86
		isSales = sales;
-
 
87
	}
-
 
88
 
62
	@Override
89
	@Override
63
	public String toString() {
90
	public String toString() {
-
 
91
		return "TargetModel{" +
64
		return "TargetModel [totalPartnerSecondary=" + totalPartnerSecondary + ", totalPartnerCollection="
92
				"totalPartnerSecondary=" + totalPartnerSecondary +
-
 
93
				", totalPartnerCollection=" + totalPartnerCollection +
65
				+ totalPartnerCollection + ", todayCollectionCount=" + todayCollectionCount
94
				", todayCollectionCount=" + todayCollectionCount +
66
				+ ", totalPartnerTargetSecondary=" + totalPartnerTargetSecondary + ", totalPartnerTargetCollection="
95
				", totalPartnerTargetSecondary=" + totalPartnerTargetSecondary +
67
				+ totalPartnerTargetCollection + ", targetAchievement=" + targetAchievement + "]";
96
				", totalPartnerTargetCollection=" + totalPartnerTargetCollection +
-
 
97
				", isRBMAndL1=" + isRBMAndL1 +
-
 
98
				", isRBMAndNotL1=" + isRBMAndNotL1 +
-
 
99
				", isSales=" + isSales +
-
 
100
				", targetAchievement=" + targetAchievement +
-
 
101
				'}';
68
	}
102
	}
69
 
103
 
70
}
104
}