-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclsAllocationReport.java
More file actions
295 lines (258 loc) · 7.37 KB
/
clsAllocationReport.java
File metadata and controls
295 lines (258 loc) · 7.37 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
import javax.swing.*;
public class clsAllocationReport
{
private int AllocationID ;
private String AllocationDate ;
private int RootID;
private int DriverID;
private int ConductorID;
private int VehicleID;
private int AllocationDayNo;
private int AllocationMonthNo;
private int AllocationYearNo;
private String VehicleName;
private String RootName;
private String DriverName;
private String DriverContactNo;
private String ConductorName;
private String ConductorContactNo;
private String ConductorBillaNo;
private String ConductorLicenceNo;
private String DriverBillaNo;
private String DriverLicenceNo;
private int DesignationID;
private String DesignationName;
private int VehicleTypeID;
private String VehicleTypeName;
public void setAllocationID(int mAllocationID)
{
this.AllocationID = mAllocationID;
}
public int getAllocationID()
{
return AllocationID;
}
public void setAllocationDate(String mAllocationDate)
{
this.AllocationDate = mAllocationDate;
}
public String getAllocationDate()
{
AllocationDate = String.valueOf(AllocationDayNo)+"/"+String.valueOf(AllocationMonthNo)+"/"+String.valueOf(AllocationYearNo);
return AllocationDate;
}
public void setRootID(int mRootID)
{
this.RootID = mRootID;
}
public int getRootID()
{
return RootID;
}
public void setRootName(String mRootName)
{
this.RootName = mRootName;
}
public String getRootName()
{
return RootName;
}
public void setDriverID(int mDriverID)
{
this.DriverID = mDriverID;
}
public int getDriverID()
{
return DriverID;
}
public void setDriverName(String mDriverName)
{
this.DriverName = mDriverName;
}
public String getDriverName()
{
return DriverName;
}
public void setConductorID(int mConductorID)
{
this.ConductorID = mConductorID;
}
public int getConductorID()
{
return ConductorID;
}
public void setConductorName(String mConductorName)
{
this.ConductorName = mConductorName;
}
public String getConductorName()
{
return ConductorName;
}
public void setDesignationID(int mDesignationID)
{
this.DesignationID = mDesignationID;
}
public int getDesignationID()
{
return DesignationID;
}
public void setDesignationName(String mDesignationName)
{
this.DesignationName = mDesignationName;
}
public String getDesignationName()
{
return DesignationName;
}
public void setAllocationDayNo(int mAllocationDayNo)
{
this.AllocationDayNo = mAllocationDayNo;
}
public int getAllocationDayNo()
{
return AllocationDayNo;
}
public void setAllocationMonthNo(int mAllocationMonthNo)
{
this.AllocationMonthNo = mAllocationMonthNo;
}
public int getAllocationMonthNo()
{
return AllocationMonthNo;
}
public void setAllocationYearNo(int mAllocationYearNo)
{
this.AllocationYearNo = mAllocationYearNo;
}
public int getAllocationYearNo()
{
return AllocationYearNo;
}
public void setVehicleID(int mVehicleID)
{
this.VehicleID = mVehicleID;
}
public int getVehicleID()
{
return VehicleID;
}
public void setVehicleName(String mVehicleName)
{
this.VehicleName = mVehicleName;
}
public String getVehicleName()
{
return VehicleName;
}
public void setVehicleTypeID(int mVehicleTypeID)
{
this.VehicleTypeID = mVehicleTypeID;
}
public int getVehicleTypeID()
{
return VehicleTypeID;
}
public void setVehicleTypeName(String mVehicleTypeName)
{
this.VehicleTypeName = mVehicleTypeName;
}
public String getVehicleTypeName()
{
return VehicleTypeName;
}
//Driver
public void setDriverContactNo(String mDriverContactNo)
{
this.DriverContactNo = mDriverContactNo;
}
public String getDriverContactNo()
{
return DriverContactNo;
}
public void setDriverBillaNo(String mDriverBillaNo)
{
this.DriverBillaNo = mDriverBillaNo;
}
public String getDriverBillaNo()
{
return DriverBillaNo;
}
public void setDriverLicenseNo(String mDriverLicenseNo)
{
this.DriverLicenceNo = mDriverLicenseNo;
}
public String getDriverLicenseNo()
{
return DriverLicenceNo;
}
//Conductor
public void setConductorContactNo(String mConductorContactNo)
{
this.ConductorContactNo = mConductorContactNo;
}
public String getConductorContactNo()
{
return ConductorContactNo;
}
public void setConductorBillaNo(String mConductorBillaNo)
{
this.ConductorBillaNo = mConductorBillaNo;
}
public String getConductorBillaNo()
{
return ConductorBillaNo;
}
public void setConductorLicenseNo(String mConductorLicenseNo)
{
this.ConductorLicenceNo = mConductorLicenseNo;
}
public String getConductorLicenseNo()
{
return ConductorLicenceNo;
}
public static clsAllocationReport getAllocationReportInformation(int mAllocationID)
{
return(dlsAllocation.getAllocationReportInformation(mAllocationID));
}
public static clsAllocationReport[] getAllAllocationReportInformation()
{
return(dlsAllocation.getAllAllocationReportInformation());
}
public static clsAllocationReport[] getAllAllocationReportInformation(int Day, int Month, int Year)
{
return(dlsAllocation.getAllocationReportInformation(Day,Month,Year));
}
public static void showAllocation(clsAllocationReport temp)
{
System.out.println("Allocation ID : "+temp.getAllocationID());
System.out.println("Allocation Date : "+temp.getAllocationDate());
System.out.println("Root ID : "+temp.getRootID());
System.out.println("Driver ID : "+temp.getDriverID());
System.out.println("Conductor ID : "+temp.getConductorID());
System.out.println("Vehicle ID : "+temp.getVehicleID());
System.out.println("Allocate Day : "+temp.getAllocationDayNo());
System.out.println("Allocate Month : "+temp.getAllocationMonthNo());
System.out.println("Allocate Year : "+temp.getAllocationYearNo());
System.out.println("Vehicle Name : "+temp.getVehicleName());
System.out.println("Root Name : "+temp.getRootName());
System.out.println("Driver Name : "+temp.getDriverName());
System.out.println("Driver Contact No : "+temp.getDriverContactNo());
System.out.println("Conductor Name : "+temp.getConductorName());
System.out.println("Conductor Contact No : "+temp.getConductorContactNo());
System.out.println("Conductor Billa No : "+temp.getConductorBillaNo());
System.out.println("Conductor LicenceNo : "+temp.getConductorLicenseNo());
System.out.println("Driver Billa No : "+temp.getDriverBillaNo());
System.out.println("Driver LicenceNo : "+temp.getDriverLicenseNo());
System.out.println("Designamtion ID : "+temp.getDesignationID());
System.out.println("Designamtion Name : "+temp.getDesignationName());
System.out.println("Vehicle Type ID : "+temp.getVehicleTypeID());
System.out.println("Vehicle Type Name : "+temp.getVehicleTypeName());
}
public static void main(String args[])
{
clsAllocationReport Data[]=clsAllocationReport.getAllAllocationReportInformation(7,3,2025);
for(clsAllocationReport temp : Data)
clsAllocationReport.showAllocation(temp);
}
}