studentReport.vue
20.7 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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
<template>
<v-container fluid class="body-color">
<!-- ****** Student Report TABLE****** -->
<v-card flat class="elevation-0 transparent">
<v-form ref="form" v-model="valid" lazy-validation>
<v-flex xs12 sm12 lg12>
<v-layout wrap>
<v-flex xs12 sm12 lg4>
<v-layout>
<v-flex xs4 sm4 lg3 class="subheading mt-4">
<label class="right">Report For :</label>
</v-flex>
<v-flex xs7 sm6 lg8 class="ml-2">
<v-autocomplete
v-model="report.form"
label="Select your report for"
:items="formList"
item-text="name"
item-value="value"
@change="getReport(report.form)"
:rules="formRules"
required
></v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg4 v-if="bloodGroup">
<v-layout>
<v-flex xs4 sm4 lg4 class="subheading mt-4">
<label class="right">Blood Group :</label>
</v-flex>
<v-flex xs7 sm6 lg8 class="ml-2">
<v-autocomplete
v-model="report.bloodGroup"
label="Select your Blood Group "
:items="bloodGroupList"
:rules="bloodGroupRules"
required
></v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg4 v-if="genderShow">
<v-layout>
<v-flex xs4 sm4 lg4 class="subheading mt-4">
<label class="right">Gender:</label>
</v-flex>
<v-flex xs7 sm6 lg8 class="ml-2">
<v-autocomplete
v-model="report.gender"
label="Select your gender "
:items="gender"
:rules="genderRules"
required
></v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg4 v-if="TransportShow">
<v-layout>
<v-flex xs4 sm4 lg4 class="subheading mt-4">
<label class="right">Route:</label>
</v-flex>
<v-flex xs7 sm6 lg8 class="ml-2">
<v-autocomplete
v-model="report.route"
label="Select your gender "
:items="route"
:rules="routeRules"
required
></v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg4 v-if="HostelShow">
<v-layout>
<v-flex xs4 sm4 lg4 class="subheading mt-4">
<label class="right">Hostel:</label>
</v-flex>
<v-flex xs7 sm6 lg8 class="ml-2">
<v-autocomplete
v-model="report.route"
label="Select your hostel "
:items="hostelList"
:rules="hostelRules"
required
></v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg4 v-if="countryShow">
<v-layout>
<v-flex xs4 sm4 lg4 class="subheading mt-4">
<label class="right">Country :</label>
</v-flex>
<v-flex xs7 sm6 lg8 class="ml-2">
<v-autocomplete
v-model="report.country"
label="Select your Country "
:items="countryList"
:rules="countryRules"
required
></v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
<!-- <v-flex xs12 sm12 lg4 v-show="BirthdayShow">
<v-layout>
<v-flex xs3 sm6 lg4 class="subheading mt-4">
<label class="right">Country :</label>
</v-flex>
<v-flex xs12 sm12 lg8 class="ml-2">
<v-select
v-model="report.country"
label="Select your Country "
:items="countryList"
required
></v-select>
</v-flex>
</v-layout>
</v-flex>-->
<v-flex xs12 sm12 lg4 v-if="classShow">
<v-layout>
<v-flex xs4 sm4 lg3 class="subheading mt-4">
<label class="right">Class:</label>
</v-flex>
<v-flex xs7 sm6 lg8 class="ml-2">
<v-autocomplete
v-model="report.classId"
label="Select your class"
type="text"
:rules="classRules"
:items="classList"
item-text="classNum"
item-value="_id"
@change="getSections(report.classId)"
required
></v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg4 v-if="sectionShow">
<v-layout>
<v-flex xs4 sm4 lg3 class="subheading mt-4">
<label class="right">Section:</label>
</v-flex>
<v-flex xs7 sm6 lg8 class="ml-2">
<v-autocomplete
:items="addSection"
label="Select your Section"
v-model="report.sectionId"
:rules="sectionRules"
item-text="name"
item-value="_id"
name="Select Section"
required
></v-autocomplete>
</v-flex>
</v-layout>
</v-flex>
<v-flex xs12 sm12 lg4 class="hidden-xs-only hidden-sm-only pl-5">
<v-btn
@click="getStudents"
round
dark
:loading="loading"
class="open-dialog-button mt-3 ml-5"
>Get Report</v-btn>
</v-flex>
<v-flex xs12 sm12 lg4 class="hidden-lg-only hidden-md-only hidden-xl-only">
<v-btn
@click="getStudents"
round
dark
:loading="loading"
class="mt-3 right"
>Get Report</v-btn>
</v-flex>
</v-layout>
</v-flex>
</v-form>
</v-card>
<v-layout v-show="showTable">
<v-flex xs12>
<v-card class="transparent elevation-0">
<v-layout>
<v-flex xs12>
<v-btn class="open-dialog-button right" round dark @click="printStudentReport()">
Print
<v-icon right dark>print</v-icon>
</v-btn>
</v-flex>
</v-layout>
<v-layout>
<v-flex xs12 sm12 md12 class="text-xs-center">
<!-- <img :src="userData.schoolLogoUrl" width="140" alt="logo" /> -->
<v-avatar>
<img :src="userData.schoolLogoUrl" v-if="userData.schoolLogoUrl" />
<img
src="/static/schoolIcons/INTRACK_White.png"
v-else-if="!userData.schoolLogoUrl"
/>
</v-avatar>
<p class="title">{{ userData.name }}</p>
<p>{{ userData.address }}</p>
</v-flex>
</v-layout>
<v-data-table
:headers="headers"
:items="getStudentsReportList"
:pagination.sync="pagination"
:search="search"
>
<template slot="items" slot-scope="props">
<tr class="tr">
<td class="td td-row">{{ props.index + 1}}</td>
<td class="td td-row" style="text-align:center">
<v-avatar>
<img :src="props.item.profilePicUrl" v-if="props.item.profilePicUrl" />
<img src="/static/icon/user.png" v-else-if="!props.item.profilePicUrl" />
</v-avatar>
</td>
<td class="td td-row text-xs-center">{{ props.item.name}}</td>
<td class="td td-row text-xs-center">{{ props.item.rollNo }}</td>
<td class="td td-row text-xs-center">{{ props.item.email }}</td>
<td class="td td-row text-xs-center">{{ props.item.classId.classNum }}</td>
<td
class="td td-row text-xs-center"
>{{ props.item.sectionId ? props.item.sectionId.name: '-' }}</td>
</tr>
</template>
<v-alert
slot="no-results"
:value="true"
color="error"
icon="warning"
>Your search for "{{ search }}" found no results.</v-alert>
</v-data-table>
</v-card>
<v-flex xs12 id="printMe" v-show="hidePrintStudentReport">
<v-layout>
<v-flex xs12 style="text-align:center;margin-bottom:10px">
<!-- <img :src="userData.schoolLogoUrl" width="80" alt="logo" /> -->
<v-avatar>
<img :src="userData.schoolLogoUrl" v-if="userData.schoolLogoUrl" />
<img
src="/static/schoolIcons/INTRACK_White.png"
v-else-if="!userData.schoolLogoUrl"
/>
</v-avatar>
<p class="title">{{ userData.name }}</p>
<p>{{ userData.address }}</p>
</v-flex>
</v-layout>
<table
class="mb-5 tableRsponsive feeTypeTable"
style="border: 1px solid lightgrey;
border-collapse: collapse;!important
table-layout: auto !important;
width: 100% !important;"
>
<thead style="border: 1px solid lightgrey !important;">
<tr style="border: 1px solid lightgrey !important;padding:4px;">
<td style="border: 1px solid lightgrey !important;padding: 4px;">Profile Pic</td>
<td style="border: 1px solid lightgrey !important;padding: 4px;">Name</td>
<td style="border: 1px solid lightgrey !important;padding: 4px;">Roll No</td>
<td style="border: 1px solid lightgrey !important;padding: 4px;">Email</td>
<td style="border: 1px solid lightgrey !important;padding: 4px;">Class</td>
<td style="border: 1px solid lightgrey !important;padding: 4px;">Section</td>
</tr>
</thead>
<tbody style="border: 1px solid lightgrey !important;">
<tr v-for="(studentReport,i) in getStudentsReportList" :key="i">
<td style="border: 1px solid lightgrey !important;padding: 4px;text-align:center">
<v-avatar>
<img :src="studentReport.profilePicUrl" v-if="studentReport.profilePicUrl" />
<img src="/static/icon/user.png" v-else-if="!studentReport.profilePicUrl" />
</v-avatar>
</td>
<td
style="border: 1px solid lightgrey !important;padding: 4px;"
>{{ studentReport.name }}</td>
<td
style="border: 1px solid lightgrey !important;padding: 4px;"
>{{ studentReport.rollNo }}</td>
<td
style="border: 1px solid lightgrey !important;padding: 4px;"
>{{ studentReport.email }}</td>
<td
style="border: 1px solid lightgrey !important;padding: 4px;"
>{{ studentReport.classId.classNum }}</td>
<td style="border: 1px solid lightgrey !important;padding: 4px;">
{{ studentReport.sectionId ? studentReport.sectionId.name: '-'
}}
</td>
</tr>
</tbody>
</table>
</v-flex>
</v-flex>
</v-layout>
<div class="loader" v-if="showLoader">
<v-progress-circular indeterminate color="white"></v-progress-circular>
</div>
</v-container>
</template>
<script>
import http from "@/Services/http.js";
import countryList from "@/script/country.js";
import moment from "moment";
export default {
data: () => ({
snackbar: false,
color: "",
y: "top",
x: "right",
mode: "",
timeout: 10000,
text: "",
loading: false,
valid: true,
search: "",
showLoader: false,
bloodGroup: false,
genderShow: false,
countryShow: false,
TransportShow: false,
HostelShow: false,
BirthdayShow: false,
sectionShow: false,
showTable: false,
classShow: true,
hidePrintStudentReport: false,
addSection: [],
pagination: {
rowsPerPage: 10,
},
formRules: [(v) => !!v || "Form For is required"],
bloodGroupRules: [(v) => !!v || "Blood group is required"],
classRules: [(v) => !!v || "Class is required"],
sectionRules: [(v) => !!v || "Class is required"],
genderRules: [(v) => !!v || "Gender is required"],
routeRules: [(v) => !!v || "RouteI is required"],
hostelRules: [(v) => !!v || "Hostel is required"],
countryRules: [(v) => !!v || "Country is required"],
headers: [
{
align: "",
text: "No",
sortable: false,
value: "No",
},
{
text: "Profile Pic",
vaue: "profilePicUrl",
sortable: false,
align: "center",
},
{
text: "Name",
vaue: "name",
sortable: false,
align: "center",
},
{
text: "Roll No.",
value: "rollNo",
sortable: false,
align: "center",
},
{
text: "Email",
value: "email",
sortable: false,
align: "center",
},
{
text: "Class",
value: "classId",
sortable: false,
align: "center",
},
{
text: "Section",
value: "sectionId",
sortable: false,
align: "center",
},
],
classList: [],
report: {},
userData: {},
markData: [],
formList: [
{
name: "Blood Group",
value: "bloodGroup",
},
"Country",
"Gender",
"Transport",
"Hostel",
// "Birthday"
],
bloodGroupList: ["A+", "A-", "B+", "B-", "O+", "O-", "AB+", "AB-"],
gender: ["Male", "female"],
getStudentsReportList: [],
studentReort: "",
countryList: [],
route: [],
Hostel: [],
hostelList: [],
token: "",
}),
methods: {
clear() {
this.$refs.form.reset();
},
getClass() {
this.showLoader = true;
http()
.get("/getClassesList", {
headers: { Authorization: "Bearer " + this.token },
})
.then((response) => {
this.classList = response.data.data;
this.showLoader = false;
})
.catch((err) => {
this.showLoader = false;
if (error.response.status === 401) {
this.$router.replace({ path: "/" });
this.$store.dispatch("setToken", null);
this.$store.dispatch("Id", null);
this.$store.dispatch("Role", null);
}
});
},
getReport() {
if (this.report.form === "bloodGroup") {
this.bloodGroup = true;
this.genderShow = false;
this.TransportShow = false;
this.countryShow = false;
this.BirthdayShow = false;
this.HostelShow = false;
this.classShow = false;
this.sectionShow = false;
}
if (this.report.form === "Gender") {
this.genderShow = true;
this.bloodGroup = false;
this.TransportShow = false;
this.BirthdayShow = false;
this.countryShow = false;
this.HostelShow = false;
this.classShow = true;
}
if (this.report.form === "Transport") {
this.TransportShow = true;
this.genderShow = false;
this.bloodGroup = false;
this.BirthdayShow = false;
this.countryShow = false;
this.HostelShow = false;
this.classShow = true;
}
if (this.report.form === "Country") {
this.countryShow = true;
this.TransportShow = false;
this.genderShow = false;
this.bloodGroup = false;
this.BirthdayShow = false;
this.HostelShow = false;
this.classShow = true;
}
if (this.report.form === "Hostel") {
this.HostelShow = true;
this.TransportShow = false;
this.genderShow = false;
this.bloodGroup = false;
this.countryShow = false;
this.BirthdayShow = false;
this.classShow = true;
}
if (this.report.form === "Birthday") {
this.BirthdayShow = true;
this.TransportShow = false;
this.genderShow = false;
this.HostelShow = false;
this.bloodGroup = false;
this.countryShow = false;
this.classShow = true;
}
},
getStudents() {
if (this.$refs.form.validate()) {
this.showLoader = true;
http()
.get("/getStudentReport", {
params: {
bloodGroup: this.report.bloodGroup,
country: this.report.country,
gender: this.report.gender,
classId: this.report.classId,
sectionId: this.report.sectionId,
},
headers: { Authorization: "Bearer " + this.token },
})
.then((response) => {
this.getStudentsReportList = response.data.data;
this.showTable = true;
this.showLoader = false;
this.clear();
// console.log("getSectionsList=====>", response.data.data);
})
.catch((error) => {
// console.log("err====>", error);
this.showLoader = false;
this.snackbar = true;
this.color = "error";
this.text = error.response.data.message;
});
}
},
getSections() {
this.sectionShow = true;
this.showLoader = true;
http()
.get(
"/getSectionsList",
{ params: { classId: this.report.classId } },
{
headers: { Authorization: "Bearer " + this.token },
}
)
.then((response) => {
this.addSection = response.data.data;
this.showLoader = false;
})
.catch((error) => {
// console.log("err====>", error);
this.showLoader = false;
this.snackbar = true;
this.color = "error";
this.text = error.response.data.message;
});
},
// getFormList() {
// this.showLoader = true;
// http()
// .get("/getExamsList", {
// headers: { Authorization: "Bearer " + this.token }
// })
// .then(response => {
// this.formList = response.data.data;
// this.showLoader = false;
// })
// .catch(error => {
// // console.log("err====>", err);
// this.showLoader = false;
// this.snackbar = true;
// this.text = error.response.data.message;
// if (error.response.status === 401) {
// this.$router.replace({ path: "/" });
// this.$store.dispatch("setToken", null);
// this.$store.dispatch("Id", null);
// }
// });
// }
printStudentReport() {
this.$htmlToPaper("printMe");
},
getUserData() {
http()
.get("/getParticularUserDetail")
.then((response) => {
this.userData = response.data.data;
})
.catch((error) => {
// if (error.response.status === 401) {
// this.$router.replace({ path: "/" });
// this.$store.dispatch("setToken", null);
// this.$store.dispatch("Id", null);
// }
});
},
},
mounted() {
this.token = this.$store.state.token;
const getCountryList = countryList();
this.countryList = getCountryList;
this.getUserData();
// console.log("getindustryList", this.countryList);
// this.getExamList();
this.getClass();
},
created() {
this.$root.$on("app:search", (search) => {
this.search = search;
});
},
beforeDestroy() {
// dont forget to remove the listener
this.$root.$off("app:search");
},
};
</script>
<style scoped>
.active {
background-color: gray;
color: white !important;
}
.activebtn {
color: black !important;
}
</style>