Subversion Repositories SmartDukaan

Rev

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

Rev 34428 Rev 35631
Line 10... Line 10...
10
	private float totalPartnerTargetCollection;
10
	private float totalPartnerTargetCollection;
11
	private boolean isRBMAndL1;
11
	private boolean isRBMAndL1;
12
	private boolean isRBMAndNotL1;
12
	private boolean isRBMAndNotL1;
13
	private boolean isSales;
13
	private boolean isSales;
14
 
14
 
-
 
15
    // Category counts for partner list
-
 
16
    private int overdueCount;
-
 
17
    private int planTodayCount;
-
 
18
    private int carryForwardCount;
-
 
19
    private int zeroBilledCount;
-
 
20
    private int untouchedCount;
-
 
21
    private int normalCount;
-
 
22
 
15
	private List<PartnerTargetAchievementModel> targetAchievement;
23
	private List<PartnerTargetAchievementModel> targetAchievement;
16
 
24
 
17
	public int getTodayCollectionCount() {
25
	public int getTodayCollectionCount() {
18
		return todayCollectionCount;
26
		return todayCollectionCount;
19
	}
27
	}
Line 84... Line 92...
84
 
92
 
85
	public void setSales(boolean sales) {
93
	public void setSales(boolean sales) {
86
		isSales = sales;
94
		isSales = sales;
87
	}
95
	}
88
 
96
 
-
 
97
    public int getOverdueCount() {
-
 
98
        return overdueCount;
-
 
99
    }
-
 
100
 
-
 
101
    public void setOverdueCount(int overdueCount) {
-
 
102
        this.overdueCount = overdueCount;
-
 
103
    }
-
 
104
 
-
 
105
    public int getPlanTodayCount() {
-
 
106
        return planTodayCount;
-
 
107
    }
-
 
108
 
-
 
109
    public void setPlanTodayCount(int planTodayCount) {
-
 
110
        this.planTodayCount = planTodayCount;
-
 
111
    }
-
 
112
 
-
 
113
    public int getCarryForwardCount() {
-
 
114
        return carryForwardCount;
-
 
115
    }
-
 
116
 
-
 
117
    public void setCarryForwardCount(int carryForwardCount) {
-
 
118
        this.carryForwardCount = carryForwardCount;
-
 
119
    }
-
 
120
 
-
 
121
    public int getZeroBilledCount() {
-
 
122
        return zeroBilledCount;
-
 
123
    }
-
 
124
 
-
 
125
    public void setZeroBilledCount(int zeroBilledCount) {
-
 
126
        this.zeroBilledCount = zeroBilledCount;
-
 
127
    }
-
 
128
 
-
 
129
    public int getUntouchedCount() {
-
 
130
        return untouchedCount;
-
 
131
    }
-
 
132
 
-
 
133
    public void setUntouchedCount(int untouchedCount) {
-
 
134
        this.untouchedCount = untouchedCount;
-
 
135
    }
-
 
136
 
-
 
137
    public int getNormalCount() {
-
 
138
        return normalCount;
-
 
139
    }
-
 
140
 
-
 
141
    public void setNormalCount(int normalCount) {
-
 
142
        this.normalCount = normalCount;
-
 
143
    }
-
 
144
 
89
	@Override
145
	@Override
90
	public String toString() {
146
	public String toString() {
91
		return "TargetModel{" +
147
		return "TargetModel{" +
92
				"totalPartnerSecondary=" + totalPartnerSecondary +
148
				"totalPartnerSecondary=" + totalPartnerSecondary +
93
				", totalPartnerCollection=" + totalPartnerCollection +
149
				", totalPartnerCollection=" + totalPartnerCollection +
Line 95... Line 151...
95
				", totalPartnerTargetSecondary=" + totalPartnerTargetSecondary +
151
				", totalPartnerTargetSecondary=" + totalPartnerTargetSecondary +
96
				", totalPartnerTargetCollection=" + totalPartnerTargetCollection +
152
				", totalPartnerTargetCollection=" + totalPartnerTargetCollection +
97
				", isRBMAndL1=" + isRBMAndL1 +
153
				", isRBMAndL1=" + isRBMAndL1 +
98
				", isRBMAndNotL1=" + isRBMAndNotL1 +
154
				", isRBMAndNotL1=" + isRBMAndNotL1 +
99
				", isSales=" + isSales +
155
				", isSales=" + isSales +
-
 
156
                ", overdueCount=" + overdueCount +
-
 
157
                ", planTodayCount=" + planTodayCount +
-
 
158
                ", carryForwardCount=" + carryForwardCount +
-
 
159
                ", zeroBilledCount=" + zeroBilledCount +
-
 
160
                ", untouchedCount=" + untouchedCount +
-
 
161
                ", normalCount=" + normalCount +
100
				", targetAchievement=" + targetAchievement +
162
				", targetAchievement=" + targetAchievement +
101
				'}';
163
				'}';
102
	}
164
	}
103
 
165
 
104
}
166
}